Convenient macro to check whether the buffer is live.
[bpt/emacs.git] / src / ChangeLog
1 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
2
3 Convenient macro to check whether the buffer is live.
4 * buffer.h (BUFFER_LIVE_P): New macro.
5 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
6 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
7
8 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9
10 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
11 composition cases (Bug#12364).
12
13 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
14 overhang of succeeding glyphs overlapping box cursor.
15
16 * w32term.c (x_draw_glyph_string): Likewise.
17
18 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
19
20 Simplify, document, and port floating-point (Bug#12381).
21 The porting part of this patch fixes bugs on non-IEEE platforms
22 with frexp, ldexp, logb.
23 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
24 Now static.
25 * floatfns.c: Simplify discussion of functions that Emacs doesn't
26 support, by removing commented-out code and briefly listing the
27 C89 functions excluded. The commented-out stuff was confusing
28 maintenance, e.g., we thought we needed cbrt but it was commented out.
29 (logb): Remove decl; no longer needed.
30 (isfinite): New macro, if not already supplied.
31 (isnan): Don't replace any existing macro.
32 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
33 are present on all C89 platforms.
34 (Ffrexp): Do not special-case zero, as frexp does the right thing
35 for that case.
36 (Flogb): Do not use logb, as it doesn't have the desired meaning
37 on hosts that use non-base-2 floating point. Instead, stick with
38 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
39 frexp, to avoid getting an unspecified result.
40
41 * xdisp.c (Qinhibit_debug_on_message): Now static.
42
43 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
44
45 * nsterm.m (ns_update_begin): Set clip path to whole view by using
46 NSBezierPath (Bug#12131).
47
48 2012-09-10 Chong Yidong <cyd@gnu.org>
49
50 * fns.c (Fdelq, Fdelete): Doc fix.
51
52 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
53
54 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
55 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
56
57 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
58
59 * lisp.h (make_lisp_ptr): New macro to replace XSET.
60 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
61 Use it.
62
63 2012-09-09 Eli Zaretskii <eliz@gnu.org>
64
65 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
66 left fringe if the window has a left margin. This avoids leaving
67 traces of the cursor because its leftmost pixel is not drawn over.
68
69 * dispnew.c (update_window_line): When the left margin area of a
70 screen line is updated, set the redraw_fringe_bitmaps_p flag of
71 that screen line. (Bug#12277)
72
73 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
74
75 Assume C89 or later for math functions (Bug#12381).
76 This simplifies the code, and makes it a bit smaller and faster,
77 and (most important) makes it easier to clean up signal handling
78 since we can stop worring about floating-point exceptions in
79 library code. That was a problem before C89, but the problem
80 went away many years ago on all practical Emacs targets.
81 * data.c, image.c, lread.c, print.c:
82 Don't include <math.h>; no longer needed.
83 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
84 might be autoconfigured, as that never happens.
85 * data.c (fmod):
86 * doprnt.c (DBL_MAX_10_EXP):
87 * print.c (DBL_DIG):
88 Remove. C89 or later always defines these.
89 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
90 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
91 (arith_error, domain_error, domain_error2):
92 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
93 no longer needed -- we simply return what C returns. All uses removed.
94 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
95 the wrapped code.
96 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
97 Remove. All uses expanded, as these macros are no longer used
98 more than once and are now more trouble than they're worth.
99 (Ftan): Use tan, not sin / cos.
100 (Flogb): Assume C89 frexp.
101 (fmod_float): Assume C89 fmod.
102 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
103 (init_floatfns): Remove. All uses removed.
104
105 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
106
107 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
108 compositeToPoint for OSX < 10.6 (Bug#12390).
109
110 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
111
112 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
113 This produces more-accurate results.
114
115 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
116
117 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
118 changes (Bug#12088).
119
120 2012-09-08 Chong Yidong <cyd@gnu.org>
121
122 * syntax.c (Fstring_to_syntax): Doc fix.
123
124 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
125
126 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
127 in the internal border.
128 (x_set_window_size): Remove static variables and their usage.
129 (ns_redraw_scroll_bars): Fix NSTRACE arg.
130 (ns_after_update_window_line, ns_draw_fringe_bitmap): Remove
131 fringe/internal border adjustment (Bug#11052).
132 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
133 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
134 (ns_fix_rect_ibw): Remove.
135 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
136 (ns_dumpglyphs_box_or_relief): Ditto.
137 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
138 adjustment.
139 (ns_dumpglyphs_image): Ditto.
140 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
141 border adjustment.
142 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
143 their usage. Add fringe_extended_p and its use as in other terms.
144 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
145 scroll bar was removed.
146 (updateFrameSize): New function.
147 (windowDidResize): Move code to updateFrameSize and call it.
148
149 * nsterm.h (EmacsView): Add updateFrameSize.
150
151 2012-09-07 Chong Yidong <cyd@gnu.org>
152
153 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
154
155 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
156
157 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
158
159 More signal-handler cleanup (Bug#12327).
160 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
161 Problem introduced when merging patches. Noted by Eli Zaretskii in
162 <http://bugs.gnu.org/12327#67>.
163 * floatfns.c: Comment fix.
164 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
165 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
166 and anyway the declaration is harmless even if SIGDANGER is not defined.
167 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
168 defined BROKEN_FIONREAD). systty.h formerly did this, but other
169 source files not surprisingly expected syssignal.h to define, or
170 not define, SIGIO, and it's cleaner to do it that way, for consistency.
171 Include <sys/ioctl.h>, for FIONREAD.
172 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
173 This eliminates a problem whereby other files mysteriously had
174 to include "syssignal.h" before including "systty.h" if they
175 wanted to use "#ifdef SIGIO".
176
177 2012-09-07 Eli Zaretskii <eliz@gnu.org>
178
179 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
180
181 * w32.c (sigemptyset): Empty the set.
182 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
183
184 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
185
186 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
187
188 * alloc.c (mark_buffer): Revert unsafe marking optimization.
189 (mark_object): Likewise for frame objects.
190
191 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
192
193 * syssignal.h (handle_on_main_thread): Always declare,
194 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
195 This ports to platforms without HAVE_PTHREAD.
196
197 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
198
199 Signal-handler cleanup (Bug#12327).
200 Emacs's signal handlers were written in the old 4.2BSD style with
201 sigblock and sigmask and so forth, and this led to some
202 inefficiencies and confusion. Rewrite these to use
203 pthread_sigmask etc. without copying signal sets around. Also,
204 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
205 'signal', and instead use functions that do not attempt to take
206 over the system name space. This patch causes Emacs's text
207 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
208 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
209 Do not include <signal.h> or "syssignal.h", as these
210 modules do not use signals.
211 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
212 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
213 Do not include <signal.h>, as "syssignal.h" does that for us now.
214 * atimer.c (sigmask_atimers): New function.
215 (block_atimers, unblock_atimers): New functions,
216 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
217 All uses replaced.
218 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
219 no longer needed here.
220 * emacs.c (main): Inspect existing signal handler with sigaction,
221 so that there's no need to block and unblock SIGHUP.
222 * sysdep.c (struct save_signal): New member 'action', replacing
223 old member 'handler'.
224 (save_signal_handlers, restore_signal_handlers):
225 Use sigaction instead of 'signal' to save and restore.
226 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
227 New function. All users of 'signal' modified to use set_sighandler
228 if they're writeonly, and to use sys_signal if they're read+write.
229 (emacs_sigaction_init, forwarded_signal): New functions.
230 (sys_signal): Remove. All uses replaced by calls to sigaction
231 and emacs_sigaction_init, or by direct calls to 'signal'.
232 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
233 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
234 all uses replaced by pthread_sigmask etc. calls.
235 * syssignal.h: Include <signal.h>.
236 (emacs_sigaction_init, forwarded_signal): New decls.
237 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
238 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
239 (sigmask, sys_sigmask): Remove; no longer needed.
240 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
241 (sigblock, sigunblock, sigfree):
242 (sigsetmask) [!defined sigsetmask]:
243 Remove. All uses replaced by pthread_sigmask.
244 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
245 no longer need to be replaced, and its typical old uses
246 are now done via emacs_sigaction_init and sigaction.
247 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
248 (sys_sigdel): Remove; unused.
249 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
250
251 2012-09-06 Eli Zaretskii <eliz@gnu.org>
252
253 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
254 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
255
256 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
257
258 Explicitly mark buffer_defaults and buffer_local_symbols.
259 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
260 mark_local_symbols here.
261 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
262 since special buffers aren't marked here any more.
263 (allocate_buffer): Chain new buffer with all_buffers here...
264 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
265 not here.
266 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
267 (syms_of_buffer): Remove staticpro of the above.
268 (init_buffer_once): Set names for buffer_defaults and
269 buffer_local_symbols.
270
271 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
272
273 Use bool for booleans in font-related modules.
274 * font.c (font_intern_prop, font_style_to_value)
275 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
276 (generate_otf_features, font_check_otf_features, font_check_otf)
277 (font_match_p, font_list_entities, font_at):
278 * fontset.c (fontset_id_valid_p, reorder_font_vector
279 (fontset_find_font, Fset_fontset_font)
280 (face_suitable_for_char_p) [0]:
281 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
282 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
283 (m17n_flt_initialized, ftfont_shape_by_flt):
284 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
285 * nsfont.m (nsfont_draw):
286 * w32font.c (w32font_draw):
287 * w32term.c (x_draw_glyphless_glyph_string_foreground):
288 Use bool for booleans.
289 * font.h: Adjust to above API changes.
290 (struct font, struct font_driver, struct font_driver_list):
291 Use bool for booleans.
292 (struct font): Remove useless member encoding_type.
293 All users removed.
294 * fontset.c, xftfont.c: Omit unnecessary static decls.
295
296 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
297
298 * alloc.c (mark_object): Revert window marking code
299 since it's unsafe for the Fset_window_configuration.
300
301 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
302
303 Fix race conditions with signal handlers and errno (Bug#12327).
304 Be more systematic about preserving errno whenever a signal
305 handler returns, even if it's not in the main thread. Do this by
306 renaming signal handlers to distinguish between signal delivery
307 and signal handling. All uses changed.
308 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
309 * data.c (deliver_arith_signal): Rename from arith_error.
310 * dispnew.c (deliver_window_change_signal): Rename from
311 window_change_signal.
312 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
313 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
314 * keyboard.c (deliver_input_available_signal): Rename from
315 input_available_signal.
316 (deliver_user_signal): Rename from handle_user_signal.
317 (deliver_interrupt_signal): Rename from interrupt_signal.
318 * process.c (deliver_pipe_signal): Rename from send_process_trap.
319 (deliver_child_signal): Rename from sigchld_handler.
320 * atimer.c (handle_alarm_signal):
321 * data.c (handle_arith_signal):
322 * dispnew.c (handle_window_change_signal):
323 * emacs.c (handle_fatal_signal, handle_danger_signal):
324 * keyboard.c (handle_input_available_signal):
325 * keyboard.c (handle_user_signal, handle_interrupt_signal):
326 * process.c (handle_pipe_signal, handle_child_signal):
327 New functions, with the actual signal-handling code taken from the
328 original respective signal handlers, sans the sporadic attempts to
329 preserve errno, since that's now done by handle_on_main_thread.
330 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
331 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
332 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
333 Move to sysdep.c.
334 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
335 Move initialization of main_thread to sysdep.c's init_signals.
336 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
337 our usage, and simplifies the mainline code.
338 (record_child_status_change): New static function, as a helper
339 for handle_child_signal, and with most of the old child handler's
340 contents.
341 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
342 (handle_child_signal): Use the above.
343 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
344 Moved here from emacs.c.
345 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
346 code moved here from emacs.c's main function.
347 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
348 replacing the old SIGNAL_THREAD_CHECK. All uses changed. This
349 lets callers save and restore errno properly.
350
351 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
352
353 Remove redundant or unused things here and there.
354 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
355 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
356 * editfns.c (Fcompare_buffer_substrings): Likewise.
357 * frame.h (struct terminal, struct font_driver_list):
358 Remove redundant declarations.
359 * window.h (Qleft, Qright): Likewise.
360
361 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
362
363 Do not mark objects from deleted buffers, windows and frames.
364 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
365 (mark_object): Likewise for windows and frames.
366
367 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
368
369 * alloc.c (valid_lisp_object_p): Treat killed buffers,
370 buffer_defaults and buffer_local_symbols as valid objects.
371 Return special value to denote them.
372
373 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
374
375 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
376 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
377 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
378 (file_name_absolute_p, Fsubstitute_in_file_name):
379 (check_executable, check_writable, Ffile_accessible_directory_p)
380 (Fset_file_selinux_context, Fdefault_file_modes)
381 (Finsert_file_contents, choose_write_coding_system)
382 (Fwrite_region, build_annotations, a_write, e_write)
383 (Fdo_auto_save):
384 * filelock.c (boot_time_initialized, get_boot_time)
385 (get_boot_time_1, lock_file_1, within_one_second):
386 * floatfns.c (in_float):
387 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
388 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
389 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
390 * lisp.h (struct Lisp_Hash_Table.cmpfn):
391 * window.c (compare_window_configurations):
392 Use bool for booleans.
393 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
394 (Fdefault_file_modes): Now mode_t, not int, for modes.
395 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
396 (internal_delete_file): Now returns void, not a (boolean) int,
397 since nobody was looking at the return value.
398 * lisp.h, window.h: Adjust to above API changes.
399
400 * xdisp.c (set_message): Simplify and reindent last change.
401
402 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
403
404 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
405
406 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
407
408 * eval.c (call_debugger): Make the function non-static so that we
409 can call it from set_message.
410
411 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
412 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
413
414 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
415
416 Give more-useful info on a fatal error (Bug#12328).
417 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
418 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
419 of doing the work ourselves.
420 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
421 do most of the work.
422 (fatal_error_backtrace): New function, taken from the guts
423 of the old fatal_error_signal, but with a new option to output
424 a backtrace.
425 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
426 info about the signal than just its number.
427 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
428 * sysdep.c: Include <execinfo.h>
429 (emacs_backtrace): New function, taken partly from the previous
430 code of the 'die' function.
431 (emacs_abort): Call fatal_error_backtrace rather than abort.
432
433 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
434
435 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
436 eager (load-time) macro-expansion.
437 * lisp.mk (lisp): Add macroexp.
438
439 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
440
441 Simplify redefinition of 'abort' (Bug#12316).
442 Do not try to redefine the 'abort' function. Instead, redo
443 the code so that it calls 'emacs_abort' rather than 'abort'.
444 This removes the need for the NO_ABORT configure-time macro
445 and makes it easier to change the abort code to do a backtrace.
446 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
447 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
448 Remove; sysdep.c's emacs_abort now takes its place.
449 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
450 'abort' changed to use 'emacs_abort'.
451 * msdos.c (dos_abort) [defined abort]: Remove; not used.
452 (abort) [!defined abort]: Rename to ...
453 (emacs_abort): ... new name.
454 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
455 the place of the old 'abort' in emacs.c.
456 * w32.c, w32fns.c (abort): Do not #undef.
457 * w32.c (emacs_abort): Rename from w32_abort.
458
459 2012-09-04 Eli Zaretskii <eliz@gnu.org>
460
461 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
462 offsets[j].dv, since the y axis of the screen coordinates points
463 down, while the y axis of the font definition coordinates points
464 up. This fixes display of Arabic diacritics such as KASRA and
465 KASRATAN. (Bug#11860)
466
467 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
468
469 Be more systematic about _setjmp vs setjmp.
470 * alloc.c (test_setjmp, mark_stack):
471 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
472 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
473 (png_load, my_error_exit, jpeg_load):
474 * process.c (send_process_trap, send_process):
475 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
476 The underscored versions are up to 30x faster on some hosts.
477 Formerly, the code used setjmp+longjmp sometimes and
478 _setjmp+_longjmp at other times, with no particular reason to
479 prefer setjmp+longjmp.
480
481 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
482
483 Fix minor problem found by static checking.
484 * buffer.c (Fdelete_all_overlays): Return nil.
485
486 2012-09-03 Martin Rudalics <rudalics@gmx.at>
487
488 * buffer.c (Fdelete_all_overlays): New function.
489
490 2012-09-03 Chong Yidong <cyd@gnu.org>
491
492 * gtkutil.c: Add extern decl for Qxft.
493
494 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
495
496 * emacs.c, eval.c: Use bool for boolean.
497 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
498 (malloc_using_checking) [DOUG_LEA_MALLOC]:
499 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
500 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
501 (main, decode_env_path, Fdaemon_initialized):
502 * eval.c (call_debugger, Finteractive_p, interactive_p):
503 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
504 (maybe_call_debugger, Fbacktrace):
505 * process.c (read_process_output, exec_sentinel):
506 Use bool for booleans.
507 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
508 All callers changed.
509 * eval.c (interactive_p): Omit always-true boolean argument
510 EXCLUDE_SUBRS_P. All callers changed.
511 * dispextern.h, lisp.h: Reflect above API changes.
512 * firstfile.c (dummy): Use the address of 'main', whose signature
513 won't change, instead of the address of 'initialize', whose
514 signature just changed from int to bool.
515 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
516 * msdos.c (fatal_error_in_progress): ... from here.
517 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
518 of incrementing it.
519 (redisplay_internal, unwind_redisplay): Simply clear
520 REDISPLAYING_P when unwinding, instead of saving its previous,
521 always-false value and then restoring it.
522
523 Clean up some extern decls.
524 Mostly, this hoists extern decls out of .c files and into .h files.
525 That way, we're more likely to catch errors if the interfaces change.
526 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
527 declare xg_mark_data.
528 * dispextern.h (x_frame_parm_handlers):
529 * font.h (Qxft):
530 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
531 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
532 (Qultra_bold, Qoblique, Qitalic):
533 Move extern decl here from .c file.
534 * alloc.c (xg_mark_data) [USE_GTK]:
535 * doc.c (Qclosure):
536 * eval.c (Qlexical_binding):
537 * fns.c (time) [!HAVE_UNISTD_H]:
538 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
539 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
540 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
541 * lread.c (Qinternal_interpreter_environment):
542 * minibuf.c (Qbuffer):
543 * process.c (QCfamily, QCfilter):
544 * widget.c (free_frame_faces):
545 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
546 * xfont.c (x_clear_errors):
547 * xterm.c (x_frame_parm_handlers):
548 Remove now-redundant extern decls.
549 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
550 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
551 Now static.
552 * xfaces.c: Remove unnecessary static decls.
553 * xterm.c (updating_frame): Remove decl of nonexistent object.
554
555 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
556 when building globals.h, as the objects that are not built on
557 this host are not needed to compile C files on this host.
558
559 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
560
561 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
562
563 * frame.h: Add missing prototype for x_wm_set_size_hint.
564
565 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
566
567 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
568 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
569 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
570 (Fsubstitute_command_keys):
571 * editfns.c (region_limit, find_field, Fconstrain_to_field)
572 (save_excursion_save, save_excursion_restore)
573 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
574 (format_time_string, general_insert_function)
575 (make_buffer_string, make_buffer_string_both)
576 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
577 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
578 (copy_text, insert_1, insert_1_both, insert_from_string)
579 (insert_from_string_before_markers, insert_from_string_1)
580 (insert_from_buffer, insert_from_buffer_1, replace_range)
581 (replace_range_2, del_range_1, del_range_byte, del_range_both)
582 (del_range_2, modify_region):
583 * intervals.c (intervals_equal, balance_possible_root_interval)
584 (adjust_intervals_for_insertion, merge_properties_sticky)
585 (graft_intervals_into_buffer, lookup_char_property)
586 (adjust_for_invis_intang, set_point_both)
587 (get_property_and_range, compare_string_intervals)
588 (set_intervals_multibyte_1, set_intervals_multibyte):
589 * keyboard.c (decode_timer):
590 Use bool for boolean.
591 * intervals.h, lisp.h, systime.h: Reflect above API changes.
592 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
593
594 2012-09-02 Chong Yidong <cyd@gnu.org>
595
596 * keymap.c (push_key_description): Print M-TAB as C-M-i
597 (Bug#11758).
598
599 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
600
601 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
602 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
603 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
604 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
605 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
606 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
607 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
608
609 2012-09-01 Eli Zaretskii <eliz@gnu.org>
610
611 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
612 more than one grapheme cluster passed to the shaper: compute the
613 offset adjustment values separately for each cluster. (Bug#11860)
614
615 * image.c: Restore mistakenly removed inclusion of w32.h. Without
616 it, GCC doesn't see prototypes of w32_delayed_load, and complains
617 about implicit conversions from integer to pointer.
618
619 2012-09-01 Daniel Colascione <dancol@dancol.org>
620
621 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
622 system used too early.
623
624 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
625
626 Better seed support for (random).
627 * emacs.c (main): Call init_random.
628 * fns.c (Frandom): Set the seed from a string argument, if given.
629 Remove long-obsolete Gentzel cruft.
630 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
631 (init_random): New function.
632
633 2012-09-01 Daniel Colascione <dancol@dancol.org>
634
635 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
636 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
637 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
638 x_wm_set_size_hint, x_query_colors, x_real_positions,
639 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
640 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
641 all of which have been moved to common code.
642
643 * xfaces.c: Include TERM_HEADER instead of listing all possible
644 window-system headers.
645
646 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
647 to match header.
648
649 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
650 directly accessing frame internals.
651
652 * w32font.h: Include font.h. Define syms_of_w32font and
653 globals_of_w32font.
654
655 * process.c: Include TERM_HEADER instead of listing all possible
656 window-system headers.
657
658 * nsterm.h: Remove declarations now in frame.h. Define
659 FRAME_X_SCREEN, FRAME_X_VISUAL.
660
661 * menu.c: Include TERM_HEADER instead of listing all possible
662 window-system headers.
663
664 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
665 window system.
666
667 * keyboard.c: Include TERM_HEADER instead of listing all possible
668 window-system headers.
669
670 * image.c: Include TERM_HEADER instead of listing all possible
671 window-system headers. Declare Vlibrary_cache when compiling for
672 Windows.
673
674 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
675 window system declarations.
676
677 * frame.h: Move common functions here: set_frame_menubar,
678 x_set_window_size, x_sync, x_get_focus_frame,
679 x_set_mouse_position, x_set_mouse_pixel_position,
680 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
681 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
682 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
683 x_activate_menubar, x_real_positions, x_bitmap_icon,
684 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
685 and x_query_colors.
686
687 * frame.c: Include TERM_HEADER instead of listing all possible
688 window-system headers.
689
690 * font.c: Include TERM_HEADER instead of listing all possible
691 window-system headers.
692
693 * emacs.c: Include TERM_HEADER.
694
695 * dispnew.c: Include TERM_HEADER instead of listing all possible
696 window-system headers.
697
698 * ccl.h: Include character.h.
699
700 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
701 the current window system; include in list of objects to link into
702 Emacs.
703
704 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
705
706 Remove mark_ttys function and fix tty_display_info initialization.
707 * lisp.h (mark_ttys): Remove prototype.
708 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
709 to mark_ttys because all possible values of 'top_frame' slot are
710 the frames which are reachable from Vframe_list.
711 * term.c (mark_ttys): Remove.
712 (init_tty): Safely initialize 'top_frame' slot with Qnil.
713
714 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
715
716 Change struct frame bitfields from unsigned char to unsigned.
717 * frame.h (struct frame): Change type of 'display_preempted',
718 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
719 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
720 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
721 bitfields from unsigned char to unsigned.
722
723 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
724
725 Remove unused member of struct x_output and struct w32_output.
726 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
727 * w32term.h (struct w32_output): Likewise.
728
729 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
730
731 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
732 does not become zero (Bug#12234).
733
734 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
735
736 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
737 for GCC 4.7.1 x86-64.
738
739 2012-08-30 Glenn Morris <rgm@gnu.org>
740
741 * lread.c (init_lread): For out-of-tree builds, only add the
742 source directory's site-lisp dir to the load-path if it exists,
743 consistent with in-tree builds. (Bug#12302)
744
745 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
746
747 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
748 button_values to NULL. Call setStykeMask so dialogs get a close button.
749 (windowShouldClose:): Set window_closed.
750 (dealloc): New member, free button_values.
751 (process_dialog:): Make member function. Remove window argument,
752 replace window with self. Count buttons and allocate and store values
753 in button_values.
754 (addButton:value:row:): value is int with the name tag. Call setTag
755 with tag. Remove return self, declare return value as void.
756 (addString:row:): Remove return self, declare return value as void.
757 (addSplit): Remove return self, declare return value as void.
758 (clicked:): Remove return self, declare return value as void.
759 Set dialog_return to button_values[seltag]. Code formatting change.
760 (initFromContents:isQuestion:): Adjust call to process_dialog.
761 Code formatting change.
762 (timeout_handler:): Set timer_fired to YES.
763 (runDialogAt:): Set timer_fired to NO.
764 Handle click on close button as quit.
765
766 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
767 Add window_closed and button_values. Add void as return value for
768 add(Button|String|Split). addButton takes int instead of Lisp_Object.
769 Add process_dialog as new member.
770
771 2012-08-28 Eli Zaretskii <eliz@gnu.org>
772
773 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
774 is not one of the heaps we manage. (Bug#12242)
775
776 2012-08-28 Glenn Morris <rgm@gnu.org>
777
778 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
779
780 2012-08-28 Martin Rudalics <rudalics@gmx.at>
781
782 * window.c (Fset_window_configuration): Remove handling of
783 auto-buffer-name window parameter. Install revision of reverted
784 fix.
785
786 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
787
788 Do not allow to set major mode for a dead buffer.
789 * buffer.c (Fset_buffer_major_mode): Signal an error
790 if the buffer is dead.
791 (Fother_buffer, other_buffer_safely): Remove redundant
792 nested declaration.
793
794 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
795
796 Always use set_buffer_if_live to restore original buffer at unwind.
797 * buffer.h (record_unwind_current_buffer): New function.
798 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
799 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
800 * undo.c, window.c: Adjust users.
801 * buffer.c (set_buffer_if_live): Fix comment.
802
803 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
804
805 Fix usage of set_buffer_internal.
806 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
807 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
808 * coding.c (decode_coding): Omit redundant test.
809 * fileio.c (decide_coding_unwind): Likewise.
810 * fns.c (secure_hash): Likewise.
811 * insdel.c (modify_region): Likewise.
812 * keyboard.c (command_loop_1): Likewise.
813 * print.c (PRINTFINISH): Likewise.
814 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
815
816 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
817
818 * dispnew.c: Use bool for boolean.
819 (frame_garbaged, display_completed, delayed_size_change)
820 (fonts_changed_p, add_window_display_history)
821 (add_frame_display_history, verify_row_hash)
822 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
823 (row_equal_p, realloc_glyph_pool)
824 (allocate_matrices_for_frame_redisplay)
825 (showing_window_margins_p)
826 (adjust_frame_glyphs_for_frame_redisplay)
827 (build_frame_matrix_from_leaf_window, make_current)
828 (mirrored_line_dance, mirror_line_dance, update_frame)
829 (update_window_tree, update_single_window)
830 (check_current_matrix_flags, update_window, update_text_area)
831 (update_window_line, set_window_update_flags, scrolling_window)
832 (update_frame_1, scrolling, buffer_posn_from_coords)
833 (do_pending_window_change, change_frame_size)
834 (change_frame_size_1, sit_for):
835 Use bool for boolean.
836 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
837 and remove last int (actually boolean) argument, which was always 0.
838 All callers changed.
839 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
840 * dispextern.h (struct composition_it): Use bool for boolean.
841 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
842 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
843 * dired.c (file_name_completion):
844 Use bool for boolean. (This was missed in an earlier change.)
845
846 2012-08-27 Martin Rudalics <rudalics@gmx.at>
847
848 * window.c (Fset_window_configuration): Revert first part of
849 last change.
850
851 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
852
853 * nsterm.h (NSPanel): New class variable dialog_return.
854
855 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
856 dialog_return.
857 (windowShouldClose:): Use stop instead of stopModalWithCode.
858 (clicked:): Ditto, and also set dialog_return (Bug#12258).
859 (timeout_handler:): Use stop instead of abortModal. Send a dummy
860 event.
861 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
862 modal loop returns.
863
864 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
865
866 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
867 * composite.c (find_composition, composition_gstring_p)
868 (composition_reseat_it, find_automatic_composition):
869 * data.c (let_shadows_buffer_binding_p)
870 (let_shadows_global_binding_p, set_internal, make_blv)
871 (Fmake_variable_buffer_local, Fmake_local_variable)
872 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
873 (cons_to_signed, arith_driver):
874 * dbusbind.c (xd_in_read_queued_messages):
875 * dired.c (directory_files_internal, file_name_completion):
876 Use bool for booleans.
877 * dired.c (file_name_completion):
878 * process.h (fd_callback):
879 Omit int (actually boolean) argument. It wasn't being used.
880 All uses changed.
881 * composite.h, lisp.h: Reflect above API changes.
882
883 * cmds.c, coding.c: Use bool for booleans.
884 * cmds.c (move_point, Fself_insert_command):
885 * coding.h (struct composition status, struct coding_system):
886 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
887 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
888 (emacs_mule_char, decode_coding_emacs_mule)
889 (encode_coding_emacs_mule, detect_coding_iso_2022)
890 (decode_coding_iso_2022, encode_invocation_designation)
891 (encode_designation_at_bol, encode_coding_iso_2022)
892 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
893 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
894 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
895 (encode_coding_raw_text, detect_coding_charset)
896 (decode_coding_charset, encode_coding_charset, detect_eol)
897 (detect_coding, get_translation_table, produce_chars)
898 (consume_chars, reused_workbuf_in_use)
899 (make_conversion_work_buffer, code_conversion_save)
900 (decode_coding_object, encode_coding_object)
901 (detect_coding_system, char_encodable_p)
902 (Funencodable_char_position, code_convert_region)
903 (code_convert_string, code_convert_string_norecord)
904 (Fset_coding_system_priority):
905 * fileio.c (Finsert_file_contents):
906 Use bool for booleans.
907 * coding.h, lisp.h: Reflect above API changes.
908 * coding.c: Remove unnecessary static function decls.
909 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
910 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
911 not a boolean 'int', since callers never look at the return value.
912 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
913 * coding.h (decoding_buffer_size, encoding_buffer_size)
914 (emacs_mule_string_char): Remove unused extern decls.
915 (struct iso_2022_spec, struct coding_system):
916 Use 'unsigned int : 1' for boolean fields, since there's more than one.
917 (struct emacs_mule_spec): Remove unused field 'full_support'.
918 All initializations removed.
919 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
920
921 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
922
923 Fix spare memory change (Bug#12286).
924 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
925 (valid_lisp_object_p): Likewise.
926
927 2012-08-27 Martin Rudalics <rudalics@gmx.at>
928
929 * window.c (Fset_window_configuration): Record any window's old
930 buffer if it's replaced (see Bug#8789). If the new current
931 buffer doesn't appear in the selected window, go to its old
932 point (Bug#12208).
933
934 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
935
936 Special MEM_TYPE_SPARE to denote reserved memory.
937 * alloc.c (enum mem_type): New memory type.
938 (refill_memory_reserve): Use new type for spare memory.
939 This prevents live_cons_p and live_string_p from incorrect
940 detection of uninitialized objects from spare memory as live.
941
942 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
943
944 Spelling fixes.
945 * Makefile.in (.PHONY): versioclean -> versionclean.
946
947 Remove unused external symbols.
948 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
949 * window.c (Qwindow_valid_p, decode_valid_window):
950 Now static, not extern.
951 * data.c (Qinterval): Remove; unused.
952 (syms_of_data): Do not define 'interval'.
953 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
954 * window.h (decode_valid_window):
955 Remove decls.
956
957 * character.c, charset.c, chartab.c: Use bool for booleans.
958 * character.c (lisp_string_width, string_count_byte8)
959 (string_escape_byte8):
960 * charset.c (charset_map_loaded, load_charset_map, read_hex):
961 (load_charset_map_from_file, map_charset_chars)
962 (Fdefine_charset_internal, define_charset_internal)
963 (Fdeclare_equiv_charset, find_charsets_in_text)
964 (Ffind_charset_region, char_charset, Fiso_charset):
965 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
966 (sub_char_table_set, sub_char_table_set_range)
967 (char_table_set_range, optimize_sub_char_table)
968 (map_sub_char_table):
969 Use bool for boolean.
970 * character.c (str_to_unibyte): Omit last boolean argument; it was
971 always 0. All callers changed.
972 * character.h, charset.h: Adjust to match previous changes.
973 * character.h (char_printable_p): Remove decl of nonexistent function.
974 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
975 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
976 are all boolean, so make them single-bit bitfields.
977
978 * lisp.h (ASET): Remove attempt to detect side effects.
979 It was meant to be temporary and it often doesn't work,
980 because when IDX has side effects the behavior of IDX==IDX
981 is undefined. See Stefan Monnier in
982 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
983
984 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
985
986 * lisp.h (functionp): New function (extracted from Ffunctionp).
987 (FUNCTIONP): Use it.
988 * eval.c (Ffunctionp): Use it.
989
990 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
991
992 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
993 as that's faster and simpler than static storage. Don't bother
994 with the g_main_context_query overhead if g_main_context_pending
995 says no events are pending.
996 (gfds, gfds_size): Remove these static vars.
997 (xgselect_initialize): Remove; no longer needed.
998 All uses and decls removed.
999
1000 * emacs.c (fatal_error_signal_hook): Remove.
1001 All uses removed. This leftover from old code was always 0.
1002
1003 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
1004 * casefiddle.c (casify_object, casify_region):
1005 * casetab.c (set_case_table):
1006 * category.c, category.h (word_boundary_p):
1007 * category.h (CHAR_HAS_CATEGORY):
1008 Use bool for booleans, instead of int.
1009
1010 2012-08-25 Eli Zaretskii <eliz@gnu.org>
1011
1012 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
1013
1014 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
1015
1016 On assertion failure, print backtrace if available.
1017 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
1018 (die) [ENABLE_CHECKING]: Print a backtrace if available.
1019 * Makefile.in (LIB_EXECINFO): New macro.
1020 (LIBES): Use it.
1021
1022 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
1023 * bytecode.c (exec_byte_code):
1024 * callint.c (check_mark, Fcall_interactively):
1025 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
1026 (getenv_internal, sync_process_alive, call_process_exited):
1027 * lisp.h (USE_SAFE_ALLOCA):
1028 Use bool for booleans, instead of int.
1029 * lisp.h, process.h: Adjust prototypes to match above changes.
1030 * callint.c (Fcall_interactively): Don't assume the mark's
1031 offset fits in 'int'.
1032
1033 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
1034
1035 * buffer.c, buffer.h: Use bool for boolean.
1036 * buffer.c (reset_buffer_local_variables)
1037 (buffer_lisp_local_variables, Fset_buffer_modified_p)
1038 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
1039 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
1040 (overlay_touches_p, overlay_strings, Foverlay_put)
1041 (report_overlay_modification, call_overlay_mod_hooks):
1042 (mmap_enlarge, mmap_set_vars):
1043 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
1044 Use bool for booleans, instead of int.
1045 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
1046 since the 1-or-0 return value is always ignored anyway.
1047 (mmap_initialized_p):
1048 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
1049 * buffer.h, lisp.h: Adjust prototypes to match above changes.
1050
1051 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
1052
1053 * bidi.c: Use bool for boolean.
1054 This is a bit more readable, and makes the text segment of bidi.o
1055 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
1056 Presumably it's faster too.
1057 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
1058 Now bool.
1059 (bidi_cache_find_level_change, bidi_cache_iterator_state)
1060 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
1061 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
1062 (bidi_explicit_dir_char, bidi_level_of_next_char)
1063 (bidi_find_other_level_edge, bidi_move_to_visually_next):
1064 Use bool for booleans, instead of int.
1065 * dispextern.h (bidi_init_it, bidi_paragraph_init)
1066 (bidi_unshelve_cache): Adjust decls to match code.
1067
1068 2012-08-23 Martin Rudalics <rudalics@gmx.at>
1069
1070 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
1071 argument.
1072
1073 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
1074
1075 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
1076 * atimer.h: Include <stdbool.h>.
1077
1078 2012-08-22 Dan Nicolaescu <dann@gnu.org>
1079
1080 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
1081 compile time tests instead of run time tests on systems that do
1082 not use them.
1083 (FRAME_MAC_P): Remove leftover from deleted code.
1084 * frame.c (syms_of_frame): Remove leftover from deleted code.
1085
1086 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
1087
1088 * nsterm.m (insertText:): Don't clear modifiers if code is space.
1089
1090 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
1091
1092 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
1093 Otherwise, the compiler complains about (A?B:C) where B is void
1094 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
1095 (fontset_add): Return void, for FONTSET_ADD.
1096
1097 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
1098
1099 * alloc.c: Use bool for booleans.
1100 (gc_in_progress, abort_on_gc)
1101 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
1102 (dont_register_blocks) [GC_MALLOC_CHECK]:
1103 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
1104 (check_string_bytes, make_specified_string, memory_full)
1105 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
1106 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
1107 (mark_stack, valid_pointer_p, make_pure_string)
1108 (Fgarbage_collect, survives_gc_p, gc_sweep):
1109 Use bool for booleans, instead of int.
1110 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
1111 Remove unused local.
1112 * alloc.c (PURE_POINTER_P):
1113 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
1114 * editfns.c (Fformat):
1115 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
1116 (Fdo_auto_save):
1117 * fns.c (sweep_weak_table):
1118 * lisp.h (suppress_checking, push_message, survives_gc_p)
1119 (make_pure_string, gc_in_progress, abort_on_gc):
1120 * lread.c (readchar, read1):
1121 * print.c (Fprin1_to_string):
1122 * xdisp.c (push_message):
1123 Use bool for booleans affected directly or indirectly by
1124 alloc.c's changes.
1125
1126 Make recently-introduced setters macros.
1127 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
1128 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
1129 (set_fontset_default, set_fontset_fallback): Rename from their
1130 upper-case counterparts, and make them functions rather than macros.
1131 This is more consistent with the other recently-introduced setters.
1132 These don't need to be inline, since they're local.
1133
1134 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
1135
1136 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
1137 the loop (Bug#12247).
1138
1139 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
1140
1141 * lisp.h (vcopy): Use memcpy rather than our own loop.
1142 This fixes a performance regression introduced by the recent
1143 addition of vcopy. This means 'vcopy' will need to be modified
1144 for a copying collector, but that's OK. Also, tighten the
1145 checking in the assertion.
1146
1147 2012-08-21 Eli Zaretskii <eliz@gnu.org>
1148
1149 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
1150 components for RTL text (Bug#11860). Adjust X-OFFSET of each
1151 non-base glyph for the width of the base character, according to
1152 what x_draw_composite_glyph_string_foreground expects.
1153 Generate WADJUST value according to composition_gstring_width's
1154 expectations, to produce correct width of the composed character.
1155 Reverse the sign of the DU offset produced by ScriptPlace.
1156
1157 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
1158
1159 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
1160
1161 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
1162
1163 Avoid direct writes to contents member of struct Lisp_Vector.
1164 * lisp.h (vcopy): New function to copy data into vector.
1165 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
1166 * fns.c (Ffillarray): Use ASET.
1167 * keyboard.c (timer_check_2): Use AREF and ASET.
1168 (append_tool_bar_item, Frecent_keys): Use vcopy.
1169 * lread.c (read_vector): Use ASET.
1170 * msdos.c (Frecent_doskeys): Use vcopy.
1171 * xface.c (Finternal_copy_lisp_face): Use vcopy.
1172 (Finternal_merge_in_global_face): Use ASET and vcopy.
1173 * xfont.c (xfont_list_pattern): Likewise.
1174
1175 2012-08-21 Martin Rudalics <rudalics@gmx.at>
1176
1177 * window.c (Fwindow_point): For the selected window always return
1178 the position of its buffer's point.
1179 (Fset_window_point): For the selected window always go in its
1180 buffer to the specified position.
1181
1182 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
1183
1184 Setter macros for fontsets.
1185 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
1186 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
1187 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
1188 Adjust users.
1189
1190 2012-08-20 Glenn Morris <rgm@gnu.org>
1191
1192 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
1193 Don't assume that `ln -f' works.
1194
1195 2012-08-20 Eli Zaretskii <eliz@gnu.org>
1196
1197 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
1198 and later about non-assignments with no effect. See discussion at
1199 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
1200 details.
1201
1202 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
1203
1204 Inline setter functions for Lisp_Objects slots of struct specbinding.
1205 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
1206 Adjust users.
1207
1208 2012-08-20 Martin Rudalics <rudalics@gmx.at>
1209
1210 * window.c (select_window): Always make selected window's buffer
1211 current.
1212
1213 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
1214
1215 Use AREF and ASET for docstrings of category tables.
1216 * category.h (CATEGORY_DOCSTRING): Use AREF.
1217 (SET_CATEGORY_DOCSTRING): Use ASET.
1218 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
1219
1220 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
1221
1222 Inline setter functions for hash table members.
1223 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
1224 (set_hash_hash, set_hash_index): Rename with _slot suffix.
1225 (set_hash_key_and_value, set_hash_index, set_hash_next)
1226 (set_hash_hash): New functions.
1227 * charset.c, fns.c: Adjust users.
1228
1229 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
1230
1231 Inline getter and setter functions for per-buffer values.
1232 * buffer.h (per_buffer_default, set_per_buffer_default)
1233 (per_buffer_value, set_per_buffer_value): New functions.
1234 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
1235 * buffer.c, data.c: Adjust users.
1236
1237 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
1238
1239 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
1240
1241 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
1242
1243 Rely on <config.h> + <unistd.h> to declare 'environ',
1244 as gnulib does this if the system doesn't.
1245 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
1246 Remove declaration. MS-Windows declares it on stdlib.h which is
1247 included by conf_post.h.
1248 * emacs.c (environ) [DOUG_LEA_MALLOC]:
1249 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
1250 * vm-limit.c: Include <unistd.h>, for 'environ'.
1251
1252 * unexaix.c, unexcoff.c: Include "mem-limits.h".
1253 (start_of_data): Remove decl; mem-limits.h provides it.
1254
1255 * xdisp.c (handle_invisible_prop): Make it a bit faster
1256 and avoid a gcc -Wmaybe-uninitialized diagnostic.
1257
1258 2012-08-19 Chong Yidong <cyd@gnu.org>
1259
1260 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
1261 ends (Bug#3874).
1262
1263 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
1264
1265 * .gdbinit: Use call instead of set when calling a function in the
1266 inferior.
1267
1268 * data.c (set_internal): Don't use set_blv_found.
1269 (Fkill_local_variable): Likewise.
1270
1271 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
1272
1273 * nsfont.m (ns_ascii_average_width): Ensure the string
1274 ascii_printable is initialized with a null-terminated character
1275 array. Otherwise, it can contain undesired extra characters.
1276
1277 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
1278
1279 port new setting code to Sun C 5.8 2005/10/13
1280 * chartab.c, lisp.h (char_table_set, char_table_set_range):
1281 Return void, not Lisp_Object. Otherwise, the compiler
1282 complains about (A?B:C) where B is void and C is Lisp_Object
1283 when compiling CHAR_TABLE_SET, due to the recent change to
1284 the API of sub_char_table_set_contents.
1285
1286 2012-08-18 Chong Yidong <cyd@gnu.org>
1287
1288 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
1289 for the string case (Bug#3874).
1290
1291 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
1292
1293 * buffer.h (BSET): Remove (Bug#12215).
1294 Replace all uses with calls to new setter functions.
1295 (bset_bidi_paragraph_direction, bset_case_canon_table)
1296 (bset_case_eqv_table, bset_directory, bset_display_count)
1297 (bset_display_time, bset_downcase_table)
1298 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
1299 (bset_last_selected_window, bset_local_var_alist)
1300 (bset_mark_active, bset_point_before_scroll, bset_read_only)
1301 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
1302 (bset_width_table):
1303 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
1304 (bset_auto_fill_function, bset_auto_save_file_format)
1305 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
1306 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
1307 (bset_cache_long_line_scans, bset_case_fold_search)
1308 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
1309 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
1310 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
1311 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
1312 (bset_header_line_format, bset_indicate_buffer_boundaries)
1313 (bset_indicate_empty_lines, bset_invisibility_spec)
1314 (bset_left_fringe_width, bset_major_mode, bset_mark)
1315 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
1316 (bset_name, bset_overwrite_mode, bset_pt_marker)
1317 (bset_right_fringe_width, bset_save_length)
1318 (bset_scroll_bar_width, bset_scroll_down_aggressively)
1319 (bset_scroll_up_aggressively, bset_selective_display)
1320 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
1321 (bset_word_wrap, bset_zv_marker):
1322 * category.c (bset_category_table):
1323 * syntax.c (bset_syntax_table):
1324 New setter functions.
1325
1326 * process.h (PSET): Remove (Bug#12215).
1327 Replace all uses with calls to new setter functions.
1328 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
1329 (PROCESS_INLINE): New macro.
1330 (pset_childp): New setter function.
1331 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
1332 * process.c (PROCESS_INLINE):
1333 Define to EXTERN_INLINE, so that the corresponding functions
1334 are compiled into code.
1335 (pset_buffer, pset_command, pset_decode_coding_system)
1336 (pset_decoding_buf, pset_encode_coding_system)
1337 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
1338 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
1339 (pset_type, pset_write_queue): New setter functions.
1340
1341 * window.h (WSET): Remove (Bug#12215).
1342 Replace all uses with calls to new setter functions.
1343 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
1344 (WINDOW_INLINE): New macro.
1345 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
1346 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
1347 (wset_total_lines, wset_vertical_scroll_bar)
1348 (wset_window_end_pos, wset_window_end_valid)
1349 (wset_window_end_vpos): New setter functions.
1350 * window.c (WINDOW_INLINE):
1351 Define to EXTERN_INLINE, so that the corresponding functions
1352 are compiled into code.
1353 (wset_combination_limit, wset_dedicated, wset_display_table)
1354 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
1355 (wset_new_normal, wset_new_total, wset_next_buffers)
1356 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
1357 (wset_prev_buffers, wset_right_fringe_width)
1358 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
1359 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
1360 (wset_window_parameters):
1361 * xdisp.c (wset_base_line_number, wset_base_line_pos)
1362 (wset_column_number_displayed, wset_region_showing):
1363 New setter functions.
1364
1365 * termhooks.h (TSET): Remove (Bug#12215).
1366 Replace all uses with calls to new setter functions.
1367 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
1368 (TERMHOOKS_INLINE): New macro.
1369 (tset_charset_list, tset_selection_alist): New setter functions.
1370 * terminal.c (TERMHOOKS_INLINE):
1371 Define to EXTERN_INLINE, so that the corresponding functions
1372 are compiled into code.
1373 (tset_param_alist): New setter function.
1374
1375 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
1376
1377 * keyboard.h (KSET): Remove (Bug#12215).
1378 Replace all uses with calls to new setter functions.
1379 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
1380 (KEYBOARD_INLINE): New macro.
1381 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
1382 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
1383 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
1384 New setter functions.
1385 * keyboard.c (KEYBOARD_INLINE):
1386 Define to EXTERN_INLINE, so that the corresponding functions
1387 are compiled into code.
1388 (kset_echo_string, kset_kbd_queue)
1389 (kset_keyboard_translate_table, kset_last_prefix_arg)
1390 (kset_last_repeatable_command, kset_local_function_key_map)
1391 (kset_overriding_terminal_local_map, kset_real_last_command)
1392 (kset_system_key_syms): New setter functions.
1393
1394 * frame.h (FSET): Remove (Bug#12215).
1395 Replace all uses with calls to new setter functions.
1396 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
1397 (FRAME_INLINE): New macro.
1398 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
1399 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
1400 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
1401 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
1402 (fset_param_alist, fset_root_window, fset_scroll_bars)
1403 (fset_selected_window, fset_title, fset_tool_bar_items)
1404 (fset_tool_bar_position, fset_tool_bar_window): New functions.
1405 * frame.c (FRAME_INLINE):
1406 Define to EXTERN_INLINE, so that the corresponding functions
1407 are compiled into code.
1408 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
1409
1410 A few more naming-convention fixes for getters and setters.
1411 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
1412 and rename from buffer_overlays_set_before.
1413 (set_buffer_overlays_after): Move here from buffer.h, and rename
1414 from buffer_overlays_set_after.
1415 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
1416 All uses changed.
1417 (set_buffer_intervals): Rename from buffer_set_intervals.
1418 * intervals.c (set_interval_object): Move here from intervals.h,
1419 and rename from interval_set_object.
1420 (set_interval_left): Move here from intervals.h, and rename from
1421 interval_set_left.
1422 (set_interval_right): Move here from intervals.h, and rename from
1423 interval_set_right.
1424 (copy_interval_parent): Move here from intervals.h, and rename from
1425 interval_copy_parent.
1426 * intervals.h (set_interval_parent): Rename from interval_set_parent.
1427 (set_interval_plist): Rename from interval_set_plist.
1428 Return void, not Lisp_Object, since no caller uses the result.
1429 * lisp.h (string_intervals): Rename from string_get_intervals.
1430 (set_string_intervals): Rename from string_set_intervals.
1431
1432 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
1433 (set_char_table_contents): Rename from char_table_set_contents.
1434 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
1435 All uses changed. See the end of
1436 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
1437
1438 * lisp.h (CSET): Remove (Bug#12215).
1439 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
1440 (set_char_table_purpose): New functions,
1441 replacing CSET. All uses changed. For example, replace
1442 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
1443 "set_char_table_parent (char_table, parent);".
1444 The old version was confusing because it used the same name
1445 'parent' for two different things.
1446
1447 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
1448
1449 Functions to get and set Lisp_Object fields of buffer-local variables.
1450 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
1451 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
1452 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
1453 * data.c, eval.c, frame.c: Adjust users.
1454
1455 2012-08-17 Chong Yidong <cyd@gnu.org>
1456
1457 * xfaces.c (merge_face_vectors): If the target font specfies a
1458 font spec, make the font's attributes take precedence over
1459 directly-specified attributes.
1460 (merge_face_ref): Recognize :font.
1461
1462 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
1463
1464 Do not use memcpy for copying intervals.
1465 * intervals.c (reproduce_interval): New function.
1466 (reproduce_tree, reproduce_tree_obj): Use it.
1467 (reproduce_tree_obj): Remove prototype.
1468
1469 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
1470
1471 * lisp.h (duration_to_sec_usec): Remove unused decl.
1472
1473 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
1474
1475 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
1476 to an allocated instance of NSString, not to the class itself.
1477
1478 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
1479
1480 * makefile.w32-in (C_CTYPE_H): New macro.
1481 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
1482 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
1483 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
1484
1485 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
1486
1487 Use ASCII tests for character types.
1488 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
1489 * xfns.c, xterm.c:
1490 Don't include <ctype.h>; was not needed.
1491 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
1492 * sysdep.c, xfaces.c:
1493 Include <c-ctype.h> instead of <ctype.h>.
1494 * nsterm.m: Include <c-ctype.h>.
1495 * charset.c (read_hex):
1496 * doc.c (Fsnarf_documentation):
1497 * fileio.c (IS_DRIVE) [WINDOWSNT]:
1498 (DRIVE_LETTER) [DOS_NT]:
1499 (Ffile_name_directory, Fexpand_file_name)
1500 (Fsubstitute_in_file_name):
1501 * font.c (font_parse_xlfd, font_parse_fcname):
1502 * frame.c (x_set_font_backend):
1503 * gtkutil.c (xg_get_font):
1504 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
1505 * nsimage.m (hexchar):
1506 * nsterm.m (ns_xlfd_to_fontname):
1507 * sysdep.c (system_process_attributes):
1508 * xfaces.c (hash_string_case_insensitive):
1509 Use C-locale tests instead of locale-specific tests for character
1510 types, since we want the ASCII interpretation here, not the
1511 interpretation suitable for whatever happens to be the current locale.
1512
1513 2012-08-16 Martin Rudalics <rudalics@gmx.at>
1514
1515 Consistently check windows for validity/liveness
1516 (Bug#11984, Bug#12025, Bug#12026).
1517 * lisp.h (CHECK_VALID_WINDOW): New macro.
1518 * window.c (decode_window): Rename to decode_live_window.
1519 (decode_valid_window, Fwindow_valid_p): New functions.
1520 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
1521 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
1522 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
1523 (Fwindow_prev_sibling, Fwindow_combination_limit)
1524 (Fset_window_combination_limit, Fwindow_use_time)
1525 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
1526 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
1527 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
1528 (Fwindow_hscroll, Fset_window_hscroll)
1529 (Fwindow_redisplay_end_trigger)
1530 (Fset_window_redisplay_end_trigger, Fwindow_edges)
1531 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
1532 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
1533 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
1534 (Fwindow_end, Fset_window_point, Fset_window_start)
1535 (Fpos_visible_in_window_p, Fwindow_line_height)
1536 (Fwindow_dedicated_p, Fset_window_dedicated_p)
1537 (Fwindow_prev_buffers, Fset_window_prev_buffers)
1538 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
1539 (Fset_window_parameter, Fwindow_display_table)
1540 (Fset_window_display_table, Fdelete_other_windows_internal)
1541 (Fset_window_buffer, Fset_window_new_total)
1542 (Fset_window_new_normal, Fdelete_window_internal)
1543 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
1544 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
1545 (Fwindow_scroll_bars): Check whether argument window is a valid or
1546 live window. Update doc-strings.
1547 (syms_of_window): New symbol Qwindow_valid_p.
1548 * keyboard.c (Fposn_at_x_y): Check whether argument
1549 frame_or_window denotes a valid window.
1550
1551 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
1552
1553 Fix previous char table change.
1554 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
1555 * chartab.c (optimize_sub_char_table): Likewise.
1556
1557 2012-08-16 Chong Yidong <cyd@gnu.org>
1558
1559 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
1560
1561 * xfont.c (xfont_open):
1562 * xftfont.c (xftfont_open): Set the font's max_width field.
1563
1564 * nsfont.m (nsfont_open): Similar to the Xft backend, set
1565 min_width to space_width and average_width to the average over
1566 printable ASCII characters.
1567 (ns_char_width): Code cleanup.
1568 (ns_ascii_average_width): New utility function.
1569
1570 * font.h (struct font): Update comments.
1571
1572 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
1573
1574 Simple interface to set Lisp_Object fields of character tables.
1575 * lisp.h (CSET): New macro.
1576 (char_table_set_extras, char_table_set_contents)
1577 (sub_char_table_set_contents): New function.
1578 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
1579 * syntax.c: Adjust users.
1580
1581 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1582
1583 * eval.c (eval_sub): Bind lexical-binding.
1584 * lread.c (Qlexical_binding): Make non-static.
1585
1586 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
1587
1588 * nsmenu.m (popupSession): Remove.
1589 (pop_down_menu): Remove endModalSession.
1590 (timeout_handler:): New method.
1591 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
1592 Call runModalForWindow. Check timer_fired when it returns.
1593 If not set, cancel timer and break out of loop.
1594 Otherwise loop again, with a new timeout.
1595
1596 * nsterm.m: Include fcntl.h if present.
1597 (fd_entry, t_readfds, inNsSelect): Remove.
1598 (select_writefds, select_valid, select_timeout, selfds)
1599 (select_mutex, apploopnr): Add.
1600 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
1601 Otherwise call kbd_buffer_store_event.
1602 (ns_send_appdefined): Remove release of fd_entry.
1603 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
1604 Increment and decrement apploopnr.
1605 (ns_select): If no file descriptors, just do a NSTimer.
1606 Otherwise copy read/write masks and start select thread (fd_handler).
1607 Start main loop and wait for application defined event.
1608 Inform select thread to stop selecting after main loop is exited.
1609 (ns_term_init): Create selfds pipe and set non-blocking.
1610 Initialize select_mutex. Start the select thread (fd_handler).
1611 (fd_handler:): Loop forever, wait for info from the main thread
1612 to either start or stop selecting. When select returns, send
1613 and appdefined event.
1614 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
1615 If not call kbd_buffer_store_event.
1616
1617 * nsterm.h (EmacsApp): fd_handler takes id argument.
1618 (EmacsDialogPanel): Add timer_fired and timeout_handler.
1619
1620 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
1621
1622 2012-08-15 Eli Zaretskii <eliz@gnu.org>
1623
1624 * region-cache.c (move_cache_gap): Update gap_len using the actual
1625 growth of the boundaries array. Do not change cache_len.
1626 (Bug#12196)
1627
1628 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
1629
1630 Generalize and cleanup font subsystem checks.
1631 * font.h (FONT_DEBUG, font_assert): Remove.
1632 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
1633 Change font_assert to eassert. Use eassert where appropriate.
1634
1635 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
1636
1637 * gtkutil.c (xg_get_font): Use pango_units_to_double.
1638
1639 2012-08-15 Chong Yidong <cyd@gnu.org>
1640
1641 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
1642 When using the new font chooser, use gtk_font_chooser_get_font_desc to
1643 extract the font descriptor instead of just the font name.
1644 In that case, return a font spec instead of a string.
1645 (x_last_font_name): Move to this file from xfns.c.
1646
1647 * xfns.c (Fx_select_font): The return value can also be a font
1648 spec. Move x_last_font_name management to gtkutil.c.
1649
1650 * xfaces.c: Make font weight and style symbols non-static.
1651
1652 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
1653
1654 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
1655 (bug#12117).
1656
1657 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
1658
1659 * alloc.c (Fgarbage_collect): Use plural form consistently.
1660
1661 2012-08-14 Eli Zaretskii <eliz@gnu.org>
1662
1663 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
1664 iteration through the command loop. Fixes a problem whereby mouse
1665 movements are ignored until the first mouse click.
1666
1667 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1668
1669 Use bool, not int, for Lisp booleans.
1670 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
1671 makes Emacs a bit smaller and presumably a bit faster.
1672 * lisp.h: Include <stdbool.h>.
1673 (struct Lisp_Boolfwd, defvar_bool):
1674 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
1675 * regex.c [!emacs]: Include <stdbool.h>.
1676 (false, true): Remove; <stdbool.h> does this for us now.
1677
1678 2012-08-14 Chong Yidong <cyd@gnu.org>
1679
1680 * character.c (Fcharacterp): Doc fix (Bug#12076).
1681
1682 * data.c (Findirect_variable): Doc fix (Bug#11040).
1683
1684 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
1685
1686 * editfns.c (Fformat): Doc fix (Bug#12059).
1687 (Fsave_current_buffer): Doc fix (Bug#11542).
1688
1689 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
1690
1691 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
1692 (bug#12022).
1693
1694 2012-08-14 Martin Rudalics <rudalics@gmx.at>
1695
1696 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
1697 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
1698 * minibuf.c (choose_minibuf_frame, read_minibuf):
1699 * w32fns.c (x_create_tip_frame):
1700 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
1701 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
1702
1703 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1704
1705 * intervals.c (offset_intervals): Remove obsolete comment.
1706
1707 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
1708
1709 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
1710
1711 2012-08-14 Gergely Risko <gergely@risko.hu>
1712
1713 * coding.c (decode_coding): Record buffer modification before
1714 disabling undo_list (Bug#11773).
1715
1716 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
1717
1718 Revert and cleanup some recent overlay changes.
1719 * buffer.h (enum overlay_type): Remove.
1720 (buffer_get_overlays, buffer_set_overlays): Likewise.
1721 (buffer_set_overlays_before, buffer_set_overlays_after):
1722 New function. Adjust users.
1723 (unchain_both): Add eassert.
1724
1725 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
1726
1727 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
1728
1729 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1730
1731 * gtkutil.c (xg_mark_data): Don't assume C99.
1732
1733 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
1734
1735 * gtkutil.c (xg_frame_tb_info): New struct.
1736 (TB_INFO_KEY): New define.
1737 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
1738 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
1739 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
1740 if not present.
1741 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
1742 is up to date. Otherwise store new data.
1743 (free_frame_tool_bar): Free xg_frame_tb_info if present.
1744
1745 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
1746
1747 Use KSET for write access to Lisp_Object members of struct kboard.
1748 * keyboard.h (KSET): New macro.
1749 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
1750 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
1751 * xterm.c: Adjust users.
1752
1753 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
1754
1755 Use BSET for write access to Lisp_Object members of struct buffer.
1756 * buffer.h (BSET): New macro.
1757 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
1758 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
1759 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
1760 * window.c, xdisp.c, xfns.c: Adjust users.
1761
1762 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
1763
1764 * lread.c (syms_of_lread): Initialize Vlexical_binding.
1765
1766 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
1767
1768 * nsterm.m (not_in_argv): New function.
1769 (application:openFile, application:openTempFile:):
1770 (application:openFileWithoutUI:, application:openFiles:): Open file
1771 if not_in_argv returns non-zero (bug#12171).
1772
1773 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
1774 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
1775 Define for Gtk+ versions less than 3.2.
1776 (xg_get_font_name): Use those functions/macros here.
1777 Reported by Frans Oilinki <moilinki@gmail.com>.
1778
1779 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1780
1781 * unexmacosx.c (copy_data_segment): Copy initialized data in
1782 statically linked libraries from input file rather than memory.
1783
1784 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
1785 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
1786 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
1787
1788 2012-08-10 Glenn Morris <rgm@gnu.org>
1789
1790 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
1791 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
1792
1793 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1794
1795 Fix last change to allow compilation with low optimization levels.
1796 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
1797 Reported by Jan Djärv <jan.h.d@swipnet.se>.
1798
1799 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1800
1801 Use common inline syntax in intervals.h.
1802 * intervals.h (INTERVALS_INLINE): New macro.
1803 Change all users from LISP_INLINE.
1804
1805 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1806
1807 Define Qnone once for all platforms.
1808 * frame.c (Qnone): Define here.
1809 (syms_of_frame): DEFSYM it.
1810 * lisp.h (Qnone): New declaration.
1811 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
1812 * xfns.c: Remove duplication. Adjust users.
1813
1814 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1815
1816 Remove unused macros from intervals.h.
1817 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
1818 * intervals.c: Adjust comment.
1819
1820 2012-08-10 Eli Zaretskii <eliz@gnu.org>
1821
1822 * w32fns.c <w32_unicode_gui>: New static variable.
1823 (globals_of_w32fns): Initialize it according to os_subtype.
1824 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
1825 testing os_subtype.
1826
1827 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
1828 Eli Zaretskii <eliz@gnu.org>
1829
1830 Fix bug #10299 with Unicode characters sent by customized
1831 keyboards created by MSKLC.
1832 * w32fns.c (INIT_WINDOW_CLASS): New macro.
1833 (w32_init_class): Use it to initialize the Emacs class with either
1834 ANSI or Unicode API calls.
1835 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
1836 later.
1837 (w32_wnd_proc): If the character code sent by WM_CHAR or
1838 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
1839 original message. Call DefWindowProcW on NT and later.
1840
1841 2012-08-10 Glenn Morris <rgm@gnu.org>
1842
1843 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
1844
1845 * lisp.h (DIRECTORY_SEP): Let configure set it.
1846
1847 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
1848
1849 Use TSET for write access to Lisp_Object slots of struct terminal.
1850 * termhooks.h (TSET): New macro.
1851 * coding.c, terminal.c, xselect.c: Adjust users.
1852
1853 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1854
1855 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
1856 the failing expression, include them in the error message.
1857 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
1858 * lisp.h (internal_condition_case_n): Update declaration.
1859
1860 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1861
1862 Inline functions to examine and change buffer overlays.
1863 * buffer.c (unchain_both): New function.
1864 * buffer.h (buffer_get_overlays, buffer_set_overlays):
1865 (buffer_has_overlays): New function.
1866 (enum overlay_type): New enum.
1867 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
1868 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
1869
1870 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1871
1872 Inline functions to examine and change buffer intervals.
1873 * alloc.c (mark_interval_tree): Remove.
1874 (MARK_INTERVAL_TREE): Simplify.
1875 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
1876 * intervals.c (buffer_balance_intervals): New function.
1877 (graft_intervals_into_buffer): Adjust indentation.
1878 (set_intervals_multibyte): Simplify.
1879 * buffer.h (BUF_INTERVALS): Remove.
1880 (buffer_get_intervals, buffer_set_intervals): New function.
1881 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
1882 * intervals.c, textprop.c: Adjust users.
1883
1884 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1885
1886 Inline functions to examine and change string intervals.
1887 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
1888 (string_get_intervals, string_set_intervals): New function.
1889 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
1890 * lread.c, print.c, textprop.c: Adjust users.
1891
1892 2012-08-08 Glenn Morris <rgm@gnu.org>
1893
1894 * lisp.mk (lisp): Remove language/persian.elc.
1895
1896 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1897
1898 Cleanup intervals.
1899 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
1900 (NULL_INTERVAL_P): Likewise. Adjust users.
1901 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
1902 Adjust comment. Move under #if 0.
1903 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
1904 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
1905
1906 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1907
1908 Check total length of intervals with eassert.
1909 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
1910 * intervals.c: Change all users to eassert.
1911
1912 2012-08-07 Eli Zaretskii <eliz@gnu.org>
1913
1914 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
1915 Rename fields to match removal of FGET and WGET and disuse of
1916 INTERNAL_FIELD in Lisp_Cons.
1917
1918 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1919
1920 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
1921 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
1922 name since all xname users are fixed long time ago. Do not
1923 use INTERNAL_FIELD.
1924 (set_symbol_name, set_symbol_function, set_symbol_plist):
1925 (set_symbol_next, set_overlay_plist): New function.
1926 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
1927 (struct Lisp_Overlay): Likewise.
1928 (CVAR, MVAR, SVAR): Remove.
1929 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
1930 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
1931 * xterm.c: Adjust users.
1932 * .gdbinit: Change to use name field of struct Lisp_Symbol
1933 where appropriate.
1934
1935 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1936
1937 Basic functions to set Lisp_Object and pointer slots of intervals.
1938 * intervals.h (interval_set_parent, interval_set_object):
1939 (interval_set_left, interval_set_right, interval_set_plist):
1940 (interval_copy_parent): New function.
1941 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
1942 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
1943 Adjust indentation.
1944 (INTERVAL_SIZE): Remove. Adjust users.
1945 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
1946
1947 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1948
1949 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
1950 * process.h (PGET): Remove.
1951 (struct Lisp_Process): Do not use INTERNAL_FIELD.
1952 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
1953
1954 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1955
1956 Drop WGET and revert read access to Lisp_Objects slots of struct window.
1957 * window.h (WGET): Remove.
1958 (struct window): Do not use INTERNAL_FIELD.
1959 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
1960 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
1961 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
1962 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
1963 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
1964 Adjust users.
1965
1966 2012-08-07 Chong Yidong <cyd@gnu.org>
1967
1968 * window.c (Fwindow_edges, Fwindow_pixel_edges)
1969 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
1970 (Fdelete_window_internal): Signal an error if the window is not on
1971 a live frame (Bug#12025).
1972
1973 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1974
1975 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
1976 * frame.h (FGET): Remove.
1977 (struct frame): Do not use INTERNAL_FIELD.
1978 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
1979 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
1980 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
1981 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
1982
1983 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
1984
1985 * w32.c: Silence compiler warnings.
1986 (map_w32_filename): Remove unused variable `is_fat'.
1987 (chase_symlinks): Add parentheses around expression.
1988
1989 2012-08-06 Glenn Morris <rgm@gnu.org>
1990
1991 * sysdep.c: Respect BROKEN_GETWD.
1992
1993 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
1994 Let configure handle it.
1995 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
1996
1997 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1998
1999 Use GCALIGNMENT where appropriate.
2000 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
2001 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
2002 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
2003
2004 2012-08-06 Eli Zaretskii <eliz@gnu.org>
2005
2006 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
2007 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
2008
2009 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
2010
2011 * buffer.h (struct buffer): Revert `indirections' to a simple int;
2012 that should be sufficient for everyone.
2013
2014 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
2015
2016 * keyboard.c (timer_check_2): Add break so timer_check returns next
2017 timeout.
2018
2019 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2020
2021 Fix Windows build errors introduced after converting to WGET and WSET.
2022 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
2023 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2024
2025 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
2026
2027 * nsterm.m (ns_frame_rehighlight): Use FSET.
2028
2029 * nsmenu.m (ns_update_menubar): Use FSET.
2030
2031 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2032
2033 Separate read and write access to Lisp_Object slots of Lisp_Process.
2034 * process.h (PGET, PSET): New macros similar to AREF and ASET.
2035 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
2036
2037 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2038
2039 Separate read and write access to Lisp_Object slots of struct window.
2040 * window.h (WGET, WSET): New macros similar to AREF and ASET.
2041 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
2042 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
2043 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
2044 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
2045 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
2046 Adjust users.
2047
2048 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2049
2050 Fix Windows build errors introduced after converting to FGET and FSET.
2051 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
2052 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
2053 (w32_judge_scroll_bars): Change to use FSET.
2054 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2055
2056 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2057
2058 Fix replacement typo.
2059 * window.c (replace_window): Set root_window instead of
2060 selected_window. This fixes a total window subsystem
2061 malfunction reported by Bastien Guerry <bzg@gnu.org>.
2062
2063 2012-08-06 Glenn Morris <rgm@gnu.org>
2064
2065 * lisp.mk (lisp): Add language/persian.elc.
2066
2067 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2068
2069 Separate read and write access to Lisp_Object slots of struct frame.
2070 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
2071 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
2072 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
2073 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
2074 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
2075
2076 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
2077
2078 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
2079
2080 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2081
2082 Generalize common compile-time constants.
2083 * lisp.h (header_size, bool_header_size, word_size): Now here.
2084 (struct Lisp_Vector): Add comment.
2085 (struct Lisp_Bool_Vector): Move up to define handy constants.
2086 (VECSIZE, PSEUDOVECSIZE): Simplify.
2087 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
2088 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
2089 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
2090 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
2091 * xfont.c, xmenu.c: Use word_size where appropriate.
2092
2093 2012-08-05 Lawrence Mitchell <wence@gmx.li>
2094
2095 * search.c (Freplace_match): Treat \? in the replacement text
2096 literally (Bug#8161).
2097
2098 2012-08-05 Chong Yidong <cyd@gnu.org>
2099
2100 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
2101 * frame.c (Vdelete_frame_functions):
2102 * emacs.c (Vkill_emacs_hook): Doc fix.
2103
2104 2012-08-04 Eli Zaretskii <eliz@gnu.org>
2105
2106 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
2107 --with-x-toolkit=no builds.
2108 Reported by Carsten Mattner <carstenmattner@gmail.com>.
2109
2110 2012-08-04 Chong Yidong <cyd@gnu.org>
2111
2112 * syntax.c (Fmodify_syntax_entry): Doc fix.
2113
2114 2012-08-04 Eli Zaretskii <eliz@gnu.org>
2115
2116 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
2117 * w32.c (init_environment): Change the default values of many
2118 environment variables in dflt_envvars[] to NULL, to avoid pushing
2119 them into environment when they were not already defined.
2120 Remove the code that deletes site-lisp subdirectories from the default
2121 value of EMACSLOADPATH, as it is no longer needed.
2122 (check_windows_init_file): Now external, not static.
2123 Use Vload_path as is, without adding anything, as this function is now
2124 called when Vload_path is already set up.
2125
2126 * w32.h (check_windows_init_file): Add prototype.
2127
2128 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
2129 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
2130 compatibility with Posix platforms.
2131 (main): Move the call to check_windows_init_file to here from
2132 w32.c.
2133 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
2134 any, in the DEFALT argument into the root of the Emacs build or
2135 installation tree, as appropriate.
2136
2137 * callproc.c (init_callproc_1): Call decode_env_path instead of
2138 doing its equivalent by hand.
2139 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
2140 the code that sets Vexec_path run on MS-Windows.
2141
2142 * lread.c (init_lread): Add comments to #ifdef's.
2143
2144 * msdos.c (dos_set_window_size, IT_update_begin)
2145 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
2146 instead of direct references.
2147
2148 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
2149
2150 Export DEFAULT_REHASH_* to GDB.
2151 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
2152 Now constants, not macros.
2153
2154 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
2155
2156 Remove unnecessary casts involving pointers.
2157 These casts are no longer needed now that we assume C89 or later,
2158 since they involve casting to or from void *.
2159 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
2160 (make_pure_float, make_pure_vector):
2161 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
2162 * macros.c (Fstart_kbd_macro):
2163 * menu.c (find_and_return_menu_selection):
2164 * minibuf.c (read_minibuf_noninteractive):
2165 * sysdep.c (closedir):
2166 * xdisp.c (x_produce_glyphs):
2167 * xfaces.c (compare_fonts_by_sort_order):
2168 * xfns.c (x_real_positions, select_visual):
2169 * xselect.c (x_stop_queuing_selection_requests)
2170 (x_get_window_property, x_get_window_property_as_lisp_data):
2171 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
2172 Remove unnecessary pointer casts.
2173 * alloc.c (record_xmalloc): New function.
2174 * lisp.h (record_xmalloc): New decl.
2175 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
2176 more like a function. This is because the pointer cast is not
2177 needed. All uses changed.
2178 * print.c (print_string, print_error_message): Avoid length recalc.
2179
2180 Improve fix for macroexp crash with debugging (Bug#12118).
2181 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
2182 ARRAY_MARK_FLAG when checking subscripts, because ASET is
2183 not supposed to be invoked from the garbage collector.
2184 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
2185 (gc_aset): New function, which is like ASET but can be
2186 used in the garbage collector.
2187 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
2188 (set_hash_index): Use it instead of ASET.
2189
2190 2012-08-03 Eli Zaretskii <eliz@gnu.org>
2191
2192 Support symlinks on latest versions of MS-Windows.
2193 * w32.c: Include winioctl.h and aclapi.h.
2194 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
2195 (revert_to_self): Forward declarations of static functions.
2196 <static BOOL g_b_init_get_security_info>:
2197 <g_b_init_create_symbolic_link>: New static flags.
2198 (globals_of_w32): Initialize them to zero.
2199 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
2200 (map_w32_filename): Improve commentary. Simplify switch.
2201 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
2202 headers (most versions of MinGW w32api don't).
2203 (get_security_info, create_symbolic_link)
2204 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
2205 New functions.
2206 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
2207 in the argument file name.
2208 (sys_access): Call unc_volume_file_attributes only if
2209 GetFileAttributes fails with network-related error codes.
2210 (sys_rename): Diagnose renaming of a symlink when the user doesn't
2211 have the required privileges.
2212 (get_file_security_desc_by_name): Rename from
2213 get_file_security_desc.
2214 (stat_worker): New function, with most of the guts of 'stat', and
2215 with addition of handling of symlinks and support for 'lstat'.
2216 If possible, get file's attributes and security information by
2217 handle, not by name. Produce S_IFLNK bit for symlinks, when
2218 called from 'lstat'.
2219 (stat, lstat): New functions, call 'stat_worker'.
2220 (symlink, readlink, careadlinkat): Rewritten to create and resolve
2221 symlinks when the underlying filesystem supports them.
2222
2223 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
2224
2225 Fix macroexp crash on Windows with debugging (Bug#12118).
2226 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
2227 checking subscripts; problem introduced with the recent
2228 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
2229 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
2230 since it's used in non-static inline functions now.
2231
2232 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
2233 Don't assume buffer size fits in 'int'. Remove unused local.
2234
2235 Use C99-style 'extern inline' if available.
2236 * buffer.h (BUFFER_INLINE):
2237 * category.h (CATEGORY_INLINE):
2238 * character.h (CHARACTER_INLINE):
2239 * charset.h (CHARSET_INLINE):
2240 * composite.h (COMPOSITE_INLINE):
2241 * dispextern.h (DISPEXTERN_INLINE):
2242 * lisp.h (LISP_INLINE):
2243 * systime.h (SYSTIME_INLINE):
2244 New macro, replacing 'static inline' in this header.
2245 * buffer.h, category.h, character.h, charset.h, composite.h:
2246 * dispextern.h, lisp.h, systime.h:
2247 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2248 * alloc.c (LISP_INLINE):
2249 * buffer.c (BUFFER_INLINE):
2250 * category.c (CATEGORY_INLINE):
2251 * character.c (CHARACTER_INLINE):
2252 * charset.c (CHARSET_INLINE):
2253 * composite.c (COMPOSITE_INLINE):
2254 * dispnew.c (DISPEXTERN_INLINE):
2255 * sysdep.c (SYSTIME_INLINE):
2256 Define to EXTERN_INLINE, so that the corresponding functions
2257 are compiled into code.
2258 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
2259 (INLINE_HEADER_END): New macros.
2260 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
2261 since it's used in non-static inline functions now.
2262 (VALMASK) [!USE_LSB_TAG]: Likewise.
2263
2264 2012-08-02 Glenn Morris <rgm@gnu.org>
2265
2266 * s/: Remove empty directory.
2267
2268 * s/ms-w32.h: Move to ../nt/inc.
2269 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
2270 Update for new ms-w32.h location.
2271
2272 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
2273
2274 Port to Solaris 8.
2275 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
2276
2277 2012-08-02 Glenn Morris <rgm@gnu.org>
2278
2279 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
2280 hard-coding the path separator.
2281
2282 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
2283
2284 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
2285 This how ASET and AREF are supposed to work, and makes
2286 it easier to think about future improvements. See
2287 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
2288 * charset.h (set_charset_attr): New function.
2289 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
2290 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
2291 (aref_addr): New function. All uses of &AREF(...) changed.
2292 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
2293 (set_hash_index): New functions. All lvalue-style uses of
2294 HASH_KEY etc. changed.
2295 * keyboard.c (set_prop): New function. All lvalue-style uses
2296 of PROP changed.
2297
2298 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
2299
2300 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
2301 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
2302 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
2303 * nsfns.m (ns_set_name_as_filename): Likewise.
2304 * nsmenu.m (ns_update_menubar): Likewise.
2305 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
2306
2307 2012-08-01 Eli Zaretskii <eliz@gnu.org>
2308
2309 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
2310 Adapt to latest changes in field names of the corresponding Lisp
2311 objects.
2312
2313 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
2314
2315 2012-08-01 Glenn Morris <rgm@gnu.org>
2316
2317 * s/msdos.h: Remove file.
2318 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
2319 * Makefile.in (S_FILE): Remove.
2320 (config_h): Remove S_FILE.
2321
2322 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
2323
2324 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
2325 Remove; moved to nt/config.nt.
2326
2327 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
2328
2329 Use INTERNAL_FIELD for conses and overlays.
2330 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
2331 Remove obsolete comment.
2332 (MVAR): New macro.
2333 (struct Lisp_Overlay): Use INTERNAL_FIELD.
2334 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
2335
2336 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
2337
2338 Use INTERNAL_FIELD for symbols.
2339 * lisp.h (SVAR): New macro. Adjust users.
2340 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
2341 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
2342
2343 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
2344
2345 Use INTERNAL_FIELD for processes.
2346 * process.h (PVAR): New macro. Adjust style.
2347 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
2348 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
2349
2350 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
2351
2352 Use INTERNAL_FIELD for windows.
2353 * window.h (WVAR): New macro.
2354 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
2355 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
2356 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
2357 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
2358 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
2359 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
2360
2361 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
2362
2363 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
2364
2365 2012-08-01 Glenn Morris <rgm@gnu.org>
2366
2367 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
2368 Move to configure.ac.
2369
2370 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
2371
2372 * makefile.w32-in (CONFIG_H): Update dependencies.
2373 (CONF_POST_H): New macro.
2374
2375 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
2376
2377 2012-07-31 Glenn Morris <rgm@gnu.org>
2378
2379 * Makefile.in (S_FILE): No longer set by configure.
2380
2381 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
2382 is available.
2383 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
2384
2385 * process.h (NULL_DEVICE):
2386 * emacs.c (SEPCHAR):
2387 * editfns.c (USER_FULL_NAME): Let configure set them.
2388
2389 * s/README, s/template.h: Remove files.
2390
2391 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
2392
2393 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
2394 Move to configure.ac.
2395
2396 2012-07-31 Eli Zaretskii <eliz@gnu.org>
2397
2398 * .gdbinit (xframe): Adapt to introduction of FVAR and the
2399 resulting renaming of 'struct frame' members.
2400
2401 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
2402
2403 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
2404 after introduction of FVAR.
2405
2406 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
2407
2408 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
2409
2410 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
2411 instead of compositeToPoint.
2412 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
2413
2414 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
2415
2416 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
2417
2418 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
2419 * lisp.h (INTERNAL_FIELD): New macro.
2420 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
2421 (BVAR): Change to use INTERNAL_FIELD.
2422 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
2423 (KVAR): Change to use INTERNAL_FIELD.
2424 * frame.h (FVAR): New macro.
2425 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
2426 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
2427 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
2428 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
2429 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
2430
2431 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
2432
2433 Miscellaneous fixes for non-default X toolkits.
2434 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
2435 * xterm.c (x_frame_of_widget): Remove redundant prototype.
2436 Move under #ifdef USE_LUCID.
2437 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
2438 definition and usage to avoid warnings.
2439
2440 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
2441
2442 * nsterm.m (openFiles): Fix previous checkin.
2443
2444 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
2445
2446 * indent.c (compute_motion): Remove unused local.
2447
2448 2012-07-31 Glenn Morris <rgm@gnu.org>
2449
2450 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
2451
2452 * conf_post.h [USG5_4]:
2453 Move remaining contents of s/usg5-4-common.h here.
2454 * s/usg5-4-common.h: Remove file.
2455
2456 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
2457 * s/irix6-5.h: Remove file.
2458
2459 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
2460 * s/darwin.h: Remove file.
2461
2462 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
2463 * s/hpux10-20.h: Remove file, which is now empty.
2464
2465 2012-07-30 Glenn Morris <rgm@gnu.org>
2466
2467 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
2468 * Makefile.in (config_h): Add conf_post.h.
2469 * makefile.w32-in (CONFIG_H): Add conf_post.h.
2470
2471 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
2472
2473 * nsterm.m (ns_do_open_file): New variable.
2474 (ns_term_init): Set ns_do_open_file to YES after run returns.
2475 (openFile, openTempFile, openFileWithoutUI, openFiles):
2476 Open files only if ns_do_open_file.
2477
2478 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2479
2480 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
2481 This no-op macro hasn't been needed for many years.
2482 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
2483
2484 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
2485 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
2486 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
2487 gdb_make_enums_visible.
2488 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
2489 (DIRECTORY_SEP): Now a constant, not a macro.
2490
2491 2012-07-30 Eli Zaretskii <eliz@gnu.org>
2492
2493 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
2494 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
2495
2496 * w32term.c <w32_keyboard_codepage>: Renamed from
2497 keyboard_codepage and now external. All users changed.
2498
2499 * w32term.h: Add declaration of w32_keyboard_codepage.
2500
2501 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
2502 the codepage to translate keys to Unicode. If this argument is
2503 -1, use the value returned by GetConsoleCP. All callers changed.
2504
2505 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2506
2507 Update .PHONY listings in makefiles.
2508 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
2509 bootstrap-clean, distclean, maintainer-clean, versioclean,
2510 extraclean, frc.
2511
2512 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
2513 This is a bit clearer. Fix some commentary typos.
2514
2515 2012-07-30 Glenn Morris <rgm@gnu.org>
2516
2517 * s/netbsd.h: Let configure include signal.h if needed.
2518 Remove file, which is now empty.
2519
2520 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
2521 Let configure set them.
2522 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
2523 No more need to undefine.
2524
2525 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
2526
2527 * keymap.c (Fkey_description): Don't remove 0x80 bit from
2528 non-single-byte char when adding meta modifier. (Bug#12090)
2529
2530 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
2531
2532 Convert safe_call to use variable number of arguments.
2533 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
2534 (safe_call2): Fix comment.
2535 * lisp.h (safe_call): Adjust prototype.
2536 * coding.c (encode_coding_object): Change to use safe_call2.
2537 * xfaces.c (merge_face_heights): Change to use safe_call1.
2538
2539 2012-07-30 Glenn Morris <rgm@gnu.org>
2540
2541 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
2542 does that unconditionally. Remove file, which is now empty.
2543
2544 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
2545 Remove empty files.
2546
2547 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2548
2549 Export to GDB most of lisp.h's remaining object-like macros.
2550 * lisp.h (min, max): Move earlier, because they're used earlier now.
2551 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
2552 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
2553 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
2554 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
2555 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
2556 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
2557 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
2558 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
2559 Now constants, for GDB. They need not be macros.
2560 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
2561 Now constants, for GDB, as well as macros, for static initializers.
2562 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
2563 Move to after the definition of struct Lisp_Char_Table,
2564 since the former now needs that type defined.
2565 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
2566 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
2567 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
2568 New enums, for gdb_make_enums_visible.
2569 (GLYPH_MODE_LINE_FACE): Remove; unused.
2570 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
2571 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
2572 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
2573 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
2574 enum maxargs, enum MAX_ALLOCA.
2575 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
2576 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
2577 no longer needed, now that they are done in lisp.h.
2578
2579 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
2580
2581 Cleanup string bytes checking.
2582 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
2583 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
2584 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
2585 (check_sblock, compact_small_strings): Simplify.
2586
2587 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
2588
2589 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
2590 These macros are confusing and no longer need to be defined, as
2591 the enum values now suffice. All uses replaced with definiens.
2592 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
2593
2594 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
2595
2596 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
2597 ($(BLD)/w32console.$(O)): Update dependencies.
2598
2599 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
2600
2601 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
2602 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
2603 time. Adjust users.
2604 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
2605
2606 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
2607
2608 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
2609 setting sitelisp (Bug#12010).
2610
2611 2012-07-29 Eli Zaretskii <eliz@gnu.org>
2612
2613 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
2614
2615 * w32heap.c (cache_system_info):
2616 * w32.c (sys_rename):
2617 * w32proc.c (find_child_console, sys_kill): All users changed.
2618
2619 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
2620
2621 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
2622
2623 2012-07-29 Eli Zaretskii <eliz@gnu.org>
2624
2625 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
2626
2627 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
2628
2629 Cleanup statistics calculation in Fgarbage_collect.
2630 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
2631 Fix zombies percentage calculation. Simplify elapsed time calculation.
2632
2633 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
2634
2635 Generalize marker debugging code under MARKER_DEBUG and use eassert.
2636 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
2637 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
2638 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
2639 (replace_range, replace_range_2, del_range_2): Change to eassert.
2640 * marker.c (byte_char_debug_check): Adjust style.
2641
2642 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
2643
2644 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
2645 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
2646 long-ago-commented-out code that talks about "WIN32".
2647 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
2648 All uses changed.
2649
2650 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
2651
2652 Use Gnulib stdalign module (Bug#9772, Bug#9960).
2653 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
2654 Simplify by using alignof.
2655 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
2656 * lisp.h: Include <stdalign.h>.
2657 (GCALIGNMENT): New macro and constant.
2658 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
2659 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
2660 (stdalign): New macro, if not already defined.
2661
2662 2012-07-28 Eli Zaretskii <eliz@gnu.org>
2663
2664 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
2665 * w32inevt.c: Include w32inevt.h.
2666 (w32_read_console_input): New inline function, calls either
2667 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
2668 w32_console_unicode_input.
2669 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
2670 (w32_kbd_patch_key, key_event): Use the codepage returned by
2671 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
2672 (key_event): use uChar.UnicodeChar only if
2673 w32_console_unicode_input is non-zero.
2674
2675 * w32console.c: Include w32heap.h.
2676 <w32_console_unicode_input>: New global variable.
2677 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
2678 family of Windows, zero otherwise.
2679
2680 * w32inevt.h: Declare w32_console_unicode_input.
2681
2682 * xdisp.c (init_iterator): Don't reference tip_frame in a build
2683 --without-x. (Bug#11742)
2684
2685 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
2686
2687 Adjust GDB to reflect pvec_type changes (Bug#12036).
2688 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
2689 2012-07-04 changes to pseudovector representation.
2690 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
2691
2692 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
2693
2694 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
2695 bus address.
2696 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
2697
2698 2012-07-27 Eli Zaretskii <eliz@gnu.org>
2699
2700 * alloc.c (listn): Fix the order the arguments are consed onto the
2701 list.
2702
2703 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
2704 enumeration constants, as PURE and HEAP are too general, and clash
2705 with other headers and sources, such as gmalloc.c and the
2706 MS-Windows system headers. All users changed.
2707
2708 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2709
2710 Revert last save_excursion_save and save_excursion_restore changes.
2711 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
2712 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
2713
2714 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2715
2716 Fix recently-introduced typos in Windows port.
2717 Reported by Martin Rudalics <rudalics@gmx.at>.
2718 * w32.c (init_environment): Replace comma with semicolon.
2719 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
2720
2721 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
2722
2723 Improve GDB symbol export (Bug#12036).
2724 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
2725 arms of an 'if', not using conditional expressions; otherwise GDB
2726 complains about the types in the unevaluated arm when the argument
2727 is an integer literal.
2728 (xgetint): Simplify expression.
2729 * alloc.c (gdb_make_enums_visible): New constant. This ports to
2730 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
2731 Zaretskii in <http://bugs.gnu.org/12036#13>.
2732 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
2733 needed now that we have gdb_make_enums_visible.
2734 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
2735 (enum enum_USE_LSB_TAG):
2736 New enum types, packaging up enums that need to be exported to GDB.
2737
2738 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2739
2740 Utility function to make a list from specified amount of objects.
2741 * lisp.h (enum constype): New datatype.
2742 (listn): New prototype.
2743 * alloc.c (listn): New function.
2744 (Fmemory_use_count, syms_of_alloc): Use it.
2745 * buffer.c (syms_of_buffer): Likewise.
2746 * callint.c (syms_of_callint): Likewise.
2747 * charset.c (define_charset_internal): Likewise.
2748 * coding.c (syms_of_coding): Likewise.
2749 * keymap.c (syms_of_keymap): Likewise.
2750 * search.c (syms_of_search): Likewise.
2751 * syntax.c (syms_of_syntax): Likewise.
2752 * w32.c (init_environment): Likewise.
2753 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
2754 * xdisp.c (syms_of_xdisp): Likewise.
2755 * xfns.c (syms_of_xfns): Likewise.
2756
2757 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2758
2759 Fast save_excursion_save and save_excursion_restore.
2760 * lisp.h (struct Lisp_Excursion): New data type.
2761 (PVEC_EXCURSION): New pseudovector type.
2762 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
2763 to deal with it. Adjust comments.
2764 (init_marker, attach_marker): New prototype.
2765 (unchain_marker): Adjust prototype.
2766 * marker.c (attach_marker): Change to global.
2767 (init_marker): New function.
2768 * alloc.c (Fmake_marker, build_marker): Use it.
2769 (build_marker): More easserts.
2770 (mark_object): Handle struct Lisp_Excursion.
2771 * editfns.c (save_excursion_save, save_excursion_restore):
2772 Reimplement to use struct Lisp_Excursion. Add comments.
2773
2774 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
2775
2776 Fix export of symbols to GDB (Bug#12036).
2777 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
2778 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
2779 emacs.c, as this is a more-suitable home. Had this been done earlier
2780 the fix for 12036 would have avoided some of the problems noted in
2781 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
2782 would have been more obvious.
2783 * emacs.c: Do not include <verify.h>; no longer needed.
2784 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
2785 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
2786 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
2787 Remove; now done in lisp.h.
2788 * lisp.h (PUBLISH_TO_GDB): New macro.
2789 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
2790 (DATA_SEG_BITS): Use it.
2791 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
2792 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
2793 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
2794 not be usable in #if. This simplifies things.
2795
2796 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
2797
2798 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
2799
2800 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
2801
2802 Simplify export of symbols to GDB (Bug#12036).
2803 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
2804 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
2805 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
2806 Adjust to changes in lisp.h and emacs.c, by using
2807 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
2808 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
2809 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
2810 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
2811 instead of gdb_valbits.
2812 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
2813 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
2814 instead of gdb_array_mark_flag.
2815 (xboolvector): Get size from $->size, not $->header.size.
2816 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
2817 (xreload, hook-run, hookpost-run): Remove.
2818 * emacs.c: Include <verify.h>.
2819 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
2820 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
2821 Remove.
2822 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
2823 (gdb_USE_LSB_TAG): New enum constants.
2824 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
2825 Also define these as enum constants, so they're visible to GDB.
2826 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
2827 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
2828 as constants, so they're visible to GDB.
2829 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
2830 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
2831 Now enum constants, not macros, so they're visible to GDB.
2832 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
2833 more convenient now. All uses changed.
2834 (VALMASK) [USE_LSB_TAG]: Also define in this case.
2835 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
2836
2837 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
2838
2839 Explicitly free restriction data that are not needed anymore.
2840 * editfns.c (save_restriction_restore): Free restriction data.
2841
2842 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2843
2844 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
2845 add argument, tune behavior, and adjust all callers.
2846
2847 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
2848
2849 Use typedef for EMACS_INT, EMACS_UINT.
2850 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
2851 than macros. This simplifies debugging in the usual case, since
2852 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
2853 and it allows expressions involving EMACS_INT casts.
2854 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
2855
2856 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
2857
2858 * nsterm.m (ns_read_socket): Return early if there is a modal
2859 window (Bug#12043).
2860
2861 2012-07-25 Martin Rudalics <rudalics@gmx.at>
2862
2863 * frame.c (Fredirect_frame_focus): In doc-string don't mention
2864 that FOCUS-FRAME can be omitted.
2865
2866 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
2867
2868 Adjust buffer text indirection counters at the end of Fkill_buffer.
2869 * buffer.c (Fkill_buffer): Adjust indirection counters when the
2870 buffer is definitely dead. This should really fix an issue reported
2871 by Christoph Scholtes again. (Bug#12007).
2872 (init_buffer_once): Initialize indirection counters of
2873 buffer_defaults and buffer_local_symbols (for sanity and safety).
2874
2875 2012-07-24 Eli Zaretskii <eliz@gnu.org>
2876
2877 * xdisp.c (init_iterator): Don't compute dimensions of truncation
2878 and continuation glyphs on tooltip frames, leave them at zero.
2879 Avoids continued lines in tooltips. (Bug#11832)
2880
2881 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
2882
2883 Simplify copy_overlay.
2884 * buffer.c (copy_overlay): Simplify. Use build_marker.
2885 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
2886
2887 2012-07-23 Eli Zaretskii <eliz@gnu.org>
2888
2889 * print.c (print_object): Don't crash when a frame's name is nil
2890 or invalid. (Bug#12025)
2891
2892 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
2893 it signals an error when a tooltip frame is being created.
2894
2895 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
2896
2897 Cleanup miscellaneous objects allocation and initialization.
2898 * alloc.c (allocate_misc): Change to static. Add argument to
2899 specify the subtype. Adjust comment and users.
2900 (build_overlay): New function.
2901 * buffer.c (copy_overlays, Fmake_overlay): Use it.
2902 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
2903 (allocate_misc): Remove prototype.
2904 (build_overlay): Add prototype.
2905
2906 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
2907
2908 Swap buffer text indirection counters in Fbuffer_swap_text.
2909 * buffer.c (Fbuffer_swap_text): Swap indirections too.
2910 This avoids crash reported by Christoph Scholtes at
2911 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
2912
2913 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
2914
2915 * nsmenu.m (Popdown_data): New struct.
2916 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
2917 free Popdown_data.
2918 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
2919 (initWithContentRect): Make imgView and contentView non-static
2920 and autorelease them. Also autorelease img and matrix (Bug#12005).
2921 (dealloc): Remove (Bug#12005).
2922
2923 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
2924
2925 Adjust consing_since_gc when objects are explicitly freed.
2926 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
2927 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
2928 (free_cons, free_misc): Subtract object size from consing_since_gc.
2929
2930 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
2931
2932 Simplify and cleanup markers positioning code.
2933 * marker.c (attach_marker): More useful eassert.
2934 (live_buffer, set_marker_internal): New function.
2935 (Fset_marker, set_marker_restricted): Use set_marker_internal.
2936 (set_marker_both, set_marker_restricted_both): Use live_buffer.
2937
2938 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
2939
2940 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
2941 as it's limited by the amount of memory, not by INT_MAX.
2942
2943 2012-07-21 Eli Zaretskii <eliz@gnu.org>
2944
2945 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
2946 in special-event-map. See the discussion at
2947 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
2948 for the reasons.
2949
2950 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
2951 info.dwItemData. Fixes crashes on 64-bit Windows.
2952 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2953
2954 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
2955
2956 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
2957 (conversationIdentifier): Return value is NSInteger.
2958 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
2959
2960 2012-07-21 Chong Yidong <cyd@gnu.org>
2961
2962 * window.c (decode_any_window): Signal an error if the window is
2963 on a dead frame (Bug#11984).
2964
2965 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2966
2967 Add indirection counting to speed up Fkill_buffer.
2968 * buffer.h (struct buffer): New member.
2969 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
2970 (Fmake_indirect_buffer): Set indirection counter to -1, increment
2971 base buffer indirection counter.
2972 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
2973 (Fkill_buffer): Adjust indirection counters as needed, don't walk
2974 through buffer list if indirection counter is 0.
2975
2976 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2977
2978 Extend the value returned by Fgarbage_collect with heap statistics.
2979 * alloc.c (Qheap): New symbol.
2980 (syms_of_alloc): DEFSYM it.
2981 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
2982 (Fmemory_free): Remove.
2983 (syms_of_alloc): Don't defsubr it.
2984 * buffer.c (Fcompact_buffer): Remove.
2985 (syms_of_buffer): Don't defsubr it.
2986
2987 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2988
2989 Make maybe_gc inline.
2990 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
2991 * lisp.h (consing_since_gc, gc_relative_threshold)
2992 (memory_full_cons_threshold): Revert declaration.
2993 (maybe_gc): Remove prototype, define as inline.
2994 * alloc.c: Remove old commented-out code.
2995 (consing_since_gc, gc_relative_threshold)
2996 (memory_full_cons_threshold): Revert to global.
2997 (maybe_gc): Remove.
2998
2999 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3000
3001 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
3002 * lisp.h (build_unibyte_string): New function.
3003 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
3004 * sysdep.c, w32fns.c, xfns.c: Use it.
3005 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
3006 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
3007 Adjust users accordingly.
3008 * font.h (font_open_by_name): Adjust prototype.
3009
3010 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3011
3012 Cleanup calls to Fgarbage_collect.
3013 * lisp.h (maybe_gc): New prototype.
3014 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
3015 Remove declarations.
3016 * alloc.c (maybe_gc): New function.
3017 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
3018 Make them static.
3019 * bytecode.c (MAYBE_GC): Use maybe_gc.
3020 * eval.c (eval_sub, Ffuncall): Likewise.
3021 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
3022 to avoid dependency from auto-save feature.
3023
3024 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
3025
3026 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
3027 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
3028 'for_each_per_buffer_object_at'.
3029 All uses changed. It's better to use upper-case for macros that
3030 cannot be implemented as functions, to give the reader a clue
3031 that they're special.
3032
3033 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3034
3035 * alloc.c (Fgarbage_collect): Tweak docstring.
3036
3037 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3038
3039 Tweak the value returned from Fgarbage_collect again.
3040 * alloc.c (Fgarbage_collect): New return value, as confirmed in
3041 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
3042 Adjust documentation.
3043 (total_vector_bytes): Rename to total_vector_slots, adjust
3044 accounting.
3045 (total_free_vector_bytes): Rename to total_free_vector_slots,
3046 adjust accounting.
3047 (Qstring_bytes, Qvector_slots): New symbols.
3048 (syms_of_alloc): DEFSYM them.
3049
3050 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3051
3052 Buffer compaction primitive which may be used from Lisp.
3053 * buffer.c (compact_buffer, Fcompact_buffer): New function.
3054 (syms_of_buffer): Register Fcompact_buffer.
3055 * alloc.c (Fgarbage_collect): Use compact_buffer.
3056 * buffer.h (compact_buffer): New prototype.
3057 (struct buffer_text): New member.
3058
3059 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3060
3061 New macro to iterate over all buffers, miscellaneous cleanups.
3062 * lisp.h (all_buffers): Remove declaration.
3063 * buffer.h (all_buffers): Add declaration, with comment.
3064 (for_each_buffer): New macro.
3065 * alloc.c (Fgarbage_collect, mark_object): Use it.
3066 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
3067 (init_buffer): Likewise.
3068 * data.c (Fset_default): Likewise.
3069 * coding.c (code_conversion_restore): Remove redundant check
3070 for dead buffer.
3071 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
3072
3073 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
3074
3075 Fix bug that created negative-length intervals.
3076 * intervals.c (merge_interval_right, merge_interval_left):
3077 Do not zero out this interval if it is absorbed by its children,
3078 as this interval's total length doesn't change in that case. See
3079 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
3080
3081 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
3082
3083 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
3084 when invoking (make-bool-vector N t) and N is a positive
3085 multiple of 8 -- the last 8 bits were mistakenly cleared.
3086
3087 Remove some struct layout assumptions in bool vectors.
3088 * alloc.c (bool_header_size): New constant.
3089 (header_size, word_size): Move earlier, as they're now used earlier.
3090 Use 'word_size' in a few more places, where it's appropriate.
3091 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
3092 padding before the data member of a bool vector.
3093 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
3094 than doing the check by hand with an abort ().
3095
3096 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
3097
3098 * eval.c (Fdefvar): Don't check constants since we only set the var if
3099 it's not yet defined anyway (bug#11904).
3100
3101 * lisp.h (last_undo_boundary): Declare new var.
3102 * keyboard.c (command_loop_1): Set it.
3103 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
3104 were auto-added by the command loop (bug#11774).
3105
3106 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
3107
3108 * w32font.c (Qsymbol): Remove local definition.
3109 (syms_of_w32font): Don't DEFSYM it.
3110
3111 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
3112
3113 Fix sweep_vectors to handle large bool vectors correctly.
3114 * alloc.c (sweep_vectors): Account total_vector_bytes for
3115 bool vectors larger than VBLOCK_BYTES_MAX.
3116
3117 2012-07-18 Chong Yidong <cyd@gnu.org>
3118
3119 * frame.c (x_set_frame_parameters): Revert bogus change introduced
3120 in 2012-05-25 commit by Paul Eggert (Bug#11738).
3121
3122 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
3123
3124 Return more descriptive data from Fgarbage_collect.
3125 Suggested by Stefan Monnier in
3126 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
3127 * alloc.c (bounded_number): New function.
3128 (total_buffers, total_vectors): New variable.
3129 (total_string_size): Rename to total_string_bytes, adjust users.
3130 (total_vector_size): Rename to total_vector_bytes, adjust users.
3131 (sweep_vectors): Account total_vectors and total_vector_bytes.
3132 (Fgarbage_collect): New return value. Adjust documentation.
3133 (gc_sweep): Account total_buffers.
3134 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
3135 (VECTOR_SIZE): Remove.
3136 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
3137 (Qinterval, Qmisc): New symbols.
3138 (syms_of_data): Initialize them.
3139 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
3140 (Qcons, Qbuffer): New declarations.
3141
3142 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
3143
3144 * alloc.c (Fmemory_free): Account for memory-free's own storage.
3145 Round up, not down. Improve doc.
3146
3147 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
3148
3149 Restore old code in allocate_string_data to avoid Faset breakage.
3150 Reported by Julien Danjou <julien@danjou.info> in
3151 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
3152 * alloc.c (allocate_string_data): Restore old code with minor
3153 adjustments, fix comment to explain this subtle issue.
3154
3155 2012-07-17 Eli Zaretskii <eliz@gnu.org>
3156
3157 Remove FILE_SYSTEM_CASE.
3158 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
3159
3160 * fileio.c (FILE_SYSTEM_CASE): Don't define.
3161 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
3162 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
3163 call-process-region passes it through expand-file-name.
3164
3165 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
3166
3167 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
3168
3169 Fix crash when creating indirect buffer (Bug#11917)
3170 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
3171 Don't handle unbound variables specially if non-zero.
3172 (Fbuffer_local_variables): Pass zero.
3173 (clone_per_buffer_values): Pass non-zero.
3174
3175 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
3176
3177 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
3178 to make the loop interruptible.
3179
3180 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
3181
3182 * gnutls.c (emacs_gnutls_handshake): Only retry if
3183 GNUTLS_E_INTERRUPTED.
3184
3185 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
3186
3187 Cleanup and convert miscellaneous checks to eassert.
3188 * alloc.c (mark_interval): Fix comment, partially rephrase
3189 old comment from intervals.h (see below).
3190 * intervals.c (find_interval, adjust_intervals_for_insertion)
3191 (delete_interval, adjust_intervals_for_deletion)
3192 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
3193 Convert to eassert.
3194 (adjust_intervals_for_insertion, make_new_interval):
3195 Remove obsolete and unused code.
3196 * intervals.h (struct interval): Remove obsolete comment.
3197 * textprotp.c (erase_properties): Remove unused code.
3198 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
3199 (Fremove_list_of_text_properties): Convert to eassert.
3200
3201 2012-07-17 Chong Yidong <cyd@gnu.org>
3202
3203 * editfns.c (Finsert_char): Doc fix.
3204
3205 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
3206
3207 Fix previous change to make Fmemory_free always accurate.
3208 * alloc.c (make_interval): Update total_free_intervals.
3209 (make_float): Likewise for total_free_floats.
3210 (free_cons, Fcons): Likewise for total_free_conses.
3211 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
3212 Likewise for total_free_vector_bytes.
3213 (Fmake_symbol): Likewise for total_free_symbols.
3214 (bytes_free): Remove.
3215
3216 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
3217
3218 Simple free memory accounting feature.
3219 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
3220 (sweep_vectors): Accumulate size of free vectors.
3221 (Fgarbage_collect): Setup bytes_free.
3222 (Fmemory_free): New function.
3223 (syms_of_alloc): Register it.
3224
3225 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
3226
3227 Cleanup overlays checking.
3228 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
3229 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
3230 eassert and OVERLAYP.
3231 (sort_overlays): Change to use OVERLAYP.
3232
3233 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
3234
3235 * editfns.c (Finsert_char): Make it interactive, and make the
3236 second arg optional. Copy interactive spec and docstring from
3237 ucs-insert.
3238
3239 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
3240
3241 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
3242 Unlike the other wrapped functions, fabs has an unspecified
3243 effect on errno.
3244
3245 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
3246
3247 * nsterm.m (keyDown): Interpret flags without left/right bits
3248 as the left key (Bug#11670).
3249
3250 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
3251
3252 Remove empty and useless init functions.
3253 * lisp.h (init_character_once, init_fns, init_image)
3254 (init_filelock, init_sound): Remove prototype.
3255 * character.c (init_character_once): Remove.
3256 * filelock.c (init_filelock): Likewise.
3257 * fns.c (init_fns): Likewise.
3258 * image.c (init_image): Likewise.
3259 * sound.c (init_sound): Likewise.
3260 * emacs.c (main): Adjust accordingly.
3261
3262 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
3263
3264 * gtkutil.h: Tiny cleanups.
3265 (use_old_gtk_file_dialog): Remove useless declaration.
3266 (xg_uses_old_file_dialog): Add suggested const attribute.
3267
3268 2012-07-15 Eli Zaretskii <eliz@gnu.org>
3269
3270 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
3271 (bidi_paragraph_init): Use it to limit search forward for a strong
3272 directional character in abnormally large paragraphs full of
3273 neutral or weak characters. (Bug#11943)
3274
3275 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
3276
3277 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
3278 the toolbar (Bug#9451).
3279 (xg_make_tool_item): Give the widget event box a transparent
3280 background.
3281
3282 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
3283
3284 Cleanup basic allocation variables and functions.
3285 * alloc.c (ignore_warnings, init_intervals, init_float)
3286 (init_cons, init_symbol, init_marker): Remove.
3287 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
3288 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
3289 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
3290 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
3291 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
3292 (staticidx, init_alloc_once, init_strings, free_ablock):
3293 Remove redundant initialization.
3294 * fns.c (init_weak_hash_tables): Remove.
3295 * lisp.h (init_weak_hash_tables): Remove prototype.
3296
3297 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
3298
3299 Use zero_vector where appropriate.
3300 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
3301 accordingly.
3302 * lisp.h (zero_vector): New declaration.
3303 * font.c (null_vector): Remove.
3304 (syms_of_font): Remove initialization and staticpro.
3305 (font_list_entities, font_find_for_lface): Change to use zero_vector.
3306 * keymap.c (Faccessible_keymaps): Likewise.
3307
3308 2012-07-15 Leo Liu <sdl.web@gmail.com>
3309
3310 * fringe.c: Fix typo in comments.
3311
3312 2012-07-14 Leo Liu <sdl.web@gmail.com>
3313
3314 * fringe.c: Add a new bitmap exclamation-mark.
3315
3316 2012-07-14 Eli Zaretskii <eliz@gnu.org>
3317
3318 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
3319
3320 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
3321 (HAVE_MENUS): Don't define, defined by editing config.in with
3322 msdos/sed2v2.inp.
3323 (GMALLOC_INHIBIT_VALLOC): Don't define.
3324 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
3325
3326 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
3327
3328 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
3329
3330 2012-07-14 Glenn Morris <rgm@gnu.org>
3331
3332 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
3333 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
3334 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
3335
3336 2012-07-13 Glenn Morris <rgm@gnu.org>
3337
3338 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
3339
3340 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
3341 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
3342
3343 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
3344
3345 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
3346 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
3347 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
3348 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
3349 where appropriate.
3350 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
3351 as boolean expression.
3352 (x_set_window_size): Remove unused variable toolbar.
3353 (ns_get_color_default, ns_mod_to_lisp): Remove.
3354 (ns_mouse_position): Remove unused variables xchar and ychar.
3355 (ns_compute_glyph_string_overhangs): Remove unused variable face.
3356 (ns_set_vertical_scroll_bar): Remove unused variable count.
3357 (ns_delete_terminal): Remove unused variable i.
3358 (ns_term_init): Remove unused variables r, g and b.
3359 (mouseDown): Remove unused variable window.
3360 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
3361 (initFrameFromEmacs): Remove unused variable vbextra.
3362 (mouseEntered): Remove unused variables p and dpyinfo.
3363 (mouseExited): Remove unused variables p and r.
3364 (ns_define_frame_cursor, ns_clear_frame_area)
3365 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
3366 (menuDown): Assign [sender tag] to variable and cast the variable.
3367
3368 * nsterm.h (menuDown): Add id as type to argument sender.
3369 (ns_display_info_for_name): Add Lisp_Object argument.
3370 (ns_term_init): Add Lisp_Object argument.
3371 (ns_map_event_to_object): Add void argument.
3372 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
3373 prototype with arguments and only declare if __OBJC__.
3374 (nxatoms_of_nsselect): Add void argument.
3375 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
3376 (ns_alloc_autorelease_pool): Add void argument.
3377 (ns_release_autorelease_pool): Add void* argument.
3378 (ns_get_defaults_value): Add const char* argument.
3379
3380 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
3381 (initFromContents): Use SSDATA where appropriate.
3382 (ns_update_menubar): Add braces to ambigous if-else.
3383 (initWithTitle): Put () around assignment in if statement.
3384 (ns_menu_show): Remove unused variables window and keymap.
3385 (update_frame_tool_bar): Remove unused variable selected_p.
3386 (initWithContentRect): Remove unused variable this_cmd_name.
3387
3388 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
3389 appropriate.
3390 (setXBMColor): Remove unused variable len.
3391 (setPixmapData): Put () around assignment in loop statement.
3392
3393 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
3394 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
3395 where appropriate.
3396 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
3397 around assignment in loop statement.
3398 (nsfont_open): Remove unused variable i.
3399 (nsfont_open): Remove unused variable len.
3400 (nsfont_draw): Remove unused variable cs.
3401
3402 * nsfns.m (x_set_icon_name, ns_set_name_internal)
3403 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
3404 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
3405 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
3406 (Fns_font_name, Fns_perform_service)
3407 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
3408 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
3409 (ns_set_name): Remove unused variable view.
3410 (x_set_menu_bar_lines): Remove unused variable olines.
3411 (x_set_tool_bar_lines): Remove unused variable root_window.
3412 (Fns_list_colors): Put () around assignment in while statement.
3413 (Fns_perform_service): Remove unused variable len.
3414 (Fns_display_usable_bounds): Remove unused variable top.
3415 (syms_of_nsfns): Remove unused variable i.
3416
3417 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
3418 memcpy (Bug#11907).
3419
3420 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
3421
3422 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
3423 and free it with DestroyExceptionInfo (Bug#11558).
3424
3425 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
3426
3427 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
3428 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
3429 Set here, not in nt/config.nt.
3430
3431 2012-07-13 Eli Zaretskii <eliz@gnu.org>
3432
3433 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
3434 cursor overflow into the last glyph on display line when the right
3435 fringe is off. (Bug#11832)
3436
3437 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
3438
3439 * xdisp.c (produce_special_glyphs): Now static.
3440 * dispextern.h (produce_special_glyphs): Remove decl.
3441
3442 2012-07-13 Glenn Morris <rgm@gnu.org>
3443
3444 * s/bsd-common.h, s/cygwin.h: Remove empty files.
3445 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
3446
3447 * s/usg5-4-common.h (USG, USG5):
3448 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
3449 * s/sol2-6.h (SOLARIS2):
3450 * s/irix6-5.h (IRIX6_5):
3451 * s/hpux10-20.h (USG, USG5, HPUX):
3452 * s/gnu-linux.h (USG, GNU_LINUX):
3453 * s/freebsd.h (BSD_SYSTEM):
3454 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
3455 * s/cygwin.h (CYGWIN):
3456 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
3457 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
3458
3459 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
3460
3461 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
3462
3463 2012-07-13 Glenn Morris <rgm@gnu.org>
3464
3465 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
3466
3467 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
3468
3469 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
3470 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
3471
3472 2012-07-12 Glenn Morris <rgm@gnu.org>
3473
3474 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
3475
3476 * process.c (init_process_emacs): Rename from init_process.
3477 The old name is also the name of a Mach system call.
3478 * lisp.h, emacs.c: Update for this name change.
3479 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
3480 longer needed.
3481
3482 2012-07-12 Eli Zaretskii <eliz@gnu.org>
3483
3484 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
3485 memmove call that removes glyphs covered by the left truncation
3486 glyph. Improve commentary.
3487 (display_line): Fix display of continuation glyphs on GUI frames
3488 when the right fringe is turned off and variable-size fonts are
3489 used in the window. Move the code that appends a stretch glyph to
3490 produce_special_glyphs, so that it could be used for truncation
3491 and continuation glyphs alike.
3492 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
3493 glyph of a suitably computed width, to align the special glyphs at
3494 the window margin. Code moved from display_line. (Bug#11832)
3495
3496 2012-07-12 Glenn Morris <rgm@gnu.org>
3497
3498 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
3499
3500 * s/gnu-linux.h, s/hpux10-20.h:
3501 Do not unconditionally define HAVE_XRMSETDATABASE.
3502
3503 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
3504
3505 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
3506
3507 Fix typos that broke OS X build.
3508 Reported by Randal L. Schwartz in
3509 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
3510 * nsterm.m (ns_timeout): Add missing local decl.
3511 (ns_get_color): snprintf -> sprintf, to fix typo.
3512
3513 2012-07-12 Glenn Morris <rgm@gnu.org>
3514
3515 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
3516 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
3517 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
3518 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
3519
3520 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
3521 Move PTY_OPEN to configure.
3522
3523 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
3524 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
3525 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
3526
3527 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
3528
3529 Use empty_unibyte_string where applicable.
3530 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
3531 * lread.c (read1): Likewise.
3532 * xsettings.c (syms_of_xsettings): Likewise.
3533
3534 2012-07-12 Glenn Morris <rgm@gnu.org>
3535
3536 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
3537 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
3538 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
3539 * s/hpux10-20.h (RUN_TIME_REMAP):
3540 * s/bsd-common.h (TABDLY): Move to configure.
3541
3542 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
3543
3544 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
3545
3546 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
3547 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
3548
3549 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
3550
3551 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
3552 * s/template.h: Move NARROWPROTO to configure.
3553
3554 2012-07-11 Glenn Morris <rgm@gnu.org>
3555
3556 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
3557 unused since 2011-01-17 change to systty.h.
3558
3559 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
3560 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
3561 Move HAVE_PTYS and HAVE_SOCKETS to configure.
3562
3563 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
3564
3565 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
3566
3567 2012-07-11 Glenn Morris <rgm@gnu.org>
3568
3569 * s/darwin.h, s/gnu-linux.h, s/template.h:
3570 Move INTERRUPT_INPUT to configure.
3571
3572 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
3573
3574 Minor adjustments to interning code.
3575 * lisp.h (intern, intern_c_string): Redefine as static inline
3576 wrappers for intern_1 and intern_c_string_1, respectively.
3577 (intern_1, intern_c_string_1): Rename prototypes.
3578 * lread.c (intern_1, intern_c_string_1, oblookup):
3579 Simplify Vobarray checking.
3580 * font.c (font_intern_prop): Likewise. Adjust comment.
3581 * w32font.c (intern_font_name): Likewise.
3582
3583 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
3584
3585 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
3586
3587 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
3588 of Fcar/Fcdr if possible.
3589 * font.c (check_otf_features): Likewise.
3590 * fontset.c (Fnew_fontset): Likewise.
3591 * gnutls.c (Fgnutls_boot): Likewise.
3592 * minibuf.c (read_minibuf): Likewise.
3593 * msdos.c (IT_set_frame_parameters): Likewise.
3594 * xmenu.c (Fx_popup_dialog): Likewise.
3595 * w32menu.c (Fx_popup_dialog): Likewise.
3596
3597 2012-07-11 Glenn Morris <rgm@gnu.org>
3598
3599 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
3600 since nothing has defined it on these platforms.
3601
3602 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
3603 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
3604
3605 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
3606 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
3607 Move CLASH_DETECTION to configure.
3608
3609 * s/gnu.h: Remove file, which is now empty.
3610
3611 * s/gnu.h, s/gnu-linux.h:
3612 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
3613
3614 2012-07-11 John Wiegley <johnw@newartisans.com>
3615
3616 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
3617 function attribute, so we only use it if it exists in the
3618 compiler.
3619
3620 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
3621
3622 Avoid call to strlen in fast_c_string_match_ignore_case.
3623 * search.c (fast_c_string_match_ignore_case): Change to use
3624 length argument. Adjust users accordingly.
3625 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
3626
3627 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
3628
3629 Assume mkdir, rmdir.
3630 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
3631 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
3632
3633 Assume rename.
3634 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
3635
3636 Assume perror.
3637 * s/hpux10-20.h (HAVE_PERROR): Remove.
3638 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
3639 Remove dummy definition, as this problem was obsolete long ago.
3640
3641 Assume strerror.
3642 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
3643
3644 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
3645
3646 Avoid calls to strlen in font processing functions.
3647 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
3648 (font_open_by_name): Change to use length argument.
3649 Adjust users accordingly.
3650 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
3651 Adjust prototypes.
3652 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
3653 Change to return ptrdiff_t.
3654 (xfont_list_pattern, xfont_match): Use length returned by
3655 xfont_decode_coding_xlfd.
3656 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
3657
3658 2012-07-11 Glenn Morris <rgm@gnu.org>
3659
3660 * s/darwin.h, s/freebsd.h, s/netbsd.h:
3661 Move DONT_REOPEN_PTY to configure.
3662
3663 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
3664 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
3665
3666 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
3667
3668 Remove "#define unix" that is no longer needed (Bug#11905).
3669 * s/aix4-2.h (unix): Remove; no longer needed.
3670
3671 EMACS_TIME simplification (Bug#11875).
3672 This replaces macros (which typically do not work in GDB)
3673 with functions, typedefs and enums, making the code easier to debug.
3674 The functional style also makes code easier to read and maintain.
3675 * systime.h: Include <sys/time.h> on all hosts, not just if
3676 WINDOWSNT, since 'struct timeval' is needed in general.
3677 (EMACS_TIME): Now a typedef, not a macro.
3678 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
3679 not macros.
3680 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
3681 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
3682 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
3683 (EMACS_TIME_LE): Now functions, not macros.
3684 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
3685 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
3686 which are not functions. All uses rewritten to use:
3687 (make_emacs_time): New function.
3688 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
3689 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
3690 not functions. All uses rewritten to use the following, respectively:
3691 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
3692 (add_emacs_time, sub_emacs_time): New functions.
3693 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
3694 * fileio.c (Fcopy_file):
3695 * xterm.c (XTflash): Get the current time closer to when it's used.
3696 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
3697
3698 * bytecode.c (targets): Suppress -Woverride-init warnings.
3699
3700 Simplify by avoiding confusing use of strncpy etc.
3701 * doc.c (Fsnarf_documentation):
3702 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
3703 * frame.c (Fmake_terminal_frame):
3704 * gtkutil.c (get_utf8_string):
3705 * lread.c (openp):
3706 * nsmenu.m (ns_update_menubar):
3707 * regex.c (regerror):
3708 Prefer memcpy to strncpy and strncat when either will do.
3709 * fileio.c (Fsubstitute_in_file_name):
3710 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
3711 (menu_separator_name_p):
3712 * nsmenu.m (ns_update_menubar):
3713 Prefer memcmp to strncmp when either will do.
3714 * nsterm.m: Include <ftoastr.h>.
3715 (ns_get_color):
3716 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
3717 Prefer snprintf to strncpy.
3718 * nsterm.m (ns_term_init):
3719 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
3720 * nsterm.m (ns_term_init):
3721 Avoid the need for strncpy, by using build_string or
3722 make_unibyte_string directly. Use dtoastr, not snprintf.
3723 * process.c (Fmake_network_process): Diagnose service names that
3724 are too long, rather than silently truncating them or creating
3725 non-null-terminated names.
3726 (Fnetwork_interface_info): Likewise, for interface names.
3727 * sysdep.c (system_process_attributes) [GNU_LINUX]:
3728 Prefer sprintf to strncat.
3729 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
3730 Prefer vsnprintf to vsprintf + strncpy.
3731
3732 2012-07-10 Glenn Morris <rgm@gnu.org>
3733
3734 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
3735 Clarify fallback case.
3736
3737 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3738
3739 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
3740 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
3741 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
3742 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
3743 where argument type is known to be a Lisp_Cons.
3744
3745 2012-07-10 Tom Tromey <tromey@redhat.com>
3746
3747 * bytecode.c (BYTE_CODE_THREADED): New macro.
3748 (BYTE_CODES): New macro. Replaces all old byte-code defines.
3749 (enum byte_code_op): New type.
3750 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
3751 (exec_byte_code): Use them. Use token threading when applicable.
3752
3753 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3754
3755 Optimize pure C strings initialization.
3756 * lisp.h (make_pure_string): Fix prototype.
3757 (build_pure_c_string): New function, defined as static inline. This
3758 provides a better opportunity to optimize away calls to strlen when
3759 the function is called with compile-time constant argument.
3760 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
3761 argument, adjust users accordingly. Use build_pure_c_string where
3762 appropriate.
3763 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
3764 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
3765 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
3766
3767 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3768
3769 Avoid calls to strlen in miscellaneous functions.
3770 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
3771 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
3772 * lread.c (openp): Likewise.
3773
3774 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3775
3776 Avoid calls to strlen in path processing functions.
3777 * fileio.c (file_name_as_directory): Add comment. Change to add
3778 srclen argument and return the length of result. Adjust users
3779 accordingly.
3780 (directory_file_name): Fix comment. Change to add srclen argument,
3781 swap 1st and 2nd arguments to obey the common convention.
3782 Adjust users accordingly.
3783 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
3784
3785 2012-07-10 Glenn Morris <rgm@gnu.org>
3786
3787 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
3788 Move PENDING_OUTPUT_COUNT definition to configure.
3789
3790 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
3791 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
3792 * s/gnu.h (DATA_START): Move definitions to configure.
3793
3794 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
3795 We include usg5-4-common.h, which defines them both.
3796
3797 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
3798 O_RDONLY already includes it).
3799
3800 Stop ns builds setting the EMACSLOADPATH environment variable.
3801 * nsterm.m (ns_load_path): Rename from ns_init_paths.
3802 Now it does not set EMACSLOADPATH, just returns the load-path string.
3803 * nsterm.h: Update accordingly.
3804 * lread.c [HAVE_NS]: Include nsterm.h.
3805 (init_lread) [HAVE_NS]: Use ns_load_path.
3806 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
3807
3808 2012-07-09 Glenn Morris <rgm@gnu.org>
3809
3810 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
3811 since the included bsd-common.h does so.
3812
3813 Stop ns builds setting the EMACSPATH environment variable.
3814 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
3815 (ns_init_paths): Do not set EMACSPATH.
3816 * nsterm.h (ns_exec_path): Add it.
3817 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
3818 Use ns_exec_path.
3819
3820 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
3821
3822 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
3823
3824 * process.c (wait_reading_process_output): 'waitchannels' was unset
3825 when read_kbd || !NILP (wait_for_cell); fix this.
3826
3827 Add GCC-style 'const' attribute to functions that can use it.
3828 * character.h (char_resolve_modifier_mask):
3829 * keyboard.h (make_ctrl_char):
3830 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
3831 (init_character_once, next_almost_prime, init_fns, init_image)
3832 (flush_pending_output, init_sound):
3833 * mem-limits.h (start_of_data):
3834 * menu.h (finish_menu_items):
3835 Add ATTRIBUTE_CONST.
3836 * emacs.c (DEFINE_DUMMY_FUNCTION):
3837 Declare the dummy function with ATTRIBUTE_CONST.
3838 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
3839 Add decls with ATTRIBUTE_CONST.
3840
3841 Minor improvements to make_formatted_string.
3842 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
3843 where int is good enough, as vsprintf returns an int.
3844 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
3845
3846 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
3847
3848 Use make_formatted_string to avoid double length calculation.
3849 * lisp.h (make_formatted_string): New prototype.
3850 * alloc.c (make_formatted_string): New function.
3851 * buffer.c (Fgenerate_new_buffer_name): Use it.
3852 * dbus.c (syms_of_dbusbind): Likewise.
3853 * editfns.c (Fcurrent_time_zone): Likewise.
3854 * filelock.c (get_boot_time): Likewise.
3855 * frame.c (make_terminal_frame, set_term_frame_name)
3856 (x_report_frame_params): Likewise.
3857 * image.c (gs_load): Likewise.
3858 * minibuf.c (get_minibuffer): Likewise.
3859 * msdos.c (dos_set_window_size): Likewise.
3860 * process.c (make_process): Likewise.
3861 * xdisp.c (ensure_echo_area_buffers): Likewise.
3862 * xsettings.c (apply_xft_settings): Likewise.
3863
3864 2012-07-09 Glenn Morris <rgm@gnu.org>
3865
3866 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
3867 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
3868 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
3869 * nsterm.h (ns_etc_directory): Add it.
3870 * callproc.c [HAVE_NS]: Include nsterm.h.
3871 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
3872
3873 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
3874
3875 Move marker debugging code under MARKER_DEBUG.
3876 * marker.c (MARKER_DEBUG): Move marker debugging code under
3877 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
3878 for bootstrap with --enable-checking (~3x slowdown reported
3879 by Juanma Barranquero <lekktu@gmail.com>).
3880 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
3881
3882 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
3883
3884 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
3885 See <http://bugs.gnu.org/11825#29>.
3886
3887 2012-07-08 Eli Zaretskii <eliz@gnu.org>
3888
3889 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
3890 has no font, use the frame's font. (Bug#11813)
3891 (display_line): Add commentary about displaying truncation glyphs
3892 on GUI frames.
3893 (produce_special_glyphs): Move here from term.c.
3894
3895 * term.c (produce_special_glyphs): Move to xdisp.c.
3896
3897 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
3898 section.
3899
3900 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
3901
3902 * xdisp.c (display_line): Avoid warning about implicit declaration
3903 of FRAME_FONT.
3904
3905 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
3906
3907 * lisp.h: Remove empty conditional.
3908
3909 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
3910
3911 * lread.c (load_path_check): Now static.
3912
3913 Fix some minor --with-ns problems found by static checking.
3914 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
3915 (x_set_font) [!HAVE_X_WINDOWS]:
3916 * image.c (xpm_load_image) [HAVE_NS]:
3917 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
3918 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
3919 Remove unused local.
3920 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
3921 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
3922 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
3923 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
3924 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
3925 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
3926 Fix pointer signedness problem.
3927 * xfaces.c (FRAME_X_FONT_TABLE):
3928 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
3929
3930 2012-07-07 Glenn Morris <rgm@gnu.org>
3931
3932 * lread.c (load_path_check): New function, split from init_lread.
3933 (init_lread): Reorganize. Motivation:
3934 If EMACSLOADPATH is set, check/warn about that rather than the
3935 defaults, which we are not going to use. Hence we can remove
3936 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
3937 Don't warn if site-lisp directories are missing.
3938 If not installed, start from a blank load-path, since
3939 PATH_LOADSEARCH refers to the eventual installation directories.
3940
3941 2012-07-07 Eli Zaretskii <eliz@gnu.org>
3942
3943 Support truncation and continuation glyphs on GUI frames, when
3944 fringes are disabled. (Bug#11832)
3945 * xdisp.c (init_iterator): Get dimensions of truncation and
3946 continuation glyphs even if on GUI frames.
3947 Adjust it->last_visible_x on GUI frames when the left or right fringes,
3948 or both, are absent.
3949 (start_display, move_it_in_display_line_to): Handle the case of a
3950 GUI frame without a fringe to display continuation or truncation
3951 glyphs.
3952 (insert_left_trunc_glyphs): Support GUI frames: make sure
3953 truncation glyphs overwrite enough glyphs from the current line to
3954 have sufficient space in pixels.
3955 (display_line): Support truncation and continuation glyphs on GUI
3956 frames. If some spare pixels are left on the line after inserting
3957 the truncation glyphs, fill that space with a stretch glyph of a
3958 suitably computed width.
3959
3960 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
3961 produce_glyphs, to support GUI sessions.
3962
3963 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
3964
3965 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
3966
3967 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
3968
3969 Do not require float-time's arg to fit in time_t (Bug#11825).
3970 This works better on hosts where time_t is unsigned, and where
3971 float-time is applied to the (negative) difference between two times.
3972 * editfns.c (decode_time_components): Last arg is now double *,
3973 not int *, and means to store all the result as a double, without
3974 worrying about whether the seconds part fits in time_t.
3975 All callers changed.
3976 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
3977 All callers changed.
3978 (Ffloat_time): Do not fail merely because the specified time falls
3979 outside of time_t range.
3980
3981 2012-07-07 Glenn Morris <rgm@gnu.org>
3982
3983 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
3984 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
3985 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
3986
3987 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
3988
3989 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
3990 Update dependencies.
3991
3992 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
3993
3994 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
3995
3996 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
3997 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
3998 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
3999 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
4000 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
4001 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
4002
4003 * xfont.c (compare_font_names): Redo to omit the need for casts.
4004
4005 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
4006
4007 * xfns.c (Fx_change_window_property): Doc fix.
4008 * w32fns.c (Fx_change_window_property): Doc fix.
4009
4010 * w32fns.c (Fx_window_property): Accept the same arguments as the
4011 X Windows version. Doc fix.
4012 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
4013
4014 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
4015 Eli Zaretskii <eliz@gnu.org>
4016
4017 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
4018 Windows-specific code from nt/config.nt moved here.
4019 Obsolete settings removed.
4020
4021 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
4022
4023 * process.c: Avoid unnecessary calls to gettime.
4024 (wait_reading_process_output): Don't get the time of day
4025 when gobbling data immediately and not waiting, as there's no need
4026 for it in that case. This removes a FIXME.
4027
4028 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
4029
4030 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
4031 is defined (Bug#11768).
4032
4033 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4034
4035 Fix marker debugging code.
4036 * marker.c (byte_char_debug_check): Do not perform the check
4037 if buffer is not multibyte.
4038 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
4039 Call byte_char_debug_check with correct arguments.
4040
4041 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4042
4043 Compile marker debugging code only if ENABLE_CHECKING is defined.
4044 * marker.c (byte_char_debug_check, count_markers):
4045 Use only if ENABLE_CHECKING is defined.
4046 (byte_debug_flag): Remove.
4047 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
4048 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
4049
4050 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4051
4052 Avoid code repetition in marker-related functions.
4053 * marker.c (attach_marker): New function.
4054 (Fset_marker, set_marker_restricted, set_marker_both)
4055 (set_marker_restricted_both): Use it.
4056 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
4057 Consistently rename charno to charpos.
4058 (marker_position): Add eassert.
4059 (marker_byte_position): Convert to eassert.
4060
4061 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4062
4063 Simplify list operations in unchain_overlay and unchain_marker.
4064 * buffer.c (unchain_overlay): Simplify. Add comment.
4065 * marker.c (unchain_marker): Simplify. Fix comments.
4066
4067 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4068
4069 Introduce fast path for the widely used marker operation.
4070 * alloc.c (build_marker): New function.
4071 * lisp.h (build_marker): New prototype.
4072 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
4073 * composite.c (autocmp_chars): Likewise.
4074 * editfns.c (buildmark): Remove.
4075 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
4076 (save_restriction_save): Use build_marker.
4077 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
4078 * window.c (save_window_save): Likewise.
4079
4080 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4081
4082 Do not use Fdelete_overlay in delete_all_overlays
4083 to avoid redundant calls to unchain_overlay.
4084 * buffer.c (drop_overlay): New function.
4085 (delete_all_overlays, Fdelete_overlay): Use it.
4086 * minibuf.c (get_minibuffer): Fix comment.
4087
4088 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
4089
4090 Port to OpenBSD 5.1 amd64.
4091 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
4092 This is needed for OpenBSD, and should be harmless on all BSD systems.
4093 Also, include <sys/sysctl.h>, as it should be available on all
4094 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
4095 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
4096 use p_pid member, not kp_proc.pid.
4097
4098 2012-07-06 Glenn Morris <rgm@gnu.org>
4099
4100 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
4101
4102 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
4103
4104 More xmalloc and related cleanup.
4105 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
4106 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
4107 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
4108 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
4109 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
4110 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
4111 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
4112 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
4113 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
4114 * xterm.c:
4115 Omit needless casts involving void * pointers and allocation.
4116 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
4117 as the former is more robust if P's type is changed.
4118 Prefer xzalloc to xmalloc + memset 0.
4119 Simplify malloc-or-realloc to realloc.
4120 Don't worry about xmalloc returning a null pointer.
4121 Prefer xstrdup to xmalloc + strcpy.
4122 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
4123 growing it.
4124 * keyboard.c (apply_modifiers_uncached): Prefer local array to
4125 alloca of a constant.
4126
4127 2012-07-05 Eli Zaretskii <eliz@gnu.org>
4128
4129 * xdisp.c (display_line): Fix horizontal pixel coordinates when
4130 hscroll is larger than the line width. Fixes long and futile
4131 looping inside extend_face_to_end_of_line (on a TTY) producing
4132 glyphs that are not needed and thrown away.
4133
4134 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
4135
4136 * marker.c (set_marker_restricted_both): Simplify by using
4137 clip_to_bounds.
4138
4139 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
4140
4141 * editfns.c (region_limit): Simplify by using clip_to_bounds.
4142
4143 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
4144
4145 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
4146 not defined (Bug#11768).
4147 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
4148 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
4149 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
4150 followed by gtk_box_set_homogeneous (Bug#11768).
4151 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
4152 (update_theme_scrollbar_width, xg_create_scroll_bar):
4153 Use gtk_scrollbar_new (Bug#11768).
4154 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
4155 (is_box_type): New function (Bug#11768).
4156 (xg_tool_item_stale_p): Call is_box_type.
4157 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
4158 with default display (Bug#11768).
4159
4160 2012-07-05 Eli Zaretskii <eliz@gnu.org>
4161
4162 * xdisp.c (window_hscroll_limited): New function.
4163 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
4164 coordinates when window's hscroll is set to insanely large
4165 values. (Bug#11857)
4166
4167 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
4168
4169 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
4170 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
4171
4172 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
4173
4174 Cleanup xmalloc.
4175 * lisp.h (xzalloc): New prototype. Omit needless casts.
4176 * alloc.c (xzalloc): New function. Omit needless casts.
4177 * charset.c: Omit needless casts. Convert all calls to
4178 xmalloc with following memset to xzalloc.
4179 * dispnew.c: Likewise.
4180 * fringe.c: Likewise.
4181 * image.c: Likewise.
4182 * sound.c: Likewise.
4183 * term.c: Likewise.
4184 * w32fns.c: Likewise.
4185 * w32font.c: Likewise.
4186 * w32term.c: Likewise.
4187 * xfaces.c: Likewise.
4188 * xfns.c: Likewise.
4189 * xterm.c: Likewise.
4190 * atimer.c: Omit needless casts.
4191 * buffer.c: Likewise.
4192 * callproc.c: Likewise.
4193 * ccl.c: Likewise.
4194 * coding.c: Likewise.
4195 * composite.c: Likewise.
4196 * doc.c: Likewise.
4197 * doprnt.c: Likewise.
4198 * editfns.c: Likewise.
4199 * emacs.c: Likewise.
4200 * eval.c: Likewise.
4201 * filelock.c: Likewise.
4202 * fns.c: Likewise.
4203 * gtkutil.c: Likewise.
4204 * keyboard.c: Likewise.
4205 * lisp.h: Likewise.
4206 * lread.c: Likewise.
4207 * minibuf.c: Likewise.
4208 * msdos.c: Likewise.
4209 * print.c: Likewise.
4210 * process.c: Likewise.
4211 * region-cache.c: Likewise.
4212 * search.c: Likewise.
4213 * sysdep.c: Likewise.
4214 * termcap.c: Likewise.
4215 * terminal.c: Likewise.
4216 * tparam.c: Likewise.
4217 * w16select.c: Likewise.
4218 * w32.c: Likewise.
4219 * w32reg.c: Likewise.
4220 * w32select.c: Likewise.
4221 * w32uniscribe.c: Likewise.
4222 * widget.c: Likewise.
4223 * xdisp.c: Likewise.
4224 * xmenu.c: Likewise.
4225 * xrdb.c: Likewise.
4226 * xselect.c: Likewise.
4227
4228 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
4229
4230 * fileio.c (time_error_value): Check the right error number.
4231 Problem reported by Troels Nielsen in
4232 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
4233
4234 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
4235
4236 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
4237 This should be fixed in a better way; see Eli Zaretskii in
4238 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
4239 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
4240
4241 * fileio.c (time_error_value): Rename from special_mtime.
4242 The old name's problems were noted by Eli Zaretskii in
4243 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
4244
4245 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
4246 This variable's comment says Emacs needs at least one GDB-visible
4247 symbol of type enum pvec_type, to work around GDB problems.
4248 The symbol's value doesn't matter.
4249
4250 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
4251 that causes compilation to fail on pre-C99 compilers.
4252
4253 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
4254
4255 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
4256 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
4257
4258 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
4259
4260 * buffer.c (init_buffer_once): Fix initialization of
4261 headers for buffer_defaults and buffer_local_symbols.
4262 Reported by Juanma Barranquero <lekktu@gmail.com>.
4263
4264 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
4265
4266 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
4267 * lisp.h (enum pvec_type): Use fewer bits.
4268 (PSEUDOVECTOR_SIZE_BITS): New constant.
4269 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
4270 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
4271 change in pvec_type.
4272 (PSEUDOVECTOR_TYPEP): New macro.
4273 (TYPED_PSEUDOVECTORP): Use it.
4274 * fns.c (internal_equal): Adapt code to extract pvectype.
4275 * emacs.c (gdb_pvec_type): Update type.
4276 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
4277 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
4278 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
4279 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
4280 (sweep_vectors): Use it. Use local var `total_bytes' instead of
4281 abusing vector->header.next.nbytes.
4282 (live_vector_p): Use PVEC_TYPE.
4283 (mark_object): Adapt code to extract pvectype. Use switch.
4284
4285 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
4286
4287 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
4288 Tighten new eassert a bit.
4289
4290 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
4291
4292 Fix compilation with --enable-gcc-warnings and -O1
4293 optimization level.
4294 * doprnt.c (doprnt): Change type of tem to int, initialize
4295 to avoid compiler warning. Add eassert.
4296 * search.c (simple_search): Initialize match_byte to avoid
4297 compiler warning. Add eassert.
4298
4299 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
4300
4301 Avoid weird behavior with large horizontal scrolls.
4302 Without this change, for example, large hscroll values would
4303 mess up Emacs's display on Fedora 15 x86, presumably due to
4304 overflows in int calculations in the display code.
4305 Also, if buffers had long lines, Emacs would freeze.
4306 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
4307 (set_window_hscroll): New function, containing the old guts of
4308 Fset_window_hscroll. Return the clipped value.
4309 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
4310 This avoids the need to check against PTRDIFF_MAX.
4311
4312 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
4313
4314 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
4315
4316 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
4317
4318 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
4319
4320 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
4321 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
4322 since GCC 4.4.6 issues a bogus warning for them.
4323
4324 Fix bugs in file timestamp newness comparisons.
4325 * fileio.c (Ffile_newer_than_file_p):
4326 * lread.c (Fload): Use full timestamp resolution of files,
4327 not just the 1-second resolution, so that files that are only
4328 slightly newer still count as newer.
4329 * fileio.c (Ffile_newer_than_file_p): Don't assume file
4330 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
4331
4332 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
4333
4334 * fileio.c: Improve handling of file time marker. (Bug#11852)
4335 (special_mtime): New function.
4336 (Finsert_file_contents, Fverify_visited_file_modtime):
4337 Use it to set special mtime values consistently.
4338
4339 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
4340
4341 * fileio.c (Finsert_file_contents): Properly handle st_mtime
4342 marker for non-existing file. (Bug#11852)
4343
4344 2012-07-03 Glenn Morris <rgm@gnu.org>
4345
4346 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
4347 and did not make it into globals.h).
4348
4349 2012-07-03 Tom Tromey <tromey@redhat.com>
4350
4351 * window.c (Fset_window_margins, Fset_window_fringes)
4352 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
4353 * textprop.c (Fprevious_property_change): No longer static.
4354 * syntax.c (Fsyntax_table_p): No longer static.
4355 * process.c (Fget_process, Fprocess_datagram_address): No longer
4356 static.
4357 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
4358 * keyboard.c (Fcommand_execute): No longer static.
4359 Remove EXFUN.
4360 * insdel.c (Fcombine_after_change_execute): No longer static.
4361 * image.c (Finit_image_library): No longer static.
4362 * fileio.c (Fmake_symbolic_link): No longer static.
4363 * eval.c (Ffetch_bytecode): No longer static.
4364 * editfns.c (Fuser_full_name): No longer static.
4365 * doc.c (Fdocumentation_property, Fsnarf_documentation):
4366 No longer static.
4367 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
4368 static.
4369 * dired.c (Ffile_attributes): No longer static.
4370 * composite.c (Fcomposition_get_gstring): No longer static.
4371 * callproc.c (Fgetenv_internal): No longer static.
4372
4373 * ccl.h: Remove EXFUNs.
4374 * buffer.h: Remove EXFUNs.
4375 * dispextern.h: Remove EXFUNs.
4376 * intervals.h: Remove EXFUNs.
4377 * fontset.h: Remove EXFUN.
4378 * font.h: Remove EXFUNs.
4379 * dosfns.c (system_process_attributes): Remove EXFUN.
4380 * keymap.h: Remove EXFUNs.
4381 * lisp.h: Remove EXFUNs.
4382 * w32term.h: Remove EXFUNs.
4383 * window.h: Remove EXFUNs.
4384 * xsettings.h: Remove EXFUN.
4385 * xterm.h: Remove EXFUN.
4386
4387 2012-07-03 Glenn Morris <rgm@gnu.org>
4388
4389 * lisp.h (Frandom): Make it visible to C.
4390 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
4391 buffer for invisible buffers. (Bug#1229)
4392
4393 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
4394
4395 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
4396 values which aren't power of 2.
4397 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
4398 Verify it's value and the value of VECTOR_BLOCK_SIZE. Adjust users
4399 accordingly.
4400
4401 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
4402
4403 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
4404
4405 * alloc.c (mark_object): Revert part of last patch to use `switch'.
4406
4407 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
4408
4409 * alloc.c (allocate_vector_block): Remove redundant
4410 calls to mallopt if DOUG_LEA_MALLOC is defined.
4411 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
4412 avoid calls to mallopt if zero_vector is returned.
4413
4414 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
4415
4416 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
4417 is enabled, avoid dereferencing NULL current_sblock if
4418 running undumped.
4419
4420 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
4421
4422 Cleanup basic buffer management.
4423 * buffer.h (struct buffer): Change layout to use generic vector
4424 marking code. Fix some comments. Change type of 'clip_changed'
4425 to bitfield. Remove unused #ifndef old.
4426 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
4427 (GET_OVERLAYS_AT): Fix indentation.
4428 (for_each_per_buffer_object_at): New macro.
4429 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
4430 (Fbuffer_local_variables): Use it.
4431 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
4432 * alloc.c (allocate_buffer): Adjust to match new layout of
4433 struct buffer. Fix comment.
4434 (mark_overlay): New function.
4435 (mark_buffer): Use it. Use mark_vectorlike to mark normal
4436 Lisp area of struct buffer.
4437 (mark_object): Use it. Adjust marking of misc objects
4438 and related comments.
4439
4440 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
4441
4442 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
4443 wrapper that is not needed because the wrapped code is a no-op (zero
4444 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
4445 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
4446
4447 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
4448
4449 * alloc.c (mark_buffer): Simplify. Remove prototype.
4450 (mark_object): Add comment. Reorganize marking of vector-like
4451 objects. Use CHECK_LIVE for all vector-like objects except buffers
4452 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
4453 Avoid redundant calls to mark_vectorlike for bool vectors.
4454
4455 2012-06-30 Glenn Morris <rgm@gnu.org>
4456
4457 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
4458
4459 * epaths.in (PATH_SITELOADSEARCH): New.
4460 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
4461 This is rather than relying on --enable-locallisppath elements
4462 having "site-lisp" in their names. (Bug#10208#25, 11658)
4463
4464 2012-06-30 Eli Zaretskii <eliz@gnu.org>
4465
4466 * w32proc.c (sys_select): Accept and ignore one more argument.
4467
4468 * w32.c (emacs_gnutls_pull): Call select with one more argument.
4469
4470 * sysselect.h [DOS_NT]: Don't include sys/select.h.
4471 (pselect) [!MS_DOS]: Redirect to sys_select.
4472
4473 * sysdep.c: Don't include dos.h and dosfns.h.
4474
4475 * process.c (sys_select):
4476 * msdos.c (sys_select): Accept one more argument and ignore it.
4477
4478 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
4479 adapt data types and code to that.
4480
4481 * dosfns.c:
4482 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
4483 which clashes with the gnulib function of the same name.
4484
4485 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
4486
4487 * font.c (font_style_to_value, font_style_symbolic)
4488 (font_prop_validate_style): Add type checks for values in
4489 font_style_table.
4490
4491 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
4492 argument.
4493 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
4494 uses.
4495
4496 2012-06-29 Eli Zaretskii <eliz@gnu.org>
4497
4498 * xdisp.c (try_window_id): Undo last change.
4499
4500 * w32.c (getwd): Adjust commentary about startup_dir.
4501 (init_environment): Always call sys_access, even in non-MSVC
4502 builds. Don't chdir to the directory of the Emacs executable.
4503 This undoes code from 1997 which was justified by the need to
4504 "avoid conflicts when removing and renaming directories". But its
4505 downside was that every relative file name was being interpreted
4506 relative to the directory of the Emacs executable, which can never
4507 be TRT. In particular, it broke sys_access when called with
4508 relative file names.
4509 (sys_access): Map GetLastError to errno.
4510
4511 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
4512
4513 * window.h (struct window): Change type of 'fringes_outside_margins'
4514 to bitfield. Fix comment. Adjust users accordingly.
4515 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
4516 Adjust comment.
4517 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
4518 to ptrdiff_t.
4519
4520 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
4521
4522 * gnutls.c (emacs_gnutls_handshake):
4523 Add QUIT to make the loop interruptible.
4524
4525 2012-06-29 Glenn Morris <rgm@gnu.org>
4526
4527 * charset.c (init_charset): Make lack of etc/charsets fatal.
4528
4529 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
4530
4531 * editfns.c (region_limit): Fix type mismatch.
4532
4533 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
4534
4535 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
4536 undefined. Convert from xassert to eassert.
4537 * nsmenu.m: Convert from xassert to eassert.
4538 * nsterm.m: Likewise.
4539
4540 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
4541
4542 * editfns.c (region_limit): Clip to narrowing (bug#11770).
4543
4544 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
4545
4546 Avoid integer overflow on scroll-left and scroll-right.
4547 * window.c (HSCROLL_MAX): New macro.
4548 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
4549 overflow when requested scroll falls outside ptrdiff_t range.
4550
4551 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4552
4553 * window.h (struct window): Change type of 'hscroll',
4554 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
4555 'last_modified' and 'last_overlay_modified' to EMACS_INT.
4556 Adjust users accordingly.
4557 * xdisp.c (try_cursor_movement): Replace type check with eassert.
4558 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
4559 from EMACS_INT to ptrdiff_t.
4560 (make_window): Omit redundant initialization.
4561
4562 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
4563
4564 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
4565
4566 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4567
4568 * window.h (struct window): Change type of 'use_time' and
4569 'sequence_number' from Lisp_Object to int.
4570 * frame.c (make_frame): Adjust users accordingly.
4571 * print.c (print_object): Likewise.
4572 * window.c (select_window, Fwindow_use_time, make_parent_window)
4573 (make_window): Likewise.
4574
4575 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4576
4577 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
4578 enabled with --enable-checking=[all,glyphs] configure option.
4579 Fix GLYPH_DEBUG usage assuming that it may be undefined,
4580 adjust comments accordingly.
4581 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
4582 undefined, adjust comments accordingly.
4583 * image.c: Likewise.
4584 * scroll.c: Likewise.
4585 * w32fns.c: Likewise.
4586 * w32term.c: Likewise.
4587 * xdisp.c: Likewise.
4588 * xfaces.c: Likewise.
4589 * xfns.c: Likewise.
4590 * xterm.c: Likewise.
4591
4592 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4593
4594 Generalize run-time debugging checks.
4595 * dispextern.h (XASSERTS): Remove.
4596 * fontset.c (xassert): Remove.
4597 Convert from xassert to eassert.
4598 * alloc.c: Convert from xassert to eassert.
4599 * bidi.c: Likewise.
4600 * dispnew.c: Likewise.
4601 * fns.c: Likewise.
4602 * fringe.c: Likewise.
4603 * ftfont.c: Likewise.
4604 * gtkutil.c: Likewise.
4605 * image.c: Likewise.
4606 * keyboard.c: Likewise.
4607 * menu.c: Likewise.
4608 * process.c: Likewise.
4609 * scroll.c: Likewise.
4610 * sound.c: Likewise.
4611 * term.c: Likewise.
4612 * w32console.c: Likewise.
4613 * w32fns.c: Likewise.
4614 * w32term.c: Likewise.
4615 * window.c: Likewise.
4616 * xdisp.c: Likewise.
4617 * xfaces.c: Likewise.
4618 * xfns.c: Likewise.
4619 * xselect.c: Likewise.
4620 * xterm.c: Likewise.
4621
4622 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4623
4624 * fns.c (maybe_resize_hash_table): Output message when growing the
4625 purify-hashtable.
4626
4627 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4628
4629 * alloc.c (allocate_string_data): Remove dead code.
4630 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
4631 avoid GCC warning about unused macro.
4632
4633 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4634
4635 * alloc.c (allocate_string): Omit intervals initialization.
4636 * alloc.c (make_uninit_multibyte_string): Initialize intervals
4637 as in make_pure_string and make_pure_c_string.
4638
4639 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4640
4641 * alloc.c (allocate_string): Fix last change.
4642
4643 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4644
4645 * alloc.c (allocate_string): Remove two redundant calls
4646 to memset, add explicit initialization where appropriate.
4647
4648 2012-06-27 Glenn Morris <rgm@gnu.org>
4649
4650 * lisp.mk (lisp): Remove paths.elc.
4651
4652 2012-06-27 Chong Yidong <cyd@gnu.org>
4653
4654 * doc.c (Fsubstitute_command_keys): Fix punctuation.
4655
4656 2012-06-26 John Wiegley <johnw@newartisans.com>
4657
4658 * unexmacosx.c (copy_data_segment): Add two section names used
4659 on Mac OS X Lion: __mod_init_func and __mod_term_func.
4660
4661 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
4662 when building with Clang.
4663
4664 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4665
4666 * eval.c (Fapply): Allow calling it with a single argument.
4667
4668 2012-06-26 Eli Zaretskii <eliz@gnu.org>
4669
4670 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
4671 _stricmp and _strnicmp.
4672 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
4673
4674 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
4675
4676 * alloc.c (allocate_window): Zero out non-Lisp part of newly
4677 allocated window.
4678 (allocate_process): Likewise for new process.
4679 (allocate_terminal): Change to use offsetof.
4680 (allocate_frame): Likewise.
4681 * frame.c (make_frame): Omit redundant initialization.
4682 * window.c (make_parent_window): Use memset.
4683 (make_window): Omit redundant initialization.
4684 * process.c (make_process): Omit redundant initialization.
4685 * terminal.c (create_terminal): Likewise.
4686
4687 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
4688
4689 * term.c (delete_tty): Remove redundant call to memset.
4690
4691 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
4692
4693 * alloc.c: Remove build_string.
4694 * lisp.h: Define build_string as static inline. This provides
4695 a better opportunity to optimize away calls to strlen when the
4696 function is called with compile-time constant argument.
4697 * image.c (imagemagick_error): Convert to build_string.
4698 * w32proc.c (sys_spawnve): Likewise.
4699 * xterm.c (x_term_init): Likewise.
4700
4701 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
4702
4703 Use sprintf return value instead of invoking strlen on result.
4704 In the old days this wasn't portable, since some sprintf
4705 implementations returned char *. But they died out years ago and
4706 Emacs already assumes sprintf returns int.
4707 Similarly for float_to_string.
4708 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
4709 * ccl.c (ccl_driver):
4710 * character.c (string_escape_byte8):
4711 * data.c (Fnumber_to_string):
4712 * doprnt.c (doprnt):
4713 * print.c (print_object):
4714 * xdisp.c (message_dolog):
4715 * xfns.c (syms_of_xfns):
4716 Use sprintf or float_to_string result to avoid need to call strlen.
4717 * data.c (Fnumber_to_string):
4718 Use make_unibyte_string, since the string must be ASCII.
4719 * lisp.h, print.c (float_to_string): Now returns int length.
4720 * term.c (produce_glyphless_glyph):
4721 Use sprintf result rather than recomputing it.
4722
4723 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
4724 * Makefile.in (ALL_CFLAGS):
4725 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
4726 * gmalloc.c, regex.c: Include <config.h> unconditionally.
4727
4728 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
4729
4730 * dispextern.h (xstrcasecmp): Define to library function
4731 strcasecmp if available.
4732 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
4733
4734 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
4735
4736 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
4737 Avoid comma operator.
4738 * menu.c (push_submenu_start, push_submenu_end)
4739 (push_left_right_boundary, push_menu_pane): Likewise.
4740 * msdos.c (dos_rawgetc): Likewise.
4741
4742 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
4743
4744 * xfns.c (xic_create_fontsetname): Remove redundant calls
4745 to memset.
4746
4747 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
4748
4749 * gtkutil.c (get_utf8_string): Remove redundant assignment.
4750 sprintf already null-terminates its output.
4751
4752 * xfns.c (x_window): Remove redundant cast.
4753
4754 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
4755
4756 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
4757 `const char *' to `char *' to avoid compiler warning.
4758
4759 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
4760
4761 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
4762 instead of truncating it to 63 (admittedly a generous limit).
4763
4764 * process.c: Fix spelling and caps in comments.
4765
4766 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
4767
4768 * emacs.c (setpgrp): Remove definition, unused.
4769 * sysdep.c (setpgrp): Remove definition, not used in this file.
4770
4771 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
4772
4773 * makefile.w32-in: Update dependencies.
4774
4775 2012-06-24 Eli Zaretskii <eliz@gnu.org>
4776
4777 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
4778 (SYSTIME_H): Add nt/inc/sys/time.h.
4779
4780 * systime.h [WINDOWSNT]: Include sys/time.h.
4781
4782 * s/ms-w32.h (struct timespec): Definition moved from
4783 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
4784
4785 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
4786
4787 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
4788 * buffer.h (buffer_slot_type_mismatch):
4789 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
4790 * eval.c (unwind_to_catch):
4791 * image.c (my_png_error, my_error_exit):
4792 * keyboard.c (quit_throw_to_read_char, user_error)
4793 (Fexit_recursive_edit, Fabort_recursive_edit):
4794 * lisp.h (die, args_out_of_range, args_out_of_range_3)
4795 (wrong_type_argument, buffer_overflow, __executable_start)
4796 (memory_full, buffer_memory_full, string_overflow, Fthrow)
4797 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
4798 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
4799 (fatal):
4800 (child_setup) [!DOS_NT]:
4801 * lread.c (end_of_file_error, invalid_syntax):
4802 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
4803 * puresize.h (pure_write_error):
4804 * search.c (matcher_overflow):
4805 * sound.c (sound_perror, alsa_sound_perror):
4806 * sysdep.c, syssignal.h (croak):
4807 * term.c (maybe_fatal, vfatal):
4808 * textprop.c (text_read_only):
4809 * undo.c (user_error):
4810 * unexmacosx.c (unexec_error):
4811 * xterm.c (x_ins_del_lines, x_delete_glyphs):
4812 Use _Noreturn rather than NO_RETURN.
4813 No need for separate decl merely because of _Noreturn.
4814 * sound.c (sound_warning, parse_sound):
4815 Remove unnecessary forward decls.
4816
4817 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
4818
4819 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
4820 * lisp.h (WAIT_READING_MAX): New macro.
4821 * dispnew.c (Fsleep_for, sit_for):
4822 * keyboard.c (kbd_buffer_get_event):
4823 * process.c (Faccept_process_output):
4824 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
4825 This improves on the previous patch, which introduced a bug
4826 when time_t is unsigned and as wide as intmax_t.
4827 See <http://bugs.gnu.org/9000#51>.
4828
4829 2012-06-23 Eli Zaretskii <eliz@gnu.org>
4830
4831 * dispnew.c (sit_for, Fsleep_for):
4832 * keyboard.c (kbd_buffer_get_event):
4833 * process.c (Faccept_process_output): Avoid compiler warnings when
4834 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
4835
4836 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
4837
4838 * makefile.w32-in: Update dependencies.
4839
4840 * w32.c (ltime): Add return type and declare static.
4841 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
4842
4843 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
4844
4845 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
4846 Privately reported by Herbert J. Skuhra.
4847 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
4848 All uses changed.
4849 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
4850 not make_lisp_timeval, when the argument is of type EMACS_TIME.
4851
4852 2012-06-23 Eli Zaretskii <eliz@gnu.org>
4853
4854 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
4855 last argument of make_unibyte_string.
4856
4857 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
4858 language ID in the event parameters.
4859
4860 * w32term.c (w32_read_socket): Put the new keyboard codepage into
4861 event.code, not the obscure "character set ID".
4862
4863 2012-06-23 Chong Yidong <cyd@gnu.org>
4864
4865 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
4866
4867 2012-06-23 Eli Zaretskii <eliz@gnu.org>
4868
4869 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
4870 * w32.c (fdutimens): New function.
4871
4872 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
4873
4874 * s/ms-w32.h (pselect): Redirect to sys_select.
4875
4876 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
4877
4878 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
4879 in the logic of incrementing and decrementing the value of
4880 use_relocatable_buffers.
4881
4882 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
4883
4884 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
4885 Privately reported by Herbert J. Skuhra.
4886 [__FreeBSD__]: Remove "*/" typo after "#include".
4887 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
4888 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
4889 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
4890 Don't assume EMACS_TIME and struct timeval are the same type.
4891
4892 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
4893
4894 Support higher-resolution time stamps (Bug#9000).
4895 The time stamps are only nanosecond-resolution at the C level,
4896 since that's the best that any real-world system supports now.
4897 But they are picosecond-resolution at the Lisp level, as that's
4898 easy, and leaves room for future OS improvements.
4899
4900 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
4901 (LIBES): Use it.
4902
4903 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
4904 Don't get current time unless it's needed.
4905
4906 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
4907 now provides it if it's absent.
4908 (start_atimer): Port to higher-res time stamps.
4909 Check for time stamp overflow. Don't get current time more
4910 often than is needed.
4911
4912 * buffer.h (struct buffer): Buffer modtime now has high resolution.
4913 Include systime.h, not time.h.
4914 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
4915
4916 * dired.c: Include stat-time.h.
4917 (Ffile-attributes): File times now have higher resolution.
4918
4919 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
4920 (struct image): Timestamp now has higher resolution.
4921
4922 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
4923 has at least microseconds now. All uses removed.
4924 (update_frame, update_single_window, update_window, update_frame_1)
4925 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
4926 (duration_to_sec_usec): Remove; no longer needed.
4927
4928 * editfns.c (time_overflow): Now extern.
4929 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
4930 (float-time, Fformat_time_string, Fcurrent_time_string)
4931 (Fcurrent_time_zone): Accept and generate higher-resolution
4932 time stamps.
4933 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
4934 (decode_time_components, lisp_seconds_argument): New functions.
4935 (make_time): Now static.
4936 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
4937 Report an error if the time is invalid, rather than having the caller
4938 do that.
4939
4940 * fileio.c: Include <stat-time.h>
4941 (Fcopy_file): Copy higher-resolution time stamps.
4942 Prefer to set the time stamp via a file descriptor if that works.
4943 (Fset_file_times, Finsert_file_contents, Fwrite_region)
4944 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
4945 (Fvisited_file_modtime, Fset_visited_file_modtime):
4946 Support higher-resolution time stamps.
4947
4948 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
4949
4950 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
4951
4952 * image.c (prepare_image_for_display, clear_image_cache)
4953 (lookup_image): Port to higer-resolution time stamps.
4954
4955 * keyboard.c (start_polling, bind_polling_period):
4956 Check for time stamp overflow.
4957 (read_char, kbd_buffer_get_event, timer_start_idle)
4958 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
4959 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
4960 Port to higher-resolution time stamps. Do not assume time_t is signed.
4961 (decode_timer): New function. Timers are now vectors of length 9,
4962 not 8, to accommodate the picosecond component.
4963 (timer_check_2): Use it.
4964
4965 * nsterm.m (select_timeout, timeval_subtract): Remove.
4966 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
4967 as they're a bit more accurate and handle overflow better.
4968 (ns_select): Change prototype to be compatible with pselect.
4969 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
4970 * nsterm.h (ns_select): Adjust prototype.
4971
4972 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
4973 us-resolution time stamps.
4974 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
4975
4976 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
4977
4978 * lisp.h (time_overflow): New decl.
4979 (wait_reading_process_output): First arg is now intmax_t, not int,
4980 to accommodate larger waits.
4981
4982 * process.h (struct Lisp_Process.read_output_delay):
4983 Now counts nanoseconds, not microseconds.
4984 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
4985 EMACS_HAS_USECS.
4986 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
4987 (wait_reading_process_output):
4988 Port to ns-resolution time stamps.
4989 (Faccept_process_output, wait_reading_process_output):
4990 Check for time stamp overflow. Do not assume time_t is signed.
4991 (select_wrapper): Remove; we now use pselect.
4992 (Fprocess_attributes): Now generates ns-resolution time stamps.
4993
4994 * sysdep.c: Include utimens.h. Don't include utime.h
4995 or worry about struct utimbuf; gnulib does that for us now.
4996 (gettimeofday): Remove; gnulib provides a substitute.
4997 (make_timeval): New function.
4998 (set_file_times): Now sets ns-resolution time stamps.
4999 New arg FD; all uses changed.
5000 (time_from_jiffies, ltime_from_jiffies, get_up_time)
5001 (system_process_attributes):
5002 Now returns ns-resolution time stamp. All uses changed.
5003 Check for time stamp overflow.
5004
5005 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
5006 provides a substitute now.
5007
5008 * systime.h: Include timespec.h rather than sys/time.h and time.h,
5009 since it guarantees struct timespec.
5010 (EMACS_TIME): Now struct timespec, so that we can support
5011 ns-resolution time stamps.
5012 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
5013 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
5014 (EMACS_USECS): Remove.
5015 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
5016 so multiply the arg by 1000 before storing it.
5017 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
5018 New macros.
5019 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
5020 Port to ns-resolution time stamps.
5021 (EMACS_TIME_NEG_P): Remove; replaced by....
5022 (EMACS_TIME_SIGN): New macro.
5023 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
5024 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
5025 (set_file_times, make_time, lisp_time_argument): Adjust signature.
5026 (make_timeval, make_lisp_time, decode_time_components): New decls.
5027 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
5028 that it mishandled time_t overflow. You can't compare by subtracting!
5029 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
5030 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
5031
5032 * term.c: Include <sys/time.h>.
5033 (timeval_to_Time): New function, for proper overflow wraparound.
5034 (term_mouse_position, term_mouse_click): Use it.
5035
5036 * undo.c (record_first_change): Support higher-resolution time stamps
5037 in the undo buffer.
5038 (Fprimitive_undo): Use them when restoring time stamps.
5039
5040 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
5041 (w32_get_internal_run_time):
5042 Port to higher-resolution Emacs time stamps.
5043 (ltime): Now accepts single 64-bit integer, as that's more convenient
5044 for callers.
5045
5046 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
5047
5048 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
5049 for compatibility with pselect. Support ns-resolution time stamps.
5050
5051 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
5052
5053 * xselect.c (wait_for_property_change, x_get_foreign_selection):
5054 Check for time stamp overflow, and support ns-resolution time stamps.
5055
5056 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
5057 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
5058 (timeval_subtract): Remove; no longer needed.
5059 (XTflash, XTring_bell, x_wait_for_event):
5060 Port to ns-resolution time stamps. Don't assume time_t is signed.
5061
5062 2012-06-22 Chong Yidong <cyd@gnu.org>
5063
5064 * xdisp.c (x_consider_frame_title): Revert last change.
5065
5066 2012-06-22 Eli Zaretskii <eliz@gnu.org>
5067
5068 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
5069 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
5070 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
5071 staticidx goes up to 1597 out of 1600 = 0x640.)
5072
5073 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
5074
5075 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
5076 Otherwise, the umask might be mistakenly 0 while handling input signals.
5077
5078 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5079
5080 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
5081
5082 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
5083
5084 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
5085 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
5086 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
5087 access to `contents' member of Lisp_Vector objects with AREF and ASET
5088 where appropriate.
5089
5090 2012-06-19 Chong Yidong <cyd@gnu.org>
5091
5092 * frame.c (delete_frame): When selecting a frame on a different
5093 text terminal, do not alter the terminal's top-frame.
5094
5095 * xdisp.c (format_mode_line_unwind_data): Record the target
5096 frame's selected window and its terminal's top-frame.
5097 (unwind_format_mode_line): Restore them.
5098 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
5099 Callers changed.
5100 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
5101 since tty frames can be explicitly named.
5102 (prepare_menu_bars): Likewise.
5103
5104 * term.c (Ftty_top_frame): New function.
5105
5106 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
5107
5108 Port byte-code-meter to modern targets.
5109 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
5110 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
5111 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
5112 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
5113 (METER_1, METER_2): Simplify.
5114
5115 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
5116
5117 * data.c (Fdefalias): Return `symbol' (bug#11686).
5118
5119 2012-06-18 Martin Rudalics <rudalics@gmx.at>
5120
5121 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
5122 gets killed during executing of this function (Bug#11665).
5123 Try to always return Qt when the buffer has been actually killed.
5124 (Vkill_buffer_query_functions): In doc-string say that functions
5125 run by this hook should not change the current buffer.
5126
5127 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
5128
5129 Fix recently-introduced process.c problems found by static checking.
5130 * process.c (write_queue_push, write_queue_pop, send_process):
5131 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
5132 (write_queue_pop): Fix pointer signedness problem.
5133 (send_process): Remove unused local.
5134
5135 2012-06-17 Chong Yidong <cyd@gnu.org>
5136
5137 * xdisp.c (redisplay_internal): No need to redisplay terminal
5138 frames that are not on top.
5139
5140 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
5141
5142 * process.c (make_process): Initialize write_queue.
5143 (write_queue_push, write_queue_pop): New functions.
5144 (send_process): Use them to maintain correct ordering of process
5145 writes (Bug#10815).
5146
5147 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
5148
5149 * lisp.h (eassert): Assume C89 or later.
5150 This removes the need for CHECK.
5151 (CHECK): Remove. Its comments about always evaluating its
5152 argument were confusing, as 'eassert' typically does not evaluate
5153 its argument.
5154
5155 * coding.c (produce_chars): Use ptrdiff_t, not int.
5156
5157 * xterm.c (x_draw_underwave): Check for integer overflow.
5158 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
5159
5160 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
5161
5162 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
5163 referenced (Bug#11583).
5164
5165 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
5166
5167 Implement wave-style variant of underlining.
5168 * dispextern.h (face_underline_type): New enum.
5169 (face): Add field for underline type.
5170 * nsterm.m (ns_draw_underwave): New function.
5171 (ns_draw_text_decoration): Use it.
5172 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
5173 New functions.
5174 (x_draw_glyph_string): Use them.
5175 * xfaces.c (Qline, Qwave): New Lisp objects.
5176 (check_lface_attrs, merge_face_ref)
5177 (Finternal_set_lisp_face_attribute, realize_x_face):
5178 Handle wave-style underline face attributes.
5179 * xterm.c (x_draw_underwave): New function.
5180 (x_draw_glyph_string): Use it.
5181
5182 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
5183
5184 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
5185 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
5186 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
5187 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
5188 ($(BLD)/w32select.$(O)): Update dependencies.
5189
5190 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
5191
5192 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
5193 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
5194 * character.c (_fetch_multibyte_char_p): Remove.
5195 * alloc.c: Include "character.h" before "buffer.h".
5196 * bidi.c: Likewise.
5197 * buffer.c: Likewise.
5198 * bytecode.c: Likewise.
5199 * callint.c: Likewise.
5200 * callproc.c: Likewise.
5201 * casefiddle.c: Likewise.
5202 * casetab.c: Likewise.
5203 * category.c: Likewise.
5204 * cmds.c: Likewise.
5205 * coding.c: Likewise.
5206 * composite.c: Likewise.
5207 * dired.c: Likewise.
5208 * dispnew.c: Likewise.
5209 * doc.c: Likewise.
5210 * dosfns.c: Likewise.
5211 * editfns.c: Likewise.
5212 * emacs.c: Likewise.
5213 * fileio.c: Likewise.
5214 * filelock.c: Likewise.
5215 * font.c: Likewise.
5216 * fontset.c: Likewise.
5217 * fringe.c: Likewise.
5218 * indent.c: Likewise.
5219 * insdel.c: Likewise.
5220 * intervals.c: Likewise.
5221 * keyboard.c: Likewise.
5222 * keymap.c: Likewise.
5223 * lread.c: Likewise.
5224 * macros.c: Likewise.
5225 * marker.c: Likewise.
5226 * minibuf.c: Likewise.
5227 * nsfns.m: Likewise.
5228 * nsmenu.m: Likewise.
5229 * print.c: Likewise.
5230 * process.c: Likewise.
5231 * regex.c: Likewise.
5232 * region-cache.c: Likewise.
5233 * search.c: Likewise.
5234 * syntax.c: Likewise.
5235 * term.c: Likewise.
5236 * textprop.c: Likewise.
5237 * undo.c: Likewise.
5238 * unexsol.c: Likewise.
5239 * w16select.c: Likewise.
5240 * w32fns.c: Likewise.
5241 * w32menu.c: Likewise.
5242 * window.c: Likewise.
5243 * xdisp.c: Likewise.
5244 * xfns.c: Likewise.
5245 * xmenu.c: Likewise.
5246 * xml.c: Likewise.
5247 * xselect.c: Likewise.
5248
5249 2012-06-16 Eli Zaretskii <eliz@gnu.org>
5250
5251 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
5252 If all the glyphs of the glyph row came from strings, and we have no
5253 cursor positioning clues, put the cursor on the first glyph of the
5254 row.
5255 (handle_face_prop): Use chunk-relative overlay string index when
5256 indexing into it->string_overlays array. (Bug#11653)
5257 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
5258 the rightmost. (Bug#11720)
5259
5260 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
5261
5262 * category.h (CHAR_HAS_CATEGORY): Define as inline.
5263 (CATEGORY_MEMBER): Enforce 1/0 value.
5264 * category.c (_temp_category_set): Remove.
5265
5266 2012-06-16 Eli Zaretskii <eliz@gnu.org>
5267
5268 * window.c (Fdelete_other_windows_internal)
5269 (Fdelete_window_internal): Don't access frame's mouse highlight
5270 info of the initial frame. (Bug#11677)
5271
5272 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
5273
5274 * .gdbinit (xgetint): Fix recently-introduced paren typo.
5275 Assume USE_2_TAGS_FOR_INTS.
5276 (xreload): Adjust $tagmask width to match recent lisp.h change.
5277
5278 Simplify lisp.h in minor ways that should not affect code.
5279 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
5280 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
5281 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
5282 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
5283 (INTTYPEBITS): New macro, for clarity.
5284 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
5285 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
5286 Simplify now that USE_LSB_TAG is always defined.
5287 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
5288 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
5289
5290 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
5291
5292 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
5293
5294 2012-06-13 Glenn Morris <rgm@gnu.org>
5295
5296 * s/bsd-common.h (BSD4_3):
5297 * s/usg5-4-common.h (USG5_4): No longer define; unused.
5298
5299 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
5300
5301 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
5302 instead of union.
5303 (XLI, XIL): Define.
5304 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
5305 Use them.
5306 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
5307 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
5308 * alloc.c (widen_to_Lisp_Object): Remove.
5309 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
5310 * frame.c (delete_frame): Remove outdated comment.
5311 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
5312 USE_LISP_UNION_TYPE.
5313 (Fw32_unregister_hot_key): Likewise.
5314 (Fw32_toggle_lock_key): Likewise.
5315 * w32menu.c (add_menu_item): Likewise.
5316 (w32_menu_display_help): Use XIL instead of checking
5317 USE_LISP_UNION_TYPE.
5318 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
5319 (init_heap): Likewise.
5320 * w32term.c (w32_read_socket): Update comment.
5321
5322 2012-06-13 Glenn Morris <rgm@gnu.org>
5323
5324 * s/usg5-4-common.h, src/s/unixware.h:
5325 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
5326
5327 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
5328
5329 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
5330
5331 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
5332 * alloc.c (make_number) [!defined make_number]:
5333 Remove, as lisp.h always defines this now.
5334 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
5335 (roundup_size): Verify that it is a power of 2.
5336 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
5337 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
5338 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
5339 -DUSE_LSB_TAG=0, to override the automatically-selected default.
5340 USE_LSB_TAG now is always defined to be either 0 or 1.
5341 All uses changed.
5342 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
5343 code works fine either way, and efficiency is not a concern here,
5344 as the union type is for debugging, not for production.
5345 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
5346 Use an inline function on all platforms when using the union type,
5347 since this is simpler and 'static inline' can be used portably
5348 within Emacs now.
5349 (LISP_INITIALLY_ZERO): New macro.
5350 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
5351 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
5352
5353 2012-06-12 Glenn Morris <rgm@gnu.org>
5354
5355 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
5356
5357 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
5358
5359 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
5360 Move BROKEN_SIGIO to configure.
5361
5362 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
5363 Move NO_TERMIO to configure.
5364
5365 2012-06-12 Chong Yidong <cyd@gnu.org>
5366
5367 * image.c (imagemagick_load_image): Use MagickFlattenImage if
5368 MagickMergeImageLayers is undefined. Use pixel pusher loop if
5369 MagickExportImagePixels is undefined.
5370
5371 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
5372
5373 * image.c (imagemagick_load_image): Remove unused label.
5374
5375 2012-06-11 Glenn Morris <rgm@gnu.org>
5376
5377 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
5378 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
5379 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
5380 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
5381
5382 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
5383
5384 * alloc.c (make_byte_code): New function.
5385 (Fmake_byte_code): Use it. Don't purify here.
5386 * lread.c (read1): Use it as well to avoid extra allocation.
5387
5388 2012-06-11 Chong Yidong <cyd@gnu.org>
5389
5390 * image.c (imagemagick_load_image): Implement transparency.
5391
5392 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
5393
5394 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
5395 account for preceding backslashes. (Bug#11663)
5396
5397 2012-06-09 Chong Yidong <cyd@gnu.org>
5398
5399 * term.c: Support italics in capable terminals (Bug#9652).
5400 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
5401 (turn_on_face): Output using TS_enter_italic_mode if available.
5402 Don't handle unused blinking and alt-charset cases.
5403 (turn_off_face): Handle italic case; discard unused tty_blinking_p
5404 and tty_alt_charset_p cases.
5405 (tty_capable_p, init_tty): Support italics.
5406
5407 * termchar.h (struct tty_display_info): Add field for italics.
5408 Remove unused blink field.
5409
5410 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
5411 Handle slant.
5412
5413 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
5414 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
5415 tty_alt_charset_p. Add tty_italic_p.
5416
5417 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
5418
5419 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
5420 dbus_type_is_basic if available.
5421 (xd_extract_signed, xd_extract_unsigned): Rename from
5422 extract_signed and extract_unsigned, respectively. Adapt callers.
5423
5424 2012-06-09 Chong Yidong <cyd@gnu.org>
5425
5426 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
5427
5428 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
5429 case (Bug#9752).
5430
5431 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
5432
5433 * xdisp.c (vmessage): Treat frame message as multibyte.
5434 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
5435 would generate the diagnostic "Making \302\247 buffer-local while
5436 let-bound!".
5437
5438 2012-06-08 Eli Zaretskii <eliz@gnu.org>
5439
5440 * dispnew.c (showing_window_margins_p): Undo last change, which
5441 was done due to an inadvertent commit.
5442 (adjust_frame_glyphs_for_frame_redisplay): Do call
5443 showing_window_margins_p.
5444
5445 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
5446
5447 * eval.c (Fmake_var_non_special): New primitive.
5448 (syms_of_eval): Defsubr it.
5449 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
5450
5451 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
5452
5453 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
5454 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
5455
5456 2012-06-08 Eli Zaretskii <eliz@gnu.org>
5457
5458 * alloc.c (allocate_vectorlike): Fix last change.
5459
5460 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
5461
5462 Block-based vector allocation of small vectors.
5463 * lisp.h (struct vectorlike_header): New field `nbytes',
5464 adjust comment accordingly.
5465 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
5466 to denote vector blocks. Adjust users (live_vector_p,
5467 mark_maybe_pointer, valid_lisp_object_p) accordingly.
5468 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
5469 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
5470 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
5471 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
5472 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
5473 (roundup_size): New constant.
5474 (struct vector_block): New data type.
5475 (vector_blocks, vector_free_lists, zero_vector): New variables.
5476 (all_vectors): Rename to `large_vectors'.
5477 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
5478 (sweep_vectors): New functions.
5479 (allocate_vectorlike): Return `zero_vector' as the only vector of
5480 0 items. Allocate new vector from block if vector size is less than
5481 or equal to VBLOCK_BYTES_MAX.
5482 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
5483 (init_alloc_once): Add call to init_vectors.
5484
5485 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
5486
5487 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
5488
5489 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
5490
5491 * doprnt.c (doprnt): Truncate multibyte char correctly.
5492 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
5493 would mishandle a string argument "Xc" if X was a multibyte
5494 character of length 2: it would truncate after X's first byte
5495 rather than including all of X.
5496
5497 2012-06-06 Chong Yidong <cyd@gnu.org>
5498
5499 * buffer.c (word_wrap): Doc fix.
5500
5501 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
5502
5503 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
5504
5505 2012-06-03 Glenn Morris <rgm@gnu.org>
5506
5507 * xdisp.c (tool-bar-style): Doc fix.
5508
5509 2012-06-03 Ulrich Müller <ulm@gentoo.org>
5510
5511 * Makefile.in (PAXCTL): Define.
5512 (temacs$(EXEEXT)): Disable memory randomization for the temacs
5513 binary via PaX flags if the paxctl utility is available.
5514 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
5515 Restore PaX flags to their default. (Bug#11398)
5516
5517 2012-06-03 Chong Yidong <cyd@gnu.org>
5518
5519 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
5520 buffer (Bug#11226).
5521
5522 2012-06-03 Chong Yidong <cyd@gnu.org>
5523
5524 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
5525 (note_mode_line_or_margin_highlight): If there is no help echo,
5526 use mode-line-default-help-echo. Handle the case where the mouse
5527 position is past the end of the mode line string.
5528
5529 * buffer.c (buffer_local_value_1): New function, split from
5530 Fbuffer_local_value; can return Qunbound.
5531 (Fbuffer_local_value): Use it.
5532 (Vmode_line_format): Docstring tweaks.
5533
5534 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
5535
5536 * sysdep.c (system_process_attributes): Improve comment.
5537
5538 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5539
5540 * keyboard.c: Export real-this-command to Elisp.
5541 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
5542 and DEFVAR it. Update all users.
5543
5544 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
5545
5546 * minibuf.c (Fassoc_string): Remove duplicate declaration.
5547
5548 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
5549 Convert pctcpu and pctmem to Lisp float properly.
5550 Let the compiler fold better, as 100.0/0x8000 is exact.
5551
5552 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
5553
5554 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
5555 cons_block.
5556
5557 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
5558
5559 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
5560
5561 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
5562
5563 For a 'struct window', replace some Lisp_Object fields to
5564 bitfields where appropriate, remove unused fields.
5565 * window.h (struct window): Remove unused 'last_mark_x' and
5566 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
5567 change it's type from Lisp_Object to bitfield.
5568 Change type of 'force_start', 'optional_new_start',
5569 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
5570 fields from Lisp_Object to bitfield. Adjust users accordingly.
5571
5572 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
5573
5574 Pacify gcc -Wdouble-precision when using Xaw.
5575 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
5576 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
5577 Use 'float' consistently, rather than 'float' in most places
5578 and 'double' in a couple of places.
5579
5580 2012-05-31 Eli Zaretskii <eliz@gnu.org>
5581
5582 * xdisp.c (handle_stop): Detect whether we have overlay strings
5583 loaded by testing it->current.overlay_string_index to be
5584 non-negative, instead of checking whether n_overlay_strings is
5585 positive. (Bug#11587)
5586
5587 2012-05-31 Chong Yidong <cyd@gnu.org>
5588
5589 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
5590
5591 * doc.c (Fsubstitute_command_keys): Doc fix.
5592
5593 2012-05-31 Eli Zaretskii <eliz@gnu.org>
5594
5595 * search.c (search_buffer): Remove calls to
5596 r_alloc_inhibit_buffer_relocation, as it is now called by
5597 maybe_unify_char, which was the cause of relocation of buffer text
5598 in bug#11519.
5599
5600 2012-05-31 Eli Zaretskii <eliz@gnu.org>
5601
5602 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
5603 for the duration of call to load_charset, to avoid problems with
5604 callers of maybe_unify_char that access buffer text through C
5605 pointers.
5606
5607 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
5608 decrement the inhibition flag, instead of just setting or
5609 resetting it.
5610
5611 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
5612
5613 Remove obsolete '#define static' cruft.
5614 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
5615 This #undef was "temporary" in 2000; it is no longer needed
5616 now that '#define static' has gone away.
5617 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
5618 (gray_bitmap_bits): Remove; no longer needed.
5619 All uses replaced with definiens.
5620 * xterm.c: Include "bitmaps/gray.xbm".
5621
5622 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
5623
5624 Clean up __executable_start, monstartup when --enable-profiling.
5625 The following changes affect the code only when profiling.
5626 * dispnew.c (__executable_start): Rename from safe_bcopy.
5627 Define only on platforms that need it.
5628 * emacs.c: Include <sys/gmon.h> when profiling.
5629 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
5630 (__executable_start): Remove decl, since lisp.h does it now.
5631 (safe_bcopy): Remove decl; no longer has that name.
5632 (main): Coalesce #if into single bit of code, for simplicity.
5633 Cast pointers to uintptr_t, since standard libraries want integers
5634 and not pointers.
5635 * lisp.h (__executable_start): New decl.
5636
5637 2012-05-31 Glenn Morris <rgm@gnu.org>
5638
5639 * image.c (Fimagemagick_types): Doc fix.
5640
5641 2012-05-30 Jim Meyering <meyering@redhat.com>
5642
5643 * callproc.c (Fcall_process_region): Include directory component
5644 in mkstemp error message (Bug#11586).
5645
5646 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
5647
5648 * alloc.c, lisp.h (make_pure_vector): Now static.
5649
5650 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5651
5652 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
5653 Move to byte-run.el.
5654 (Fautoload): Do the hash-doc more carefully.
5655 * data.c (Fdefalias): Purify definition, except for keymaps.
5656 (Qdefun): Move from eval.c.
5657 * lisp.h (Qdefun): Remove.
5658 * lread.c (read1): Tiny simplification.
5659
5660 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
5661
5662 Do not create empty overlays with the evaporate property (Bug#9642).
5663 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
5664 Bug#9642, but explicitly check that the buffer the overlay would
5665 be moved to is live and rearrange lines to make sure that errors
5666 will not put the overlay in an inconsistent state.
5667 (Fdelete_overlay): Cosmetics.
5668
5669 2012-05-28 Eli Zaretskii <eliz@gnu.org>
5670
5671 * w32term.c (my_bring_window_to_top): New function.
5672 (x_raise_frame): Use handle returned by DeferWindowPos, which
5673 could be different from the original one.
5674 Call my_bring_window_to_top instead of my_set_foreground_window.
5675 (Bug#11513)
5676
5677 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
5678 by calling BringWindowToTop.
5679
5680 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
5681 (WM_EMACS_END): Increase by one.
5682
5683 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
5684
5685 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
5686 This avoids undefined behavior that might cause the eassert
5687 to not catch an out-of-range value.
5688
5689 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
5690
5691 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
5692 Update dependencies.
5693
5694 2012-05-27 Eli Zaretskii <eliz@gnu.org>
5695
5696 * bidi.c (bidi_mirror_char): Fix last change.
5697
5698 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
5699
5700 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
5701 when referring to sectname field in printf format.
5702
5703 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
5704
5705 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
5706 Only r_alloc_inhibit_buffer_relocation needed to be added;
5707 the others were already declared.
5708
5709 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
5710 before checking whether it's out of range. Put the check inside
5711 eassert. See
5712 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
5713
5714 2012-05-27 Ken Brown <kbrown@cornell.edu>
5715
5716 * callproc.c (Fcall_process): Restore a line that was accidentally
5717 commented out in the 2011-02-13 change (bug#11547).
5718
5719 2012-05-27 Eli Zaretskii <eliz@gnu.org>
5720
5721 * lisp.h [REL_ALLOC]: Add prototypes for external functions
5722 defined on ralloc.c.
5723
5724 * buffer.c [REL_ALLOC]: Remove prototypes of
5725 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
5726 they are now on lisp.h.
5727
5728 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
5729
5730 * search.c (search_buffer): Use it to inhibit relocation of buffer
5731 text while re_search_2 is doing its job, because re_search_2 is
5732 passed C pointers to buffer text. (Bug#11519)
5733
5734 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
5735 Update value to 24.
5736
5737 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
5738 state after an additional call to move_it_in_display_line_to, keep
5739 the values of it->max_ascent and it->max_descent found for the
5740 entire line.
5741 (pos_visible_p): Revert the comparison against bottom_y to what it
5742 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
5743 (Bug#11464)
5744
5745 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
5746
5747 Fix coding-related core dumps with gcc -ftrapv.
5748 The code was computing A - B, where A and B are pointers, and B is
5749 random garbage. This can lead to core dumps on platforms that
5750 have special pointer registers, and it also leads to core dumps on
5751 x86-64 when compiled with gcc -ftrapv. The fix is to compute
5752 A - B only when B is initialized properly.
5753 * coding.c (coding_set_source, coding_set_destination): Return void.
5754 (coding_change_source, coding_change_destinations): New functions,
5755 with the old behaviors of coding_set_source and coding_set_destination.
5756 All callers that need an offset changed to use these new functions.
5757
5758 2012-05-26 Glenn Morris <rgm@gnu.org>
5759
5760 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
5761
5762 2012-05-26 Eli Zaretskii <eliz@gnu.org>
5763
5764 Extend mouse support on W32 text-mode console.
5765 * xdisp.c (draw_row_with_mouse_face):
5766 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
5767
5768 * w32console.c: Include window.h.
5769 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
5770 New functions.
5771 (initialize_w32_display): Initialize mouse-highlight data.
5772
5773 * w32inevt.c: Include termchar.h and window.h.
5774 (do_mouse_event): Support mouse-autoselect-window. When the mouse
5775 moves, call note_mouse_highlight. If help_echo changed, call
5776 gen_help_event to produce help-echo message in the echo area.
5777 Call clear_mouse_face if mouse_face_hidden is set in the mouse
5778 highlight info.
5779
5780 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
5781
5782 * lread.c (read1): Simplify slightly to avoid an overflow warning
5783 with GCC 4.7.0 on x86-64.
5784
5785 2012-05-26 Eli Zaretskii <eliz@gnu.org>
5786
5787 * bidi.c (bidi_mirror_char): Revert last change: an int is
5788 definitely wide enough here.
5789
5790 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
5791
5792 Fix integer width and related bugs (Bug#9874).
5793 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
5794 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
5795 (string_bytes, check_sblock, allocate_string_data):
5796 (compact_small_strings, Fmake_bool_vector, make_string)
5797 (make_unibyte_string, make_multibyte_string)
5798 (make_string_from_bytes, make_specified_string)
5799 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
5800 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
5801 (mark_vectorlike):
5802 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5803 (allocate_pseudovector):
5804 Use int, not EMACS_INT, where int is wide enough.
5805 (inhibit_garbage_collection, Fgarbage_collect):
5806 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5807 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
5808 int might not be wide enough.
5809 (bidi_cache_search, bidi_cache_find, bidi_init_it)
5810 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
5811 (bidi_at_paragraph_end, bidi_find_paragraph_start)
5812 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
5813 (bidi_level_of_next_char, bidi_move_to_visually_next):
5814 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5815 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
5816 (Fkill_buffer, Fset_buffer_major_mode)
5817 (advance_to_char_boundary, Fbuffer_swap_text)
5818 (Fset_buffer_multibyte, overlays_at, overlays_in)
5819 (overlay_touches_p, struct sortvec, record_overlay_string)
5820 (overlay_strings, recenter_overlay_lists)
5821 (adjust_overlays_for_insert, adjust_overlays_for_delete)
5822 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
5823 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
5824 (Foverlay_recenter, last_overlay_modification_hooks_used)
5825 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
5826 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5827 (validate_region): Omit unnecessary test for b <= e,
5828 since that's guaranteed by the previous test.
5829 (adjust_overlays_for_delete): Avoid pos + length overflow.
5830 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
5831 (report_overlay_modification):
5832 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5833 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
5834 Omit pointer cast, which isn't needed anyway, and doesn't work
5835 after the EMACS_INT -> ptrdiff_t change.
5836 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
5837 * buffer.h: Adjust decls to match defn changes elsewhere.
5838 (struct buffer_text, struct buffer):
5839 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5840 Use EMACS_INT, not int, where int might not be wide enough.
5841 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
5842 not int, to avoid needless 32-bit limit on 64-bit hosts.
5843 (exec_byte_code): Use tighter memory-full test, one that checks
5844 for alloca overflow. Don't compute the address of the object just
5845 before an array, as that's not portable. Use EMACS_INT, not
5846 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
5847 * callint.c (Fcall_interactively):
5848 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5849 * callproc.c (call_process_kill, Fcall_process):
5850 Don't assume pid_t fits into an Emacs fixnum.
5851 (call_process_cleanup, Fcall_process, child_setup):
5852 Don't assume pid_t fits into int.
5853 (call_process_cleanup, Fcall_process, delete_temp_file)
5854 (Fcall_process_region):
5855 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5856 (Fcall_process): Simplify handling of volatile integers.
5857 Use int, not EMACS_INT, where int will do.
5858 * casefiddle.c (casify_object, casify_region, operate_on_word)
5859 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
5860 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5861 (casify_object): Avoid integer overflow when overallocating buffer.
5862 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
5863 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
5864 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
5865 * category.h (CATEGORYP): Don't assume arg is nonnegative.
5866 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
5867 integers are now checked earlier. All uses replaced with XINT.
5868 (ccl_driver):
5869 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5870 For CCL_MapSingle, check that content and value are in int range.
5871 (ccl_driver, Fregister_code_conversion_map):
5872 Check that Vcode_version_map_vector is a vector.
5873 (resolve_symbol_ccl_program): Check that vector header is in range.
5874 Always copy the vector, so that we can check its contents reliably
5875 now rather than having to recheck each instruction as it's being
5876 executed. Check that vector words fit in 'int'.
5877 (ccl_get_compiled_code, Fregister_ccl_program)
5878 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
5879 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
5880 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
5881 contents are in range.
5882 (Fccl_execute_on_string): Check that status is in range.
5883 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
5884 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
5885 Accept and return EMACS_INT, not int, because callers can pass values
5886 out of 'int' range.
5887 (c_string_width, strwidth, lisp_string_width, chars_in_text)
5888 (multibyte_chars_in_text, parse_str_as_multibyte)
5889 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
5890 (str_as_unibyte, str_to_unibyte, string_count_byte8)
5891 (string_escape_byte8, Fget_byte):
5892 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5893 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
5894 avoid mishandling large integers.
5895 * character.h: Adjust decls to match defn changes elsewhere.
5896 * charset.c (load_charset_map_from_file, find_charsets_in_text)
5897 (Ffind_charset_region):
5898 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5899 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
5900 (load_charset_map_from_vector, Fdefine_charset_internal):
5901 Don't assume fixnum fits in int.
5902 (load_charset_map_from_vector, Fmap_charset_chars):
5903 Remove now-unnecessary CHECK_NATNUMs.
5904 (Fdefine_charset_internal): Check ranges here, more carefully.
5905 Don't rely on undefined behavior with signed left shift overflow.
5906 Don't assume unsigned int fits into fixnum, or that fixnum fits
5907 into unsigned int. Don't require max_code to be a valid fixnum;
5908 that's not true for gb10830 4-byte on a 32-bit host. Allow
5909 invalid_code to be a cons, for the same reason. Require code_offset
5910 to be a character. Avoid int overflow if max_char is close
5911 to INT_MAX.
5912 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
5913 this is intended anyway and avoids some undefined behavior.
5914 (load_charset_map): Pass unsigned, not int, as 2nd arg of
5915 INDEX_TO_CODE_POINT, as that's what it expects.
5916 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
5917 * charset.h (DECODE_CHAR): Return int, not unsigned;
5918 this is what was intended anyway, and it avoids undefined behavior.
5919 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
5920 integer-overflow issues.
5921 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
5922 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
5923 where the argument is EMACS_INT, and this behavior is not intended.
5924 * chartab.c (Fmake_char_table, Fset_char_table_range)
5925 (uniprop_get_decoder, uniprop_get_encoder):
5926 Don't assume fixnum fits in int.
5927 * cmds.c (move_point): New function, that does the gist of
5928 Fforward_char and Fbackward_char, but does so while checking
5929 for integer overflow more accurately.
5930 (Fforward_char, Fbackward_char): Use it.
5931 (Fforward_line, Fend_of_line, internal_self_insert)
5932 (internal_self_insert):
5933 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5934 Fix a FIXME, by checking for integer overflow when calculating
5935 target_clm and actual_clm.
5936 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
5937 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
5938 (ASSURE_DESTINATION, coding_alloc_by_realloc)
5939 (coding_alloc_by_making_gap, alloc_destination)
5940 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
5941 (encode_coding_utf_16, detect_coding_emacs_mule)
5942 (decode_coding_emacs_mule, encode_coding_emacs_mule)
5943 (detect_coding_iso_2022, decode_coding_iso_2022)
5944 (encode_invocation_designation, encode_designation_at_bol)
5945 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
5946 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
5947 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
5948 (encode_coding_ccl, encode_coding_raw_text)
5949 (detect_coding_charset, decode_coding_charset)
5950 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
5951 (produce_composition, produce_charset, produce_annotation)
5952 (decode_coding, handle_composition_annotation)
5953 (handle_charset_annotation, consume_chars, decode_coding_gap)
5954 (decode_coding_object, encode_coding_object, detect_coding_system)
5955 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
5956 (code_convert_region, code_convert_string)
5957 (Fdefine_coding_system_internal)
5958 (coding_set_source, coding_set_destination):
5959 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5960 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
5961 (Fdefine_coding_system_internal):
5962 Don't assume fixnums fit in int.
5963 (decode_coding_gap, decode_coding_object, encode_coding_object)
5964 (Fread_coding_system, Fdetect_coding_region)
5965 (Funencodable_char_position, Fcheck_coding_systems_region)
5966 (get_translation, handle_composition_annotation, consume_chars):
5967 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5968 (consume_chars): Rewrite to not calculate an address outside buffer.
5969 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
5970 Don't access memory outside of the args array.
5971 (Fdefine_coding_system_internal): Check for charset-id overflow.
5972 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
5973 result of ENCODE_CHAR.
5974 * coding.h: Adjust decls to match defn changes elsewhere.
5975 (struct coding_system):
5976 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5977 * composite.c (get_composition_id, find_composition)
5978 (run_composition_function, update_compositions)
5979 (compose_text, composition_gstring_put_cache)
5980 (composition_gstring_p, composition_gstring_width)
5981 (fill_gstring_header, fill_gstring_body, autocmp_chars)
5982 (composition_compute_stop_pos, composition_reseat_it)
5983 (composition_update_it, struct position_record)
5984 (find_automatic_composition, composition_adjust_point)
5985 (Fcomposition_get_gstring, Ffind_composition_internal):
5986 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5987 (update_compositions):
5988 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5989 * composite.h: Adjust decls to match defn changes elsewhere.
5990 (struct composition):
5991 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5992 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
5993 Do not attempt to compute the address of the object just before a
5994 buffer; this is not portable.
5995 (Faref, Faset):
5996 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5997 (Faset): Use int, not EMACS_INT, where int is wide enough.
5998 (Fstring_to_number): Don't assume fixnums fit in int.
5999 (Frem): Don't assume arg is nonnegative.
6000 * dbusbind.c (xd_append_arg): Check for integers out of range.
6001 (Fdbus_call_method): Don't overflow the timeout int.
6002 (extract_signed, extract_unsigned): New functions.
6003 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
6004 (xd_get_connection_references): Return ptrdiff_t, not int.
6005 All uses changed.
6006 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
6007 (xd_read_message_1):
6008 Use int, not unsigned, where the dbus API uses int.
6009 (Fdbus_message_internal): Don't overflow mtype.
6010 (syms_of_dbusbind): Allocate right-sized buffer for integers.
6011 * dired.c (directory_files_internal, file_name_completion, scmp)
6012 (file_name_completion_stat):
6013 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6014 (file_name_completion): Don't overflow matchcount.
6015 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
6016 * dispextern.h: Adjust decls to match defn changes elsewhere.
6017 (struct text_pos, struct glyph, struct bidi_saved_info)
6018 (struct bidi_string_data, struct bidi_it, struct composition_it)
6019 (struct it):
6020 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6021 (struct display_pos, struct composition_it, struct it):
6022 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6023 * dispnew.c (increment_matrix_positions)
6024 (increment_row_positions, mode_line_string)
6025 (marginal_area_string):
6026 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6027 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
6028 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6029 (duration_to_sec_usec): New function, to check for overflow better.
6030 (Fsleep_for, sit_for): Use it.
6031 * doc.c (get_doc_string, store_function_docstring):
6032 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6033 (get_doc_string, Fsnarf_documentation):
6034 Use int, not EMACS_INT, where int is wide enough.
6035 (get_doc_string):
6036 Use SAFE_ALLOCA, not alloca.
6037 Check for overflow when converting EMACS_INT to off_t.
6038 * doprnt.c (doprnt):
6039 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6040 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
6041 Don't assume uid_t fits into fixnum.
6042 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
6043 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
6044 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
6045 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
6046 (general_insert_function)
6047 (Finsert_char, make_buffer_string, make_buffer_string_both)
6048 (update_buffer_properties, Fbuffer_substring)
6049 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
6050 (Fsubst_char_in_region, check_translation)
6051 (Ftranslate_region_internal, save_restriction_restore, Fformat)
6052 (transpose_markers, Ftranspose_regions):
6053 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6054 (clip_to_bounds): Move to lisp.h as an inline function).
6055 (Fconstrain_to_field): Don't assume integers are nonnegative.
6056 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
6057 (Fsubst_char_in_region, Fsave_restriction):
6058 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6059 (Femacs_pid): Don't assume pid_t fits into fixnum.
6060 (lo_time): Use int, not EMACS_INT, when int suffices.
6061 (lisp_time_argument): Check for usec out of range.
6062 (Fencode_time): Don't assume fixnum fits in int.
6063 (Fuser_login_name, Fuser_full_name): Signal an error
6064 if a uid argument is out of range, rather than relying on
6065 undefined behavior.
6066 (Fformat_time_string): Remove now-unnecessary check.
6067 lisp_time_argument checks for out-of-range usec now.
6068 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
6069 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
6070 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
6071 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
6072 (init_cmdargs, Fdump_emacs):
6073 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6074 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
6075 the bottom (typically) 32 bits of the fixnum.
6076 * eval.c (specpdl_size, call_debugger):
6077 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6078 (when_entered_debugger, Fbacktrace_debug):
6079 Don't assume fixnum can fit in int.
6080 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
6081 the object just before a buffer; this is not portable.
6082 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
6083 (grow_specpdl, unbind_to):
6084 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6085 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
6086 (grow_specpdl): Simplify allocation by using xpalloc.
6087 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
6088 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
6089 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
6090 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6091 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
6092 (a_write, e_write):
6093 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6094 (Fcopy_file, non_regular_nbytes, read_non_regular)
6095 (Finsert_file_contents):
6096 Use int, not EMACS_INT, where int is wide enough.
6097 (READ_BUF_SIZE): Verify that it fits in int.
6098 (Finsert_file_contents): Check that counts are in proper range,
6099 rather than assuming fixnums fit into ptrdiff_t etc.
6100 Don't assume fixnums fit into int.
6101 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
6102 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
6103 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
6104 (string_char_to_byte, string_byte_to_char)
6105 (string_make_multibyte, string_to_multibyte)
6106 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
6107 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
6108 (substring_both, Fdelete, internal_equal, Ffillarray)
6109 (Fclear_string, mapcar1)
6110 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
6111 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
6112 (larger_vector, make_hash_table, maybe_resize_hash_table)
6113 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
6114 (Fmaphash, secure_hash):
6115 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6116 (concat): Check for string index and length overflow.
6117 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
6118 (Frequire):
6119 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6120 (larger_vector): New API (vec, incr_min, size_max) replaces old
6121 one (vec, new_size, init). This catches size overflow.
6122 INIT was removed because it was always Qnil.
6123 All callers changed.
6124 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
6125 the upper bound on a hash table index size.
6126 (make_hash_table, maybe_resize_hash_table): Use it.
6127 (secure_hash): Computer start_byte and end_byte only after
6128 they're known to be in ptrdiff_t range.
6129 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
6130 (Ffont_get_glyphs, Ffont_at):
6131 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6132 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
6133 (Flist_fonts, Fopen_font):
6134 Don't assume fixnum can fit in int.
6135 (check_gstring): Don't assume index can fit in int.
6136 (font_match_p): Check that fixnum is a character, not a nonnegative
6137 fixnum, since the later code needs to stuff it into an int.
6138 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
6139 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
6140 conversion overflow issues.
6141 (Fopen_font): Check for integer out of range.
6142 (Ffont_get_glyphs): Don't assume index can fit in int.
6143 * font.h: Adjust decls to match defn changes elsewhere.
6144 * fontset.c (reorder_font_vector): Redo score calculation to avoid
6145 integer overflow.
6146 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
6147 printmax_t, where ptrdiff_t is wide enough.
6148 (Finternal_char_font):
6149 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6150 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
6151 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
6152 (Fset_frame_position, x_set_frame_parameters)
6153 (x_set_line_spacing, x_set_border_width)
6154 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
6155 Check that fixnums are in proper range for system types.
6156 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
6157 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6158 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
6159 Use SAFE_ALLOCA_LISP, not alloca.
6160 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
6161 intptr_t is wide enough.
6162 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
6163 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
6164 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
6165 Check for fixnum out of range.
6166 * ftfont.c (ftfont_list): Don't assume index fits in int.
6167 Check that fixnums are in proper range for system types.
6168 (ftfont_shape_by_flt):
6169 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6170 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
6171 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6172 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
6173 Check that fixnums are in proper range for system types.
6174 * gnutls.h: Adjust decls to match defn changes elsewhere.
6175 * gtkutil.c (xg_dialog_run):
6176 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6177 (update_frame_tool_bar):
6178 Check that fixnums are in proper range for system types.
6179 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
6180 (lookup_image): Check that fixnums are in range for system types.
6181 * indent.c (last_known_column, last_known_column_point):
6182 (current_column_bol_cache):
6183 (skip_invisible, current_column, check_display_width):
6184 (check_display_width, scan_for_column, current_column_1)
6185 (Findent_to, Fcurrent_indentation, position_indentation)
6186 (indented_beyond_p, Fmove_to_column, compute_motion):
6187 (Fcompute_motion, Fvertical_motion):
6188 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6189 (last_known_column_modified): Use EMACS_INT, not int.
6190 (check_display_width):
6191 (Fcompute_motion):
6192 Check that fixnums and floats are in proper range for system types.
6193 (compute_motion): Don't assume index or fixnum fits in int.
6194 (compute_motion, Fcompute_motion):
6195 Use int, not EMACS_INT, when it is wide enough.
6196 (vmotion): Omit local var start_hpos that is always 0; that way
6197 we don't need to worry about overflow in expressions involving it.
6198 * indent.h: Adjust decls to match defn changes elsewhere.
6199 (struct position):
6200 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6201 Use int, not EMACS_INT, where int is wide enough.
6202 Remove unused members ovstring_chars_done and tab_offset;
6203 all uses removed.
6204 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
6205 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
6206 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
6207 (make_gap, copy_text, insert, insert_and_inherit)
6208 (insert_before_markers, insert_before_markers_and_inherit)
6209 (insert_1, count_combining_before, count_combining_after)
6210 (insert_1_both, insert_from_string)
6211 (insert_from_string_before_markers, insert_from_string_1)
6212 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
6213 (adjust_after_replace, adjust_after_insert, replace_range)
6214 (replace_range_2, del_range, del_range_1, del_range_byte)
6215 (del_range_both, del_range_2, modify_region)
6216 (prepare_to_modify_buffer, signal_before_change)
6217 (signal_after_change, Fcombine_after_change_execute):
6218 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6219 * intervals.c (traverse_intervals, rotate_right, rotate_left)
6220 (balance_an_interval, split_interval_right, split_interval_left)
6221 (find_interval, next_interval, update_interval)
6222 (adjust_intervals_for_insertion, delete_node, delete_interval)
6223 (interval_deletion_adjustment, adjust_intervals_for_deletion)
6224 (static_offset_intervals, offset_intervals)
6225 (merge_interval_right, merge_interval_left, make_new_interval)
6226 (graft_intervals_into_buffer, temp_set_point_both)
6227 (temp_set_point, set_point, adjust_for_invis_intang)
6228 (set_point_both, move_if_not_intangible, get_property_and_range)
6229 (get_local_map, copy_intervals, copy_intervals_to_string)
6230 (compare_string_intervals, set_intervals_multibyte_1):
6231 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6232 * intervals.h: Adjust decls to match defn changes elsewhere.
6233 (struct interval):
6234 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6235 * keyboard.c (this_command_key_count, this_single_command_key_start)
6236 (before_command_key_count, before_command_echo_length, echo_now)
6237 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
6238 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
6239 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
6240 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
6241 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6242 (last_non_minibuf_size, last_point_position, echo_truncate)
6243 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
6244 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
6245 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
6246 (stuff_buffered_input):
6247 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6248 (last_auto_save, command_loop_1, read_char):
6249 Use EMACS_INT, not int, to avoid integer overflow.
6250 (record_char): Avoid overflow in total_keys computation.
6251 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
6252 * keyboard.h: Adjust decls to match defn changes elsewhere.
6253 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
6254 (Fkey_description, Fdescribe_vector, Flookup_key):
6255 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6256 (click_position): New function, to check that positions are in range.
6257 (Fcurrent_active_maps):
6258 (describe_command):
6259 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6260 (Faccessible_keymaps, Fkey_description):
6261 (preferred_sequence_p):
6262 Don't assume fixnum can fit into int.
6263 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
6264 Check for integer overflow in size calculations.
6265 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
6266 avoid mishandling large integers.
6267 * lisp.h: Adjust decls to match defn changes elsewhere.
6268 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
6269 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
6270 (struct Lisp_Marker):
6271 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6272 (clip_to_bounds): Now an inline function, moved here from editfns.c.
6273 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
6274 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
6275 All callers changed.
6276 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
6277 Assume the arg has valid form, since it always does.
6278 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
6279 unsigned integer system type.
6280 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
6281 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
6282 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6283 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
6284 (duration_to_sec_usec): New decl.
6285 * lread.c (read_from_string_index, read_from_string_index_byte)
6286 (read_from_string_limit, readchar, unreadchar, openp)
6287 (read_internal_start, read1, oblookup):
6288 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6289 (Fload, readevalloop, Feval_buffer, Feval_region):
6290 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6291 (openp): Check for out-of-range argument to 'access'.
6292 (read1): Use int, not EMACS_INT, where int is wide enough.
6293 Don't assume fixnum fits into int.
6294 Fix off-by-one error that can read outside a buffer.
6295 (read_filtered_event): Use duration_to_sec_usec
6296 to do proper overflow checking on durations.
6297 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
6298 in size calculation.
6299 (Fexecute_kbd_macro):
6300 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6301 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
6302 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
6303 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
6304 (set_marker_both, set_marker_restricted_both, marker_position)
6305 (marker_byte_position, Fbuffer_has_markers_at):
6306 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6307 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
6308 * menu.c (ensure_menu_items): Rename from grow_menu_items.
6309 It now merely ensures that the menu is large enough, without
6310 necessarily growing it, as this avoids some integer overflow issues.
6311 All callers changed.
6312 (keymap_panes, parse_single_submenu, Fx_popup_menu):
6313 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6314 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
6315 Use SAFE_ALLOCA_LISP, not alloca.
6316 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
6317 to EMACS_INT. Check that fixnums are in proper range for system types.
6318 * minibuf.c (minibuf_prompt_width, string_to_object)
6319 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
6320 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
6321 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6322 (get_minibuffer, read_minibuf_unwind):
6323 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6324 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
6325 this simplifies overflow checking. All callers changed.
6326 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
6327 (Ftest_completion):
6328 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6329 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
6330 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
6331 Check that fixnums are in proper range for system types.
6332 (Fx_create_frame, Fx_show_tip):
6333 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6334 * nsfont.m (ns_findfonts, nsfont_list_family):
6335 Don't assume fixnum fits in long.
6336 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
6337 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6338 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
6339 wide enough.
6340 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
6341 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6342 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
6343 (PRINTDECLARE, PRINTPREPARE):
6344 (strout, print_string):
6345 (print, print_preprocess, print_check_string_charset_prop)
6346 (print_object):
6347 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6348 (PRINTDECLARE):
6349 (temp_output_buffer_setup, Fprin1_to_string, print_object):
6350 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6351 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
6352 (printchar, strout): Use xpalloc to catch size calculation overflow.
6353 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
6354 (print_error_message): Use SAFE_ALLOCA, not alloca.
6355 (print_object): Use int, not EMACS_INT, where int is wide enough.
6356 (print_depth, new_backquote_output, print_number_index):
6357 Use ptrdiff_t, not int, where int might not be wide enough.
6358 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
6359 (Fset_process_window_size, Fformat_network_address)
6360 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
6361 (sigchld_handler):
6362 Check that fixnums are in proper range for system types.
6363 (Fsignal_process): Simplify by avoiding a goto.
6364 Check for process-ids out of pid_t range rather than relying on
6365 undefined behavior.
6366 (process_tick, update_tick): Use EMACS_INT, not int.
6367 (Fformat_network_address, read_process_output, send_process)
6368 (Fprocess_send_region, status_notify):
6369 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6370 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
6371 (wait_reading_process_output, read_process_output, exec_sentinel):
6372 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6373 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
6374 (Faccept_process_output): Use duration_to_sec_usec to do proper
6375 overflow checking on durations.
6376 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
6377 Don't assume pid_t fits in int.
6378 * process.h (struct Lisp_Process): Members tick and update_tick
6379 are now of type EMACS_INT, not int.
6380 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
6381 configured --with-wide-int.
6382 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
6383 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
6384 * search.c (looking_at_1, string_match_1):
6385 (fast_string_match, fast_c_string_match_ignore_case)
6386 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
6387 (scan_newline, find_before_next_newline, search_command)
6388 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
6389 (set_search_regs, wordify):
6390 (Freplace_match):
6391 (Fmatch_data):
6392 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6393 (string_match_1, search_buffer, set_search_regs):
6394 (Fmatch_data):
6395 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6396 (wordify): Check for overflow in size calculation.
6397 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
6398 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
6399 Check that fixnums are in proper range for system types.
6400 * sound.c (struct sound_device)
6401 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
6402 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6403 (Fplay_sound_internal):
6404 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6405 * syntax.c (struct lisp_parse_state, find_start_modiff)
6406 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
6407 (Fparse_partial_sexp):
6408 Don't assume fixnums can fit in int.
6409 (struct lisp_parse_state, find_start_pos, find_start_value)
6410 (find_start_value_byte, find_start_begv)
6411 (update_syntax_table, char_quoted, dec_bytepos)
6412 (find_defun_start, prev_char_comend_first, back_comment):
6413 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
6414 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
6415 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6416 (Finternal_describe_syntax_value): Check that match_lisp is a
6417 character, not an integer, since the code stuffs it into int.
6418 (scan_words, scan_sexps_forward):
6419 Check that fixnums are in proper range for system types.
6420 (Fforward_word):
6421 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6422 (scan_sexps_forward):
6423 Use CHARACTERP, not INTEGERP, since the value must fit into int.
6424 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
6425 * syntax.h: Adjust decls to match defn changes elsewhere.
6426 (struct gl_state_s):
6427 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6428 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
6429 MOST_POSITIVE_FIXNUM.
6430 * sysdep.c (wait_for_termination_1, wait_for_termination)
6431 (interruptible_wait_for_termination, mkdir):
6432 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
6433 (emacs_read, emacs_write):
6434 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6435 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
6436 and double all fit in int.
6437 * term.c (set_tty_color_mode):
6438 Check that fixnums are in proper range for system types.
6439 * termhooks.h (struct input_event):
6440 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6441 * textprop.c (validate_interval_range, interval_of)
6442 (Fadd_text_properties, set_text_properties_1)
6443 (Fremove_text_properties, Fremove_list_of_text_properties)
6444 (Ftext_property_any, Ftext_property_not_all)
6445 (copy_text_properties, text_property_list, extend_property_ranges)
6446 (verify_interval_modification):
6447 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6448 (Fnext_single_char_property_change)
6449 (Fprevious_single_char_property_change):
6450 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6451 (copy_text_properties):
6452 Check for integer overflow in index calculation.
6453 * undo.c (last_boundary_position, record_point, record_insert)
6454 (record_delete, record_marker_adjustment, record_change)
6455 (record_property_change):
6456 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6457 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
6458 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6459 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
6460 (Fx_hide_tip, Fx_file_dialog):
6461 * w32menu.c (set_frame_menubar):
6462 Use ptrdiff_t, not int, for consistency with rest of code.
6463 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
6464 (select_window, Fdelete_other_windows_internal)
6465 (window_scroll_pixel_based, window_scroll_line_based)
6466 (Frecenter, Fset_window_configuration):
6467 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6468 (Fset_window_hscroll, run_window_configuration_change_hook)
6469 (set_window_buffer, temp_output_buffer_show, scroll_command)
6470 (Fscroll_other_window, Frecenter):
6471 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6472 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
6473 Don't assume fixnum fits in int.
6474 (Fset_window_scroll_bars):
6475 Check that fixnums are in proper range for system types.
6476 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
6477 (string_pos, c_string_pos, number_of_chars, init_iterator)
6478 (in_ellipses_for_invisible_text_p, init_from_display_pos)
6479 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
6480 (compute_display_string_end, handle_face_prop)
6481 (face_before_or_after_it_pos, handle_invisible_prop)
6482 (handle_display_prop, handle_display_spec, handle_single_display_spec)
6483 (display_prop_intangible_p, string_buffer_position_lim)
6484 (string_buffer_position, handle_composition_prop, load_overlay_strings)
6485 (get_overlay_strings_1, get_overlay_strings)
6486 (iterate_out_of_display_property, forward_to_next_line_start)
6487 (back_to_previous_visible_line_start, reseat, reseat_to_string)
6488 (get_next_display_element, set_iterator_to_next)
6489 (get_visually_first_element, compute_stop_pos_backwards)
6490 (handle_stop_backwards, next_element_from_buffer)
6491 (move_it_in_display_line_to, move_it_in_display_line)
6492 (move_it_to, move_it_vertically_backward, move_it_by_lines)
6493 (add_to_log, message_dolog, message_log_check_duplicate)
6494 (message2, message2_nolog, message3, message3_nolog
6495 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
6496 (current_message_1, truncate_echo_area, truncate_message_1)
6497 (set_message, set_message_1, store_mode_line_noprop)
6498 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
6499 (text_outside_line_unchanged_p, check_point_in_composition)
6500 (reconsider_clip_changes)
6501 (redisplay_internal, set_cursor_from_row, try_scrolling)
6502 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
6503 (redisplay_window, find_last_unchanged_at_beg_row)
6504 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
6505 (trailing_whitespace_p, find_row_edges, display_line)
6506 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
6507 (display_mode_element, store_mode_line_string)
6508 (pint2str, pint2hrstr, decode_mode_spec)
6509 (display_count_lines, display_string, draw_glyphs)
6510 (x_produce_glyphs, x_insert_glyphs)
6511 (rows_from_pos_range, mouse_face_from_buffer_pos)
6512 (fast_find_string_pos, mouse_face_from_string_pos)
6513 (note_mode_line_or_margin_highlight, note_mouse_highlight):
6514 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6515 (safe_call, init_from_display_pos, handle_fontified_prop)
6516 (handle_single_display_spec, load_overlay_strings)
6517 (with_echo_area_buffer, setup_echo_area_for_printing)
6518 (display_echo_area, echo_area_display)
6519 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
6520 (update_tool_bar, hscroll_window_tree, redisplay_internal)
6521 (redisplay_window, dump_glyph_row, display_mode_line)
6522 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
6523 (handle_display_spec, display_prop_string_p):
6524 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6525 (handle_single_display_spec, build_desired_tool_bar_string)
6526 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
6527 (get_specified_cursor_type):
6528 Check that fixnums are in proper range for system types.
6529 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
6530 (Flookup_image_map):
6531 Don't assume fixnums fit in int.
6532 (compare_overlay_entries):
6533 Avoid mishandling comparisons due to subtraction overflow.
6534 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
6535 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
6536 (handle_tool_bar_click):
6537 Use int, not unsigned, since we prefer signed and the signedness
6538 doesn't matter here.
6539 (get_next_display_element, next_element_from_display_vector):
6540 Use int, not EMACS_INT, when int is wide enough.
6541 (start_hourglass): Use duration_to_sec_usec to do proper
6542 overflow checking on durations.
6543 * xfaces.c (Fbitmap_spec_p):
6544 Check that fixnums are in proper range for system types.
6545 (compare_fonts_by_sort_order):
6546 Avoid mishandling comparisons due to subtraction overflow.
6547 (Fx_family_fonts, realize_basic_faces):
6548 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6549 (Fx_family_fonts):
6550 Don't assume fixnum fits in int.
6551 Use SAFE_ALLOCA_LISP, not alloca.
6552 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
6553 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
6554 (face_at_buffer_position, face_for_overlay_string)
6555 (face_at_string_position):
6556 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6557 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
6558 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
6559 (Fx_show_tip):
6560 Check that fixnums are in proper range for system types.
6561 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
6562 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
6563 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6564 (Fx_change_window_property): Don't assume fixnums fit in int.
6565 * xfont.c (xfont_chars_supported):
6566 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6567 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
6568 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
6569 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6570 * xml.c (parse_region):
6571 * xrdb.c (magic_file_p):
6572 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6573 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
6574 (x_get_local_selection, x_reply_selection_request)
6575 (x_handle_selection_request, wait_for_property_change):
6576 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6577 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
6578 short is wide enough.
6579 (x_send_client_event): Don't assume fixnum fits in int.
6580 * xterm.c (x_x_to_emacs_modifiers):
6581 Don't assume EMACS_INT overflows nicely into int.
6582 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
6583 may come from Lisp.
6584 (handle_one_xevent): NATNUMP can eval its arg twice.
6585 (x_connection_closed):
6586 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6587 * xterm.h: Adjust decls to match defn changes elsewhere.
6588 (struct scroll_bar): Use struct vectorlike_header
6589 rather than rolling our own approximation.
6590 (SCROLL_BAR_VEC_SIZE): Remove; not used.
6591
6592 2012-05-25 Glenn Morris <rgm@gnu.org>
6593
6594 * lisp.mk (lisp): Update for more files being compiled now.
6595
6596 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6597
6598 * lread.c: Remove `read_pure' which makes no difference.
6599 (read_pure): Remove var.
6600 (unreadpure): Remove function.
6601 (readevalloop): Don't call read_list with -1 flag.
6602 (read1, read_vector): Don't test read_pure any more.
6603 (read_list): Simplify.
6604
6605 * fileio.c, character.h: Minor style tweaks.
6606
6607 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
6608
6609 * window.h (clip_changed): Remove useless declaration.
6610
6611 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
6612
6613 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
6614 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
6615
6616 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
6617
6618 Remove src/m/*.
6619 This directory predates autoconf and is no longer needed nowadays.
6620 Move its few remaining bits of functionality to where they're needed.
6621 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
6622 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
6623 * m/template.h: Remove.
6624 * Makefile.in (M_FILE): Remove. All uses removed.
6625 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
6626 * lisp.h (USE_LSB_TAG):
6627 * mem-limits.h (EXCEEDS_LISP_PTR):
6628 Use VAL_MAX, not VALBITS, in #if.
6629 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
6630 (EMACS_UINT): Define unconditionally now.
6631 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
6632 (BITS_PER_EMACS_INT): New constants, replacing
6633 what used to be in config.h, but not useful in #if.
6634 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
6635 define them any more.
6636 (VAL_MAX): New macro.
6637 (VALMASK): Use it.
6638 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
6639 BITS_PER_EMACS_INT, in #if.
6640 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
6641 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
6642 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
6643 * s/ms-w32.h (DATA_START):
6644 Move here from removed file m/intel386.h.
6645 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
6646 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
6647
6648 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
6649
6650 Assume C89 or later.
6651 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
6652 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
6653 (xrealloc):
6654 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
6655 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
6656 * textprop.c, tparam.c (NULL): Remove.
6657 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
6658 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
6659 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
6660 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
6661 * xterm.c (input_signal_count): Assume volatile works.
6662
6663 2012-05-21 Ken Brown <kbrown@cornell.edu>
6664
6665 * xgselect.c (xg_select): Fix first argument in call to 'select'
6666 (bug#11508).
6667
6668 2012-05-20 Ken Brown <kbrown@cornell.edu>
6669
6670 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
6671 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
6672
6673 2012-05-19 Ken Brown <kbrown@cornell.edu>
6674
6675 * xfns.c (x_in_use): Remove `static' qualifier.
6676 * xterm.h (x_in_use): Declare.
6677 * xgselect.c: Include xterm.h.
6678 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
6679 and `display_arg' (bug#9754).
6680
6681 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
6682
6683 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
6684
6685 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
6686 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
6687
6688 2012-05-18 Eli Zaretskii <eliz@gnu.org>
6689
6690 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
6691
6692 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
6693 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
6694
6695 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
6696 reference to image_cache->refcount.
6697 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
6698
6699 2012-05-17 Juri Linkov <juri@jurta.org>
6700
6701 * search.c (Fword_search_regexp, Fword_search_backward)
6702 (Fword_search_forward, Fword_search_backward_lax)
6703 (Fword_search_forward_lax): Move functions to isearch.el
6704 (bug#10145, bug#11381).
6705
6706 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
6707
6708 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
6709
6710 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6711
6712 * lread.c (init_obarray): Declare Qt and Qnil as special.
6713
6714 2012-05-14 Glenn Morris <rgm@gnu.org>
6715
6716 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
6717 Put "libexec" before "bin", for the sake of init_callproc_1.
6718
6719 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
6720
6721 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
6722
6723 * unexaix.c: Port to more-recent AIX compilers.
6724 (report_error, report_error_1, make_hdr, copy_sym)
6725 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
6726 Make arguments const char *, not char *, to avoid violations of C
6727 standard and to fix some AIX warnings reported by Gilles Pion.
6728
6729 2012-05-14 Eli Zaretskii <eliz@gnu.org>
6730
6731 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
6732 already have overlays loaded.
6733 (handle_single_display_spec): Before returning without displaying
6734 fringe bitmap, synchronize the bidi iterator with the main display
6735 iterator, by calling iterate_out_of_display_property.
6736 (iterate_out_of_display_property): Detect buffer iteration by
6737 testing that it->string is a Lisp string.
6738 (get_next_display_element): When the current object is exhausted,
6739 and there's something on it->stack, call set_iterator_to_next to
6740 proceed with what's on the stack, instead of returning zero.
6741 (set_iterator_to_next): If called at the end of a Lisp string,
6742 proceed to consider_string_end without incrementing string
6743 position. Don't increment display vector index past the end of
6744 the display vector. (Bug#11417)
6745 (pos_visible_p): Don't report a position visible when move_it_to
6746 stopped at the last line of window, which happens to be scanned
6747 backwards by the bidi iteration. (Bug#11464)
6748
6749 2012-05-14 Eli Zaretskii <eliz@gnu.org>
6750
6751 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
6752 and right-margin display specs even if the spec is invalid or we
6753 are on a TTY, and thus unable to display on the fringes.
6754 That's because the text with the property will not be displayed anyway,
6755 so we need to signal to the caller that this is a "replacing"
6756 display spec. This fixes display when the spec is invalid or we
6757 are on a TTY.
6758
6759 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
6760
6761 * unexaix.c (make_hdr): Fix typo in prototype.
6762 This bug broke the build on AIX. Problem reported by Gilles Pion.
6763
6764 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
6765
6766 * keyboard.c (kbd_buffer_get_event): Read special events also in
6767 batch mode. (Bug#11415)
6768
6769 2012-05-12 Glenn Morris <rgm@gnu.org>
6770
6771 * ns.mk: Update for ns_appbindir no longer having trailing "/".
6772
6773 2012-05-12 Eli Zaretskii <eliz@gnu.org>
6774
6775 * lisp.mk (lisp): Add newcomment.elc.
6776
6777 2012-05-12 Glenn Morris <rgm@gnu.org>
6778
6779 * Makefile.in (MKDIR_P): New, set by configure.
6780 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
6781
6782 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
6783
6784 Remove unused function hourglass_started.
6785 * dispextern.h (hourglass_started):
6786 * w32fns.c (hourglass_started):
6787 * xdisp.c (hourglass_started): Remove.
6788
6789 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
6790
6791 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
6792 Update dependencies.
6793
6794 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
6795
6796 * xgselect.c (xg_select): Put maxfds+1 into a var.
6797 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
6798
6799 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
6800
6801 2012-05-10 Dave Abrahams <dave@boostpro.com>
6802
6803 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
6804 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
6805
6806 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
6807
6808 * dbusbind.c (xd_registered_buses): New internal Lisp object.
6809 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
6810 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
6811 Initialize xd_registered_buses.
6812
6813 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
6814
6815 Untag more efficiently if USE_LSB_TAG.
6816 This is based on a proposal by YAMAMOTO Mitsuharu in
6817 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
6818 For an admittedly artificial (nth 8000 longlist) benchmark on
6819 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
6820 Emacs's overall text size by 1%.
6821 * lisp.h (XUNTAG): New macro.
6822 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
6823 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
6824 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
6825 * eval.c (Fautoload):
6826 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
6827 * frame.h (XFRAME): Use XUNTAG.
6828
6829 Port recent dbusbind.c changes to 32-bit --with-wide-int.
6830 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
6831 Remove unportable assumptions about print widths of types like
6832 dbus_uint32_t.
6833 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
6834 intptr_t when converting between pointer and integer, to avoid GCC
6835 warnings about wrong width.
6836
6837 2012-05-09 Eli Zaretskii <eliz@gnu.org>
6838
6839 * w32proc.c (new_child): Force Windows to reserve only 64KB of
6840 stack for each reader_thread, instead of defaulting to 8MB
6841 determined by the linker. This avoids failures in creating
6842 subprocesses on Windows 7, see the discussion in this thread:
6843 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
6844
6845 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
6846
6847 Fix up display of the *Minibuf-0* buffer in the mini window.
6848 * keyboard.c (read_char): Don't clear the echo area if there's no
6849 message to clear.
6850 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
6851 contents of *Minibuf-0*) if there's no message displayed in its stead.
6852
6853 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
6854
6855 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
6856 batch mode.
6857
6858 2012-05-06 Chong Yidong <cyd@gnu.org>
6859
6860 * lisp.mk (lisp): Update.
6861
6862 2012-05-05 Jim Meyering <meyering@redhat.com>
6863
6864 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
6865
6866 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6867
6868 * data.c (PUT_ERROR): New macro.
6869 (syms_of_data): Use it. Add new error type `user-error'.
6870 * undo.c (user_error): New function.
6871 (Fprimitive_undo): Use it.
6872 * print.c (print_error_message): Adjust print style for `user-error'.
6873 * keyboard.c (user_error): New function.
6874 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
6875
6876 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
6877
6878 Do not limit current-time-string to years 1000..9999.
6879 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
6880 (Fcurrent_time_string): Support any year that is supported by the
6881 underlying localtime representation. Don't use asctime, as it
6882 has undefined behavior for years outside the range -999..9999.
6883
6884 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
6885
6886 Fix race conditions involving setenv, gmtime, localtime, asctime.
6887 Without this fix, interrupts could mess up code that uses these
6888 nonreentrant functions, since setting TZ invalidates existing
6889 tm_zone or tzname values, and since most of these functions return
6890 pointers to static storage.
6891 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
6892 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
6893 Grow the critical sections to include not just invoking
6894 localtime/gmtime, but also accessing these functions' results
6895 including their tm_zone values if any, and any related TZ setting.
6896 (format_time_string): Last arg is now struct tm *, not struct tm **,
6897 so that the struct tm is saved in the critical section.
6898 All callers changed. Simplify allocation of initial buffer, partly
6899 motivated by the fact that memory allocation needs to be outside
6900 the critical section.
6901
6902 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
6903
6904 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
6905 with RESET_INTERVAL.
6906
6907 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
6908 Remove duplicated buffer name initialization.
6909
6910 2012-05-02 Jim Meyering <jim@meyering.net>
6911
6912 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
6913
6914 * xfns.c (x_window): Use xstrdup (Bug#11375).
6915
6916 2012-05-02 Eli Zaretskii <eliz@gnu.org>
6917
6918 * xdisp.c (pos_visible_p): If already at a newline from the
6919 display string before the 'while' loop, don't walk back the glyphs
6920 from it3.glyph_row. Solves assertion violation when the display
6921 string begins with a newline (egg.el). (Bug#11367)
6922
6923 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
6924
6925 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
6926 Move to simple.el.
6927
6928 2012-05-01 Glenn Morris <rgm@gnu.org>
6929
6930 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
6931 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
6932 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
6933 All were removed before 23.1.
6934
6935 * dispnew.c: Remove HAVE_LIBNCURSES test;
6936 it is always true on relevant platforms.
6937
6938 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
6939 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
6940
6941 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
6942
6943 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
6944
6945 * .gdbinit (xpr): Remove checks for no longer existing misc types.
6946 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
6947 Remove.
6948
6949 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
6950
6951 Do not avoid creating empty evaporating overlays (Bug#9642).
6952 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
6953 That is, do not delete an evaporating overlay if it becomes
6954 empty after its bounds are adjusted to fit within its buffer.
6955 This fix caused other problems, and I'm reverting it until we get
6956 to the bottom of them.
6957
6958 2012-04-27 Chong Yidong <cyd@gnu.org>
6959
6960 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
6961
6962 2012-04-27 Eli Zaretskii <eliz@gnu.org>
6963
6964 * xdisp.c (pos_visible_p): If the window start position is beyond
6965 ZV, start the display from buffer beginning. Prevents assertion
6966 violation in init_iterator when the minibuffer window is scrolled
6967 via the scroll bar.
6968
6969 * window.c (window_scroll_pixel_based): Likewise.
6970
6971 2012-04-27 Chong Yidong <cyd@gnu.org>
6972
6973 * keymap.c (where_is_internal): Doc fix (Bug#10872).
6974
6975 2012-04-27 Glenn Morris <rgm@gnu.org>
6976
6977 * fileio.c (Fcopy_file, Fset_file_selinux_context):
6978 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
6979
6980 2012-04-27 Eli Zaretskii <eliz@gnu.org>
6981
6982 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
6983 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
6984
6985 2012-04-26 Eli Zaretskii <eliz@gnu.org>
6986
6987 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
6988 display element, check also the underlying string or buffer
6989 character. (Bug#11341)
6990
6991 * w32menu.c: Include w32heap.h.
6992 (add_menu_item): If the call to AppendMenuW (via
6993 unicode_append_menu) fails, disable Unicode menus only if we are
6994 running on Windows 9X/Me.
6995
6996 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
6997
6998 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
6999 (xgetint): Add missing shift for LSB tags.
7000
7001 2012-04-24 Martin Rudalics <rudalics@gmx.at>
7002
7003 * keyboard.c (read_char): Don't wipe echo area for select window
7004 events: These might get delayed via `mouse-autoselect-window'
7005 (Bug#11304).
7006
7007 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
7008
7009 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
7010 manipulation of :loaded-from data.
7011
7012 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
7013
7014 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
7015 now a cons (bug#11311).
7016
7017 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
7018
7019 Do not create empty overlays with the evaporate property (Bug#9642).
7020 * buffer.c (Fmove_overlay): Delete an evaporating overlay
7021 if it becomes empty after its bounds are adjusted to fit within
7022 its buffer. Without this fix, in a nonempty buffer (let ((o
7023 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
7024 yields an empty overlay that has the evaporate property, which is
7025 not supposed to happen.
7026
7027 Fix minor GTK3 problems found by static checking.
7028 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
7029 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
7030 (struct _EmacsFixedClass, emacs_fixed_get_type):
7031 Move decls here from emacsgtkfixed.h, since they needn't be public.
7032 (emacs_fixed_get_type): Now static.
7033 (emacs_fixed_class_init): Omit unused local.
7034 (emacs_fixed_child_type): Remove; unused.
7035 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
7036 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
7037 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
7038 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
7039 (EMACS_FIXED_GET_CLASS): Remove; unused.
7040 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
7041
7042 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
7043 Problem reported by Juanma Barranquero for Windows -Wunused-function.
7044
7045 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
7046
7047 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
7048 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
7049 (__malloc_size_t, __malloc_ptrdiff_t):
7050 Remove. All uses removed, replaced by the definiens if needed,
7051 since we can assume C89 or better now.
7052 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
7053 (protect_malloc_state, align, get_contiguous_space)
7054 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
7055 (malloc_atfork_handler_child, malloc_enable_thread)
7056 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
7057 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
7058 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
7059 (special_realloc, _realloc_internal_nolock, _realloc_internal)
7060 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
7061 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
7062 Define using prototypes, not old style.
7063 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
7064 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
7065 (align): Don't assume that signed integer overflow wraps around.
7066 Omit unused local var.
7067 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
7068 (_free_internal_nolock, memalign, mallochook, reallochook):
7069 Omit no-longer-needed casts.
7070 (valloc): Use getpagesize, not __getpagesize.
7071 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
7072 (struct hdr): The 'magic' member is now size_t, not unsigned long.
7073
7074 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
7075
7076 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
7077
7078 Move functions from C to Lisp. Make non-blocking method calls
7079 the default. Implement further D-Bus standard interfaces.
7080
7081 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
7082 (QCdbus_request_name_allow_replacement)
7083 (QCdbus_request_name_replace_existing)
7084 (QCdbus_request_name_do_not_queue)
7085 (QCdbus_request_name_reply_primary_owner)
7086 (QCdbus_request_name_reply_in_queue)
7087 (QCdbus_request_name_reply_exists)
7088 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
7089 (QCdbus_registered_serial, QCdbus_registered_method)
7090 (QCdbus_registered_signal): New Lisp objects.
7091 (XD_DEBUG_MESSAGE): Use sizeof.
7092 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
7093 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
7094 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
7095 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
7096 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
7097 (xd_signature, xd_append_arg): Allow float for integer types.
7098 (xd_get_connection_references): New function.
7099 (xd_get_connection_address): Rename from xd_initialize.
7100 Return cached address.
7101 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
7102 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
7103 level.
7104 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
7105 Return number of refcounts.
7106 (Fdbus_get_unique_name): Make stronger parameter check.
7107 (Fdbus_message_internal): New defun.
7108 (Fdbus_call_method, Fdbus_call_method_asynchronously)
7109 (Fdbus_method_return_internal, Fdbus_method_error_internal)
7110 (Fdbus_send_signal, Fdbus_register_service)
7111 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
7112 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
7113 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
7114 (Vdbus_compiled_version, Vdbus_runtime_version)
7115 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
7116 (Vdbus_message_type_method_return, Vdbus_message_type_error)
7117 (Vdbus_message_type_signal): New defvars.
7118 (Vdbus_registered_buses, Vdbus_registered_objects_table):
7119 Adapt docstring.
7120
7121 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
7122
7123 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
7124 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
7125 Do not assume ptrdiff_t is the same width as 'int'.
7126
7127 * alloc.c: Handle unusual debugging option combinations.
7128 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
7129 since the two debugging options are incompatible.
7130 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
7131 is defined.
7132 (mem_init, mem_insert, mem_insert_fixup):
7133 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
7134 (NEED_MEM_INSERT): Remove; no longer needed.
7135
7136 2012-04-22 Leo Liu <sdl.web@gmail.com>
7137
7138 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
7139
7140 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
7141
7142 * sysdep.c [__FreeBSD__]: Minor cleanups.
7143 (list_system_processes, system_process_attributes) [__FreeBSD__]:
7144 Use Emacs indenting style more consistently. Avoid some casts.
7145 Use 'double' consistently rather than mixing 'float' and 'double'.
7146
7147 2012-04-21 Eduard Wiebe <usenet@pusto.de>
7148
7149 * sysdep.c (list_system_processes, system_process_attributes):
7150 Add implementation for FreeBSD (Bug#5243).
7151
7152 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
7153
7154 * lisp.mk (lisp): Update.
7155
7156 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
7157
7158 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
7159 It is never used otherwise.
7160
7161 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7162
7163 * print.c (print_preprocess): Only check print_depth if print-circle
7164 is nil.
7165 (print_object): Check for cycles even when print-circle is nil and
7166 print-gensym is t, but only check print_depth if print-circle is nil.
7167
7168 2012-04-20 Chong Yidong <cyd@gnu.org>
7169
7170 * process.c (wait_reading_process_output): If EIO occurs on a pty,
7171 set the status to "failed" and ensure that sentinel is run.
7172
7173 2012-04-20 Glenn Morris <rgm@gnu.org>
7174
7175 * process.c (Fset_process_inherit_coding_system_flag)
7176 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
7177 (Fmake_network_process, Fmake_serial_process): Doc fix.
7178
7179 2012-04-20 Eli Zaretskii <eliz@gnu.org>
7180
7181 * xdisp.c (string_buffer_position_lim): Limit starting position to
7182 BEGV.
7183 (set_cursor_from_row): If called for a mode-line or header-line
7184 row, return zero immediately.
7185 (try_cursor_movement): If inside continuation line, don't back up
7186 farther than the first row after the header line, if any.
7187 Don't consider the header-line row as "partially visible", even if
7188 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
7189
7190 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
7191
7192 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
7193 (bug#11238).
7194
7195 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
7196 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
7197
7198 configure: new option --enable-gcc-warnings (Bug#11207)
7199 * Makefile.in (C_WARNINGS_SWITCH): Remove.
7200 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
7201 (ALL_CFLAGS): Use new macros rather than old.
7202 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
7203 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
7204 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
7205 -Wunused-result, -Wunused-variable. This should go away once
7206 the Emacs and Gnulib regex code is merged.
7207 (xmalloc, xrealloc): Now static.
7208
7209 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
7210
7211 * dired.c (Fsystem_groups): Remove unused local.
7212
7213 2012-04-17 Glenn Morris <rgm@gnu.org>
7214
7215 * dired.c (Fsystem_users): Doc fix.
7216
7217 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
7218
7219 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
7220 (syms_of_dired): Add them.
7221
7222 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
7223
7224 Fix minor alloc.c problems found by static checking.
7225 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
7226 New extern decls, to avoid calling undeclared functions.
7227 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
7228 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
7229 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
7230 (NEED_MEM_INSERT): New macro.
7231 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
7232 Remove one incorrect comment and fix another.
7233
7234 Fix minor ralloc.c problems found by static checking.
7235 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
7236 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
7237 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
7238 (r_alloc_sbrk): Now static.
7239
7240 Improve ralloc.c interface checking.
7241 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
7242 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
7243 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
7244 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
7245 [REL_ALLOC]: ... to here, to check interface.
7246 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
7247 Remove decls. This fixes an "It stinks!".
7248
7249 * alloc.c (which_symbols): Fix alignment issue / type clash.
7250
7251 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
7252
7253 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
7254 (struct Lisp_Misc_Any): Likewise.
7255 (struct Lisp_Free): Likewise.
7256 * alloc.c (union aligned_Lisp_Symbol): Define.
7257 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
7258 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
7259 (union aligned_Lisp_Misc): Define.
7260 (MARKER_BLOCK_SIZE, struct marker_block): Use union
7261 aligned_Lisp_Misc instead of union Lisp_Misc.
7262 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
7263
7264 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
7265
7266 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
7267 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
7268 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
7269 * s/netbsd.h, s/sol2-6.h:
7270 Remove definition of GC_MARK_STACK, since the default now works.
7271 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
7272 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
7273 no longer the default.
7274 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
7275
7276 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
7277
7278 * lread.c (lisp_file_lexically_bound_p):
7279 Fix hang at ";-*-\n" (bug#11238).
7280
7281 2012-04-14 Eli Zaretskii <eliz@gnu.org>
7282
7283 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
7284 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
7285
7286 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
7287
7288 * nsterm.m (constrainFrameRect): Always constrain when there is only
7289 one screen (Bug#10962).
7290
7291 2012-04-13 Ken Brown <kbrown@cornell.edu>
7292
7293 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
7294
7295 2012-04-13 Reuben Thomas <rrt@sc3d.org>
7296
7297 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
7298
7299 2012-04-11 Daniel Colascione <dancol@dancol.org>
7300
7301 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
7302 against is gone. It's better to use vfork now so that when Cygwin
7303 gains a new, working vfork, we use it automatically (bug#10398).
7304
7305 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
7306
7307 * window.c (save_window_save): Obey window-point-insertion-type.
7308
7309 2012-04-11 Glenn Morris <rgm@gnu.org>
7310
7311 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
7312
7313 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
7314
7315 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
7316
7317 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
7318
7319 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
7320 (force_quit_count): New var.
7321 (handle_interrupt): Use it.
7322
7323 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
7324
7325 * w32.c (w32_delayed_load): Record the full path of the library
7326 being loaded (bug#10424).
7327
7328 2012-04-09 Glenn Morris <rgm@gnu.org>
7329
7330 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
7331 not just in the obarray, before snarfing them. (Bug#11036)
7332
7333 * Makefile.in ($(leimdir)/leim-list.el):
7334 Pass EMACS rather than BUILT_EMACS.
7335
7336 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
7337
7338 * process.c (make_process):
7339 * process.h: Add integer `gnutls_handshakes_tried' member to
7340 process struct.
7341
7342 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
7343 Add convenience `GNUTLS_LOG2i' macro.
7344
7345 * gnutls.c (gnutls_log_function2i): Convenience log function.
7346 (emacs_gnutls_read): Use new log functions,
7347 `gnutls_handshakes_tried' process member, and
7348 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
7349 attempts per process (connection).
7350
7351 2012-04-09 Chong Yidong <cyd@gnu.org>
7352
7353 * eval.c (Fuser_variable_p, user_variable_p_eh)
7354 (lisp_indirect_variable): Functions deleted.
7355 (Fdefvar): Caller changed.
7356
7357 * callint.c (Finteractive, Fcall_interactively):
7358 * minibuf.c (Fread_variable): Callers changed.
7359
7360 2012-04-09 Eli Zaretskii <eliz@gnu.org>
7361
7362 * xdisp.c (set_cursor_from_row): If the display string appears in
7363 the buffer at position that is closer to point than the position
7364 after the display string, display the cursor on the first glyph of
7365 the display string. Fixes cursor display when a 'display' text
7366 property immediately follows invisible text. (Bug#11094)
7367
7368 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
7369
7370 composite.c: use 'double' consistently
7371 * composite.c (get_composition_id): Use 'double' consistently
7372 instead of converting 'float' to 'double' and vice versa; this is
7373 easier to understand and avoids a GCC warning.
7374
7375 2012-04-09 Glenn Morris <rgm@gnu.org>
7376
7377 * Makefile.in: Generate leim-list with bootstrap-emacs, in
7378 preparation for dumping it with emacs. (Bug#4789)
7379 (leimdir): New variable.
7380 ($(leimdir)/leim-list.el): New rule.
7381 (emacs$(EXEEXT)): Depend on leim-list.el.
7382
7383 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
7384 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
7385 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
7386
7387 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
7388
7389 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
7390 proper alignment.
7391
7392 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
7393
7394 * xml.c (init_libxml2_functions) [WINDOWSNT]:
7395 Remove unused local variable.
7396
7397 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
7398
7399 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
7400 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
7401 (mark_memory): Mark Lisp_Objects only if pointers might hide in
7402 objects, as mark_maybe_pointer will catch them otherwise.
7403 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
7404 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
7405
7406 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
7407
7408 Fix typo that broke non-Windows builds.
7409 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
7410
7411 2012-04-07 Eli Zaretskii <eliz@gnu.org>
7412
7413 Support building on MS-Windows with libxml2.
7414
7415 * makefile.w32-in (OBJ2): Add xml.$(O).
7416 (GLOBAL_SOURCES): Add xml.c.
7417 ($(BLD)/xml.$(O)): New dependency list.
7418
7419 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
7420 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
7421 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
7422 [!WINDOWSNT]: New macros.
7423 (init_libxml2_functions, libxml2_loaded_p): New functions.
7424 (parse_region): Call fn_xmlCheckVersion instead of using the macro
7425 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
7426 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
7427 Calls xmlCleanupParser only if libxml2 was loaded (or statically
7428 linked in).
7429 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
7430 Call init_libxml2_functions before calling libxml2 functions.
7431 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
7432
7433 * emacs.c: Don't include libxml/parser.h.
7434 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
7435 xmlCleanupParser directly.
7436
7437 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
7438
7439 2012-04-07 Eli Zaretskii <eliz@gnu.org>
7440
7441 * indent.c (Fvertical_motion): If there is a display string at
7442 point, use it.vpos to compute how many lines to backtrack after
7443 move_it_to point. (Bug#11133)
7444
7445 2012-04-06 Eli Zaretskii <eliz@gnu.org>
7446
7447 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
7448 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
7449 about subtle differences between FETCH_CHAR* and STRING_CHAR*
7450 macros related to unification of CJK characters. For the details,
7451 see the discussion following the message here:
7452 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
7453
7454 2012-04-04 Chong Yidong <cyd@gnu.org>
7455
7456 * keyboard.c (Vdelayed_warnings_list): Doc fix.
7457
7458 2012-04-01 Eli Zaretskii <eliz@gnu.org>
7459
7460 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
7461 instead of alloca. (Bug#11138)
7462
7463 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
7464
7465 * w32menu.c (is_simple_dialog): Properly check lisp types.
7466 (Bug#11141)
7467
7468 2012-03-31 Eli Zaretskii <eliz@gnu.org>
7469
7470 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
7471 position we get to after a call to move_it_to fails the
7472 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
7473 only if we wind up in a string from display property. (Bug#11063)
7474
7475 * window.c (Fdelete_other_windows_internal): Invalidate the row
7476 and column information about mouse highlight, so that redisplay
7477 restores it after reallocating the glyph matrices. (Bug#7464)
7478
7479 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
7480 string comes from a `display' text property, use the buffer
7481 position of that property as if we actually saw that position in
7482 the row's glyphs.
7483 (move_it_by_lines): Remove the assertion that
7484 "it->current_x == 0 && it->hpos == 0" which can be legitimately
7485 violated when there's a before-string at the beginning of a line.
7486 (Bug#11063)
7487
7488 2012-03-30 Eli Zaretskii <eliz@gnu.org>
7489
7490 * xdisp.c (append_space_for_newline): If the default face was
7491 remapped, use the remapped face for the appended newline.
7492 (extend_face_to_end_of_line): Use the remapped default face for
7493 extending the face to the end of the line.
7494 (display_line): Call extend_face_to_end_of_line when the default
7495 face was remapped. (Bug#11068)
7496
7497 2012-03-29 Eli Zaretskii <eliz@gnu.org>
7498
7499 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
7500
7501 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7502
7503 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
7504
7505 2012-03-27 Glenn Morris <rgm@gnu.org>
7506
7507 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
7508 Doc fixes.
7509
7510 2012-03-26 Kenichi Handa <handa@m17n.org>
7511
7512 * dispextern.h (struct glyph): Fix previous change. Change the
7513 bit length of glyphless.ch to 25 (Bug#11082).
7514
7515 2012-03-26 Chong Yidong <cyd@gnu.org>
7516
7517 * keyboard.c (Vselection_inhibit_update_commands): New variable.
7518 (command_loop_1): Use it; inhibit selection update for
7519 handle-select-window too (Bug#8996).
7520
7521 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
7522
7523 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
7524
7525 2012-03-25 Kenichi Handa <handa@m17n.org>
7526
7527 * dispextern.h (struct glyph): Change the bit length of
7528 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
7529
7530 2012-03-24 Eli Zaretskii <eliz@gnu.org>
7531
7532 * s/ms-w32.h (tzname): Include time.h before redirecting to
7533 _tzname. Fixes the MSVC build. (Bug#9960)
7534
7535 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
7536
7537 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
7538 characters.
7539
7540 * xterm.c (XTread_socket): Only modify handling_signal if
7541 !SYNC_INPUT. (Bug#11080)
7542
7543 2012-03-23 Eli Zaretskii <eliz@gnu.org>
7544
7545 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
7546 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
7547 when fetching a multibyte character consumes more bytes than
7548 CHAR_BYTES returns, due to unification of CJK characters in
7549 string_char. (Bug#11073)
7550
7551 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
7552
7553 * process.c (wait_reading_process_output): Handle pty disconnect
7554 by refraining from sending oneself a SIGCHLD (bug#10933).
7555
7556 2012-03-22 Chong Yidong <cyd@gnu.org>
7557
7558 * dispextern.h (struct it): New member string_from_prefix_prop_p.
7559
7560 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
7561 Mark string as coming from a prefix property.
7562 (handle_face_prop): Use default face for prefix strings (Bug#4281).
7563 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
7564
7565 2012-03-21 Chong Yidong <cyd@gnu.org>
7566
7567 * xfaces.c (Vface_remapping_alist): Doc fix.
7568
7569 2012-03-20 Eli Zaretskii <eliz@gnu.org>
7570
7571 * w32proc.c (Fw32_set_console_codepage)
7572 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
7573 Doc fixes.
7574
7575 2012-03-20 Chong Yidong <cyd@gnu.org>
7576
7577 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
7578 to reflect default non-nil value of redisplay-dont-pause.
7579
7580 2012-03-19 Kenichi Handa <handa@m17n.org>
7581
7582 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
7583 it fit in a valid range (Bug#11003).
7584
7585 2012-03-18 Eli Zaretskii <eliz@gnu.org>
7586
7587 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
7588 that is not from display property, accept the row as a "cursor
7589 row" if one of the string's character has a non-nil `cursor'
7590 property. Fixes cursor positioning when there are newlines in
7591 overlay strings, e.g. in icomplete.el. (Bug#11035)
7592
7593 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
7594
7595 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
7596
7597 2012-03-12 Chong Yidong <cyd@gnu.org>
7598
7599 * eval.c (inhibit_lisp_code): Rename from
7600 inhibit_window_configuration_change_hook; move from window.c.
7601
7602 * xfns.c (unwind_create_frame_1, Fx_create_frame):
7603 * window.c (run_window_configuration_change_hook)
7604 (syms_of_window): Callers changed.
7605
7606 2012-03-11 Chong Yidong <cyd@gnu.org>
7607
7608 * keymap.c (Fkey_description): Doc fix (Bug#9700).
7609
7610 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
7611
7612 2012-03-10 Chong Yidong <cyd@gnu.org>
7613
7614 * frame.c (other_visible_frames): Don't assume the selected frame
7615 is visible (Bug#10955).
7616
7617 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
7618
7619 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
7620
7621 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
7622
7623 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
7624 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
7625 zero (Bug#10954).
7626
7627 2012-03-03 Glenn Morris <rgm@gnu.org>
7628
7629 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
7630
7631 2012-03-02 Eli Zaretskii <eliz@gnu.org>
7632
7633 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
7634 position past the first glyph_row that ends at ZV. (Bug#10902)
7635 (redisplay_window, next_element_from_string): Fix typos in
7636 comments.
7637 (redisplay_window): Pass to move_it_vertically the margin in
7638 pixels, not in screen lines.
7639
7640 2012-03-02 Glenn Morris <rgm@gnu.org>
7641
7642 * buffer.c (buffer-list-update-hook): Doc fix.
7643
7644 2012-02-29 Eli Zaretskii <eliz@gnu.org>
7645
7646 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
7647 push_it before setting up the iterator for the first overlay
7648 string, even if we have an empty string loaded.
7649 (next_overlay_string): If there's an empty string on the iterator
7650 stack, pop the stack. (Bug#10903)
7651
7652 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
7653
7654 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
7655 Suggested by Stefan Monnier in
7656 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
7657 * alloc.c (widen_to_Lisp_Object): New static function.
7658 (mark_memory): Also mark Lisp_Objects by fetching pointer words
7659 and widening them to Lisp_Objects. This would work even if
7660 USE_LSB_TAG is defined and wide integers are used, which might
7661 happen in a future version of Emacs.
7662
7663 2012-02-25 Chong Yidong <cyd@gnu.org>
7664
7665 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
7666 Doc fix.
7667
7668 * xselect.c (Fx_selection_exists_p): Doc fix.
7669 (x_clipboard_manager_save_all): Print an informative message
7670 before saving to clipboard manager.
7671
7672 2012-02-24 Chong Yidong <cyd@gnu.org>
7673
7674 * keyboard.c (process_special_events): Handle all X selection
7675 requests in kbd_buffer, not just the next one (Bug#8869).
7676
7677 2012-02-23 Chong Yidong <cyd@gnu.org>
7678
7679 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
7680 call when setting menu-bar-lines and tool-bar-lines parameters.
7681 (unwind_create_frame_1): New helper function.
7682
7683 * window.c (inhibit_window_configuration_change_hook): New var.
7684 (run_window_configuration_change_hook): Obey it.
7685 (syms_of_window): Initialize it.
7686
7687 2012-02-22 Chong Yidong <cyd@gnu.org>
7688
7689 * xterm.c (x_draw_image_relief): Add missing type check for
7690 Vtool_bar_button_margin (Bug#10743).
7691
7692 2012-02-21 Chong Yidong <cyd@gnu.org>
7693
7694 * fileio.c (Vfile_name_handler_alist): Doc fix.
7695
7696 * buffer.c (Fget_file_buffer): Protect against invalid file
7697 handler return value.
7698
7699 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
7700
7701 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
7702 when computing $valmask.
7703
7704 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
7705 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
7706 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
7707 It's useless in that case, and it can cause problems on hosts
7708 that allocate halves of EMACS_INT values separately.
7709 Reported by Dan Horák. Diagnosed by Andreas Schwab in
7710 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
7711 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
7712 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
7713 it avoids undefined behavior on hosts where shifting right by more
7714 than the word width has undefined behavior.
7715
7716 2012-02-19 Chong Yidong <cyd@gnu.org>
7717
7718 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
7719 (Funhandled_file_name_directory, Ffile_name_as_directory)
7720 (Fdirectory_file_name, Fexpand_file_name)
7721 (Fsubstitute_in_file_name): Protect against invalid file handler
7722 return values (Bug#10845).
7723
7724 2012-02-18 Eli Zaretskii <eliz@gnu.org>
7725
7726 * .gdbinit (pitx): Fix incorrect references to fields of the
7727 iterator stack.
7728
7729 2012-02-17 Chong Yidong <cyd@gnu.org>
7730
7731 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
7732
7733 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
7734
7735 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
7736 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
7737
7738 2012-02-15 Chong Yidong <cyd@gnu.org>
7739
7740 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
7741 marked as special. Also, starting docstrings with * is obsolete.
7742
7743 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
7744
7745 * gnutls.c (emacs_gnutls_write): Fix last change.
7746
7747 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
7748
7749 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
7750 send_process.
7751
7752 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
7753
7754 * keymap.c (Fsingle_key_description): Handle char ranges.
7755
7756 2012-02-12 Chong Yidong <cyd@gnu.org>
7757
7758 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
7759 as that creates a dangerous corner case.
7760
7761 * window.c (Fdelete_window_internal): Invalidate the mouse
7762 highlight (Bug#9904).
7763
7764 2012-02-12 Glenn Morris <rgm@gnu.org>
7765
7766 * xselect.c (Fx_own_selection_internal)
7767 (Fx_get_selection_internal, Fx_disown_selection_internal)
7768 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
7769 * nsselect.m (Fx_own_selection_internal)
7770 (Fx_disown_selection_internal, Fx_selection_exists_p)
7771 (Fx_selection_owner_p, Fx_get_selection_internal):
7772 Sync docs and argument specs with the xselect.c versions.
7773
7774 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
7775
7776 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
7777
7778 2012-02-11 Eli Zaretskii <eliz@gnu.org>
7779
7780 * w32select.c (Fx_selection_exists_p): Sync doc string and
7781 argument list with xselect.c. (Bug#10783)
7782
7783 * w16select.c (Fx_selection_exists_p): Sync doc string and
7784 argument list with xselect.c. (Bug#10783)
7785
7786 2012-02-10 Glenn Morris <rgm@gnu.org>
7787
7788 * fns.c (Fsecure_hash): Doc fix.
7789
7790 2012-02-09 Kenichi Handa <handa@m17n.org>
7791
7792 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
7793
7794 2012-02-07 Chong Yidong <cyd@gnu.org>
7795
7796 * buffer.c (Fbuffer_local_variables)
7797 (buffer_lisp_local_variables): Handle unbound vars correctly;
7798 don't let Qunbound leak into Lisp.
7799
7800 2012-02-07 Glenn Morris <rgm@gnu.org>
7801
7802 * image.c (Fimagemagick_types): Doc fix.
7803
7804 * image.c (imagemagick-render-type): Change it from a lisp object
7805 to an integer. Move the doc here from the lisp manual.
7806 Treat all values not equal to 0 the same.
7807
7808 2012-02-06 Chong Yidong <cyd@gnu.org>
7809
7810 * doc.c (store_function_docstring): Avoid applying docstring of
7811 alias to base function (Bug#2603).
7812
7813 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
7814
7815 * .gdbinit (pp1, pv1): Remove redundant defines.
7816 (pr): Use pp.
7817
7818 2012-02-04 Chong Yidong <cyd@gnu.org>
7819
7820 * nsterm.m: Declare a global (Bug#10694).
7821
7822 2012-02-04 Eli Zaretskii <eliz@gnu.org>
7823
7824 * w32.c (get_emacs_configuration_options):
7825 Include --enable-checking, if specified, in the return value.
7826
7827 2012-02-04 Martin Rudalics <rudalics@gmx.at>
7828
7829 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
7830 after rounding frame sizes. (Bug#9723)
7831
7832 2012-02-04 Eli Zaretskii <eliz@gnu.org>
7833
7834 * keyboard.c (adjust_point_for_property): Don't position point
7835 before BEGV. (Bug#10696)
7836
7837 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
7838
7839 Handle overflow when computing char display width (Bug#9496).
7840 * character.c (char_width): Return EMACS_INT, not int.
7841 (char_width, c_string_width): Check for overflow when
7842 computing the width; this is possible now that individual
7843 characters can have unbounded width. Problem introduced
7844 by merge from Emacs 23 on 2012-01-19.
7845
7846 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
7847
7848 * dbusbind.c (Fdbus_register_method): Mention the return value
7849 :ignore in the docstring.
7850
7851 2012-02-02 Glenn Morris <rgm@gnu.org>
7852
7853 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
7854
7855 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
7856 Unconditionally set to t. (Bug#10673)
7857 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
7858 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
7859 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
7860
7861 2012-02-02 Kenichi Handa <handa@m17n.org>
7862
7863 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
7864 0, do not call append_composite_glyph.
7865
7866 2012-02-02 Kenichi Handa <handa@m17n.org>
7867
7868 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
7869 NULL (Bug#6988).
7870 (x_produce_glyphs): If the component of a composition is a null
7871 string, set it->pixel_width to 1 to avoid zero-width glyph.
7872
7873 2012-02-01 Eli Zaretskii <eliz@gnu.org>
7874
7875 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
7876 first 2 arguments are identical. This makes inserting large
7877 output from a subprocess an order of magnitude faster on
7878 MS-Windows, where all sbrk'ed memory is always contiguous.
7879
7880 2012-01-31 Glenn Morris <rgm@gnu.org>
7881
7882 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
7883 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
7884 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
7885
7886 2012-01-29 Glenn Morris <rgm@gnu.org>
7887
7888 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
7889
7890 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
7891
7892 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
7893
7894 2012-01-28 Chong Yidong <cyd@gnu.org>
7895
7896 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
7897
7898 2012-01-26 Chong Yidong <cyd@gnu.org>
7899
7900 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
7901
7902 * search.c (Fsearch_forward, Fsearch_backward): Document negative
7903 repeat counts (Bug#10507).
7904
7905 2012-01-26 Glenn Morris <rgm@gnu.org>
7906
7907 * lread.c (syms_of_lread): Doc fix.
7908
7909 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
7910
7911 * coding.c (encode_designation_at_bol): Change return value to
7912 EMACS_INT.
7913
7914 2012-01-25 Chong Yidong <cyd@gnu.org>
7915
7916 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
7917
7918 2012-01-21 Chong Yidong <cyd@gnu.org>
7919
7920 * floatfns.c (Fcopysign): Make the second argument non-optional,
7921 since nil is not allowed anyway.
7922
7923 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
7924
7925 * process.c (read_process_output): Use p instead of XPROCESS (proc).
7926 (send_process): Likewise.
7927
7928 2012-01-19 Martin Rudalics <rudalics@gmx.at>
7929
7930 * window.c (save_window_save, Fcurrent_window_configuration)
7931 (Vwindow_persistent_parameters): Do not use Qstate.
7932 Rewrite doc-strings.
7933
7934 2012-01-19 Kenichi Handa <handa@m17n.org>
7935
7936 * character.c (char_width): New function.
7937 (Fchar_width, c_string_width, lisp_string_width):
7938 Use char_width (Bug#9496).
7939
7940 2012-01-16 Martin Rudalics <rudalics@gmx.at>
7941
7942 * window.c (Vwindow_persistent_parameters): New variable.
7943 (Fset_window_configuration, save_window_save): Handle persistent
7944 window parameters.
7945
7946 2012-01-14 Eli Zaretskii <eliz@gnu.org>
7947
7948 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
7949 thrashing the stack of the thread. (Bug#9087)
7950
7951 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
7952
7953 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
7954
7955 2012-01-11 Eli Zaretskii <eliz@gnu.org>
7956
7957 * xdisp.c (rows_from_pos_range): Handle the case where the
7958 highlight ends on a newline. (Bug#10464)
7959 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
7960 he end column for display of highlight that ends on a newline
7961 before a R2L line.
7962
7963 2012-01-11 Glenn Morris <rgm@gnu.org>
7964
7965 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
7966 from load-path also when installation-directory is nil. (Bug#10208)
7967
7968 2012-01-10 Glenn Morris <rgm@gnu.org>
7969
7970 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
7971
7972 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
7973 Update template values to be closer to their typical values these days.
7974
7975 2012-01-09 Eli Zaretskii <eliz@gnu.org>
7976
7977 * xdisp.c (rows_from_pos_range): Accept additional argument
7978 DISP_STRING, and accept any glyph in a row whose object is that
7979 string as eligible for mouse highlight. Fixes mouse highlight of
7980 display strings from overlays. (Bug#10464)
7981
7982 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
7983
7984 emacs: fix an auto-save permissions race condition (Bug#10400)
7985 * fileio.c (auto_saving_dir_umask): New static var.
7986 (Fmake_directory_internal): Use it.
7987 (do_auto_save_make_dir): Set it, instead of invoking chmod after
7988 creating the directory. The old code temporarily assigns
7989 too-generous permissions to the directory.
7990 (do_auto_save_eh): Clear it.
7991 (Fdo_auto_save): Catch all errors, not just file errors, so
7992 that the var is always cleared.
7993
7994 2012-01-07 Eli Zaretskii <eliz@gnu.org>
7995
7996 * search.c (scan_buffer): Pass character positions to
7997 know_region_cache, not byte positions. (Bug#6540)
7998
7999 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
8000
8001 * w32.c (sys_rename): Report EXDEV when rename of a directory
8002 fails because the target is on another logical disk. (Bug#10284)
8003
8004 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
8005
8006 * xterm.c (x_embed_request_focus): New function.
8007
8008 * xterm.h: Add prototype.
8009
8010 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
8011
8012 2012-01-05 Glenn Morris <rgm@gnu.org>
8013
8014 * emacs.c (emacs_copyright): Update short copyright year to 2012.
8015
8016 2012-01-01 Eli Zaretskii <eliz@gnu.org>
8017
8018 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
8019 Load gnutls_transport_set_lowat only if GnuTLS version is below
8020 2.11.1.
8021 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
8022 GnuTLS versions below 2.11.1.
8023
8024 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
8025
8026 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
8027 to the doc string advising against its use for altering the way
8028 windows are scrolled.
8029
8030 2011-12-28 Kenichi Handa <handa@m17n.org>
8031
8032 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
8033 coding-system ASCII compatible only when it does not produce BOM
8034 on encoding (Bug#10383).
8035
8036 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
8037
8038 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
8039 can scroll.
8040 (create_and_show_popup_menu): Always use menu_position_func for
8041 Gtk3 (Bug#10361).
8042
8043 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
8044
8045 * callint.c (Fcall_interactively): Don't truncate prompt string.
8046
8047 2011-12-23 Eli Zaretskii <eliz@gnu.org>
8048
8049 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
8050 property that ends at ZV, so that the bidi iteration could be
8051 resumed from there (after widening). (Bug#10360)
8052
8053 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
8054
8055 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
8056
8057 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
8058
8059 * nsterm.m (x_free_frame_resources):
8060 Release f->output_data.ns->miniimage.
8061 (ns_index_color): Fix indentation. Do not retain
8062 color_table->colors[i].
8063
8064 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
8065 before returning.
8066
8067 * nsfns.m (x_set_background_color): Assign return value from
8068 ns_index_color to face-background instead of NSColor*.
8069 (ns_implicitly_set_icon_type): Fix indentation.
8070 Change assignment in for loop to comparison.
8071
8072 * emacs.c (ns_pool): New variable.
8073 (main): Assign ns_pool.
8074 (Fkill_emacs): Call ns_release_autorelease_pool.
8075
8076 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
8077 autorelease fdesc, release fdAttrs and tdict.
8078 (ns_get_covering_families): Release charset.
8079 (ns_findfonts): Release NSFontDescriptor created with new.
8080 (ns_uni_to_glyphs): Fix indentation.
8081 (setString): Release attrStr before assigning new value.
8082
8083 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
8084
8085 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
8086 and NS_IMPL_COCOA.
8087 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
8088 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
8089
8090 2011-12-18 David Reitter <reitter@cmu.edu>
8091
8092 * nsterm.m (ns_term_init): Subscribe for notifications
8093 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
8094 to method trackingNotification in EmacsMenu.
8095
8096 * nsmenu.m (trackingMenu): New variable.
8097 (trackingNotification): New method (from Aquamacs).
8098 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
8099 from Aquamacs (Bug#7030).
8100
8101 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
8102
8103 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
8104 (symbol_to_nsstring): Fix indentation.
8105 (ns_symbol_to_pb): New function.
8106 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
8107 (Fns_rotate_cut_buffers_internal): Remove.
8108 (Fns_store_selection_internal): Rename from
8109 Fns_store_cut_buffer_internal.
8110 (ns_get_foreign_selection, Fx_own_selection_internal)
8111 (Fx_disown_selection_internal, Fx_selection_exists_p)
8112 (Fns_get_selection_internal, Fns_store_selection_internal):
8113 Use ns_symbol_to_pb and check if return value is nil.
8114 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
8115 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
8116 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
8117 renamed to Sns_store_selection_internal.
8118 (ns_handle_selection_request): Move code to Fx_own_selection_internal
8119 and remove this function.
8120 (ns_handle_selection_clear): Remove, never used.
8121 (Fx_own_selection_internal): Move code from ns_handle_selection_request
8122 here.
8123
8124 2011-12-17 Ken Brown <kbrown@cornell.edu>
8125
8126 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
8127 GID is unknown (Bug#10257).
8128
8129 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
8130
8131 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
8132 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
8133 which caused a build failure on GNU/Linux IA-64. This problem was
8134 introduced by my 2011-10-07 patch.
8135
8136 2011-12-15 Juri Linkov <juri@jurta.org>
8137
8138 * image.c (imagemagick_error): New function. (Bug#10112)
8139 (imagemagick_load_image): Comment out `MagickSetResolution' call.
8140 Use `imagemagick_error' where ImageMagick functions return
8141 `MagickFalse'.
8142 (Fimagemagick_types): Add `Fnreverse' to return the list in the
8143 proper order.
8144
8145 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8146
8147 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
8148 fill background (Bug#8992).
8149
8150 2011-12-13 Martin Rudalics <rudalics@gmx.at>
8151
8152 * window.c (Vwindow_combination_resize)
8153 (Vwindow_combination_limit): Use t instead of non-nil in
8154 doc-strings.
8155 (Vrecenter_redisplay): Add first sentence of doc-string on
8156 separate line.
8157 (Frecenter): Fix doc-string typo.
8158
8159 2011-12-11 Kenichi Handa <handa@m17n.org>
8160
8161 * coding.c (Funencodable_char_position): Pay attention to the
8162 buffer text relocation (Bug#9389).
8163
8164 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
8165
8166 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
8167 gtk_init (Bug#10100).
8168
8169 2011-12-10 Eli Zaretskii <eliz@gnu.org>
8170
8171 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
8172 IT->string is nil. (Bug#10263)
8173
8174 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
8175
8176 * nsterm.h (x_free_frame_resources): Declare.
8177
8178 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
8179 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
8180
8181 * nsterm.h (ns_get_defaults_value): Declare.
8182
8183 * nsterm.m (ns_default): Call ns_get_defaults_value.
8184
8185 2011-12-09 Eli Zaretskii <eliz@gnu.org>
8186
8187 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
8188 (Bug#10170)
8189
8190 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8191
8192 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
8193 that where the value of an _OBJC_* symbol points to is in the .bss
8194 section (Bug#10240).
8195
8196 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
8197
8198 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
8199 after the loop to call ccl_driver at least once (Bug#8619).
8200
8201 2011-12-08 Kenichi Handa <handa@m17n.org>
8202
8203 * ftfont.c (get_adstyle_property): Fix previous change
8204 (Bug#10233).
8205
8206 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
8207
8208 * w32.c (init_environment): If no_site_lisp, remove site-lisp
8209 dirs from the default value of EMACSLOADPATH (bug#10208).
8210
8211 2011-12-07 Glenn Morris <rgm@gnu.org>
8212
8213 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
8214 installation and source directories as well. (Bug#10208)
8215
8216 2011-12-06 Chong Yidong <cyd@gnu.org>
8217
8218 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
8219
8220 2011-12-06 Glenn Morris <rgm@gnu.org>
8221
8222 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
8223 as an error, not just -1. (Bug#10217)
8224
8225 2011-12-05 Chong Yidong <cyd@gnu.org>
8226
8227 * keyboard.c (process_special_events): New function.
8228 (swallow_events, Finput_pending_p): Use it (Bug#10195).
8229
8230 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
8231
8232 * coding.c (encode_designation_at_bol): Don't use uninitialized
8233 local variable (Bug#9318).
8234
8235 2011-12-05 Kenichi Handa <handa@m17n.org>
8236
8237 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
8238 return Qnil (Bug#8046, Bug#10193).
8239
8240 2011-12-05 Kenichi Handa <handa@m17n.org>
8241
8242 * coding.c (encode_designation_at_bol): New args charbuf_end and
8243 dst. Return the number of produced bytes. Callers changed.
8244 (coding_set_source): Return how many bytes coding->source was
8245 relocated.
8246 (coding_set_destination): Return how many bytes
8247 coding->destination was relocated.
8248 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
8249 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
8250
8251 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
8252
8253 * coding.c (CODING_CHAR_CHARSET_P): New macro.
8254 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
8255 macro (Bug#9318).
8256
8257 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
8258
8259 The following changes are to fix Bug#9318.
8260
8261 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
8262 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
8263 (encode_coding_iso_2022, encode_coding_sjis)
8264 (encode_coding_big5, encode_coding_charset): Use the above macros.
8265
8266 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
8267
8268 * lisp.h (process_quit_flag): Fix external declaration.
8269
8270 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
8271
8272 Don't macro-inline non-performance-critical code.
8273 * eval.c (process_quit_flag): New function.
8274 * lisp.h (QUIT): Use it.
8275
8276 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
8277
8278 * nsfns.m (get_geometry_from_preferences): New function.
8279 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
8280
8281 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
8282
8283 * emacs.c (Qkill_emacs): Define.
8284 (syms_of_emacs): Initialize it.
8285 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
8286 Qquit_flag to `kill-emacs' instead.
8287 (quit_throw_to_read_char): Add parameter `from_signal'.
8288 All callers changed. Call Fkill_emacs if requested and safe.
8289 * lisp.h (QUIT): Call Fkill_emacs if requested.
8290
8291 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
8292
8293 * widget.c (update_wm_hints): Return if wmshell is null.
8294 (widget_update_wm_size_hints): New function.
8295
8296 * widget.h (widget_update_wm_size_hints): Declare.
8297
8298 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
8299 widget_update_wm_size_hints (Bug#10104).
8300
8301 2011-12-03 Eli Zaretskii <eliz@gnu.org>
8302
8303 * xdisp.c (handle_invisible_prop): If the invisible text ends just
8304 before a newline, prepare the bidi iterator for consuming the
8305 newline, and keep the current paragraph direction. (Bug#10183)
8306 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
8307
8308 2011-12-02 Juri Linkov <juri@jurta.org>
8309
8310 * search.c (Fword_search_regexp): New Lisp function created from
8311 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
8312 (Fword_search_backward, Fword_search_forward)
8313 (Fword_search_backward_lax, Fword_search_forward_lax):
8314 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
8315 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
8316
8317 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8318
8319 * fileio.c (Finsert_file_contents): Move after-change-function call
8320 to before the "handled:" label, since all "goto handled" appear in
8321 cases where the *-change-functions have already been properly called
8322 (bug#10117).
8323
8324 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
8325
8326 * keyboard.c (interrupt_signal): Don't call kill-emacs when
8327 waiting for input. (Bug#10169)
8328
8329 2011-11-30 Eli Zaretskii <eliz@gnu.org>
8330
8331 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
8332 verifies glyph row's hash code--we have just reallocated the
8333 glyphs, so their contents can be complete garbage. (Bug#10164)
8334
8335 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
8336
8337 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
8338
8339 2011-11-30 Eli Zaretskii <eliz@gnu.org>
8340
8341 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
8342 attributes are tested _before_ calling verify_row_hash, to protect
8343 against GCC re-ordering of the tests. (Bug#10164)
8344
8345 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
8346
8347 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
8348
8349 * xterm.c (handle_one_xevent): Only set async_visible and friends
8350 if net_wm_state_hidden_seen is non-zero (Bug#10002)
8351 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
8352 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
8353
8354 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
8355
8356 Remove GCPRO-related macros that exist only to avoid shadowing locals.
8357 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
8358 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
8359 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
8360 All uses changed to use GCPRO1 etc.
8361 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
8362 Revert to old implementation (i.e., before 2011-03-11).
8363
8364 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8365
8366 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
8367 of scroll runs so as to avoid assigning disabled bogus rows and
8368 unnecessary graphics copy operations.
8369
8370 2011-11-27 Eli Zaretskii <eliz@gnu.org>
8371
8372 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
8373 (snprintf) [_MSC_VER]: Redirect to _snprintf.
8374 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
8375 (malloc, free, realloc, calloc): Redirect to e_* only when
8376 compiling Emacs.
8377
8378 * lisp.h (GCTYPEBITS): Move before first use.
8379 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
8380 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
8381 this macro definition.
8382
8383 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
8384 _MSC_VER.
8385
8386 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
8387
8388 * gtkutil.c (xg_create_frame_widgets):
8389 Call gtk_window_set_has_resize_grip (FALSE) if that function is
8390 present with Gtk+ 2.0.
8391
8392 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
8393
8394 * fileio.c (Finsert_file_contents): Undo previous change; see
8395 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
8396
8397 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
8398
8399 Rename locals to avoid shadowing.
8400 * fileio.c (Finsert_file_contents):
8401 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
8402 * process.c (wait_reading_process_output):
8403 Rename inner 'proc' to 'p' to avoid shadowing.
8404 Indent for consistency with usual Emacs style.
8405
8406 2011-11-25 Eli Zaretskii <eliz@gnu.org>
8407
8408 * xdisp.c (redisplay_window): If cursor row is not fully visible
8409 after recentering, and scroll-conservatively is set to a large
8410 number, scroll window by a few more lines to make the cursor fully
8411 visible and out of scroll-margin. (Bug#10105)
8412 (start_display): Don't move to the next line if the display should
8413 start at a newline that is part of a display vector or an overlay
8414 string. (Bug#10119)
8415
8416 2011-11-24 Juri Linkov <juri@jurta.org>
8417
8418 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
8419 after the `MagickPingImage' call. (Bug#10112)
8420
8421 2011-11-23 Chong Yidong <cyd@gnu.org>
8422
8423 * window.c (Fcoordinates_in_window_p): Accept only live windows.
8424
8425 2011-11-23 Martin Rudalics <rudalics@gmx.at>
8426
8427 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
8428 making another buffer current. (Bug#10114)
8429
8430 2011-11-23 Glenn Morris <rgm@gnu.org>
8431
8432 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
8433
8434 2011-11-23 Chong Yidong <cyd@gnu.org>
8435
8436 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
8437 using it (Bug#5984).
8438
8439 2011-11-22 Eli Zaretskii <eliz@gnu.org>
8440
8441 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
8442 and header-lines, as they don't have one computed for them.
8443 (Bug#10098)
8444
8445 * .gdbinit (prow): Make displayed values more self-explaining.
8446 Add row's hash code.
8447
8448 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8449
8450 * process.c (wait_reading_process_output): Fix asynchrounous
8451 GnuTLS socket handling on some versions of the GnuTLS library.
8452 (wait_reading_process_output): Add comment and URL.
8453
8454 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
8455
8456 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
8457
8458 2011-11-21 Chong Yidong <cyd@gnu.org>
8459
8460 * window.c (Fnext_window, Fprevious_window): Doc fix.
8461
8462 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8463
8464 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
8465
8466 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
8467
8468 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
8469
8470 2011-11-20 Martin Rudalics <rudalics@gmx.at>
8471
8472 * window.c (Fset_window_combination_limit): Rename argument
8473 STATUS to LIMIT.
8474 (Vwindow_combination_limit): Remove "status" from doc-string.
8475
8476 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
8477
8478 * m/ibms390.h: Remove.
8479 * m/ibms390x.h: Don't include "ibms390.h".
8480
8481 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8482
8483 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
8484 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
8485
8486 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
8487
8488 * casetab.c (Fset_case_table):
8489 * charset.c (Fcharset_after): Fix typos.
8490
8491 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
8492
8493 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
8494 Otherwise, valgrind does not work on some platforms.
8495 Problem reported by Andreas Schwab in
8496 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
8497 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
8498 is set, removing the need for VIRT_ADDRESS_VARIES.
8499 (PURE_P): Use a more-efficient implementation that needs just one
8500 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
8501 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
8502 to 4 (xorl, subq, cmpq, setbe).
8503 * alloc.c (pure): Always extern now, since that's the
8504 VIRT_ADDR_VARIES behavior.
8505 (PURE_POINTER_P): Use a single comparison, not two, for
8506 consistency with the new puresize.h.
8507 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
8508 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
8509 Remove VIRT_ADDR_VARIES no longer needed.
8510
8511 2011-11-19 Eli Zaretskii <eliz@gnu.org>
8512
8513 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
8514 (erase_phys_cursor, update_window_cursor, show_mouse_face)
8515 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
8516 behave as if the cursor position were at the window margin.
8517
8518 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
8519 and the cursor position is out of bounds, behave as if the cursor
8520 position were at the window margin. (Bug#10075)
8521
8522 2011-11-18 Chong Yidong <cyd@gnu.org>
8523
8524 * window.c (Fwindow_combination_limit): Make first argument
8525 non-optional, since it is meaningless for live windows like the
8526 selected window.
8527
8528 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
8529
8530 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
8531
8532 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
8533
8534 * intervals.c: Fix grafting over the whole buffer (bug#10071).
8535 (graft_intervals_into_buffer): Simplify.
8536
8537 2011-11-18 Eli Zaretskii <eliz@gnu.org>
8538
8539 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
8540 hash values of the two rows.
8541 (copy_row_except_pointers): Preserve the used[] arrays and the
8542 hash values of the two rows. (Bug#10035)
8543 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
8544
8545 * xdisp.c (row_hash): New function, body extracted from
8546 compute_line_metrics.
8547 (compute_line_metrics): Call row_hash, instead of computing the
8548 hash code inline.
8549
8550 * dispnew.c (verify_row_hash): Call row_hash for computing the
8551 hash code of a row, instead of duplicating code from xdisp.c.
8552
8553 * dispextern.h (row_hash): Add prototype.
8554
8555 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
8556
8557 * frame.c (delete_frame): Don't delete the terminal when the last
8558 X frame is closed if emacs is built with GTK toolkit.
8559
8560 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
8561
8562 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
8563
8564 2011-11-17 Martin Rudalics <rudalics@gmx.at>
8565
8566 * window.c (Vwindow_splits): Rename to
8567 Vwindow_combination_resize. Suggested by Juri Linkov.
8568 (Fsplit_window_internal): Use Vwindow_combination_resize instead
8569 of Vwindow_splits.
8570
8571 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
8572
8573 * nsfns.m (Fns_font_name):
8574 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
8575
8576 2011-11-16 Martin Rudalics <rudalics@gmx.at>
8577
8578 * window.h (window): Rename slot "nest" to "combination_limit".
8579 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
8580 (Fset_window_nest): Rename to Fset_window_combination_limit.
8581 (Vwindow_nest): Rename to Vwindow_combination_limit.
8582 (recombine_windows, make_parent_window, make_window)
8583 (Fsplit_window_internal, saved_window)
8584 (Fset_window_configuration, save_window_save): Rename all
8585 occurrences of window_nest to window_combination_limit.
8586
8587 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8588
8589 * image.c (imagemagick_load_image): Fix typo.
8590
8591 2011-11-14 Eli Zaretskii <eliz@gnu.org>
8592
8593 * xdisp.c (display_line): Move the call to
8594 highlight_trailing_whitespace before the call to
8595 compute_line_metrics, since the latter needs to see the final
8596 faces of all the glyphs to compute ROW's hash value.
8597 Fixes assertion violations in row_equal_p. (Bug#10035)
8598
8599 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
8600
8601 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
8602 just return (bug#10044).
8603
8604 2011-11-12 Eli Zaretskii <eliz@gnu.org>
8605
8606 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
8607 with user-defined heap size. Bump the default size of the temacs
8608 heap to 27MB, to avoid memory warning when running temacs.
8609 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
8610
8611 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
8612 current_matrix and desired_matrix. (Bug#9990)
8613 (verify_row_hash) [XASSERTS]: New function.
8614 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
8615 that the hash value of glyph rows is correct.
8616
8617 2011-11-12 Martin Rudalics <rudalics@gmx.at>
8618
8619 * window.h (window): Remove splits slot.
8620 * window.c (Fwindow_splits, Fset_window_splits): Remove.
8621 (Fdelete_other_windows_internal, make_parent_window)
8622 (make_window, Fsplit_window_internal, Fdelete_window_internal)
8623 (Fset_window_configuration, save_window_save): Don't deal with
8624 split status of windows.
8625 (saved_window): Remove splits slot.
8626 (Vwindow_splits): Rewrite doc-string.
8627
8628 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
8629
8630 * xfns.c (unwind_create_frame):
8631 * nsfns.m (unwind_create_frame):
8632 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
8633 Vframe_list (Bug#9999).
8634
8635 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
8636
8637 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
8638
8639 2011-11-11 Kenichi Handa <handa@m17n.org>
8640
8641 * callproc.c (Fcall_process): Set the member dst_multibyte of
8642 process_coding.
8643
8644 2011-11-11 Johan Bockgård <bojohan@gnu.org>
8645
8646 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
8647 avoid a crash (bug#9496).
8648
8649 2011-11-09 Chong Yidong <cyd@gnu.org>
8650
8651 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
8652 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
8653
8654 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
8655
8656 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
8657
8658 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
8659
8660 Avoid some portability problems by eschewing 'extern inline' functions.
8661 The trivial performance wins aren't worth the portability hassles; see
8662 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
8663 et seq.
8664 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
8665 (window_box_width, window_box_left, window_box_left_offset)
8666 (window_box_right, window_box_right_offset): Undo previous change,
8667 by removing the "extern"s.
8668 * intervals.c (adjust_intervals_for_insertion)
8669 (adjust_intervals_for_deletion): Undo previous change,
8670 making these static again.
8671 (offset_intervals, temp_set_point_both, temp_set_point)
8672 (copy_intervals_to_string): No longer inline.
8673 * xdisp.c (window_text_bottom_y, window_box_width)
8674 (window_box_height, window_box_left_offset)
8675 (window_box_right_offset, window_box_left, window_box_right)
8676 (window_box): No longer inline.
8677
8678 2011-11-08 Chong Yidong <cyd@gnu.org>
8679
8680 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
8681 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
8682 Signal an error if not a live window.
8683 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
8684 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
8685
8686 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
8687
8688 * lisp.h (syms_of_abbrev): Remove declaration.
8689 Reported by CHENG Gao <chenggao@royau.me>.
8690
8691 2011-11-07 Eli Zaretskii <eliz@gnu.org>
8692
8693 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
8694 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
8695 of temacs in GUI mode.
8696
8697 2011-11-07 Martin Rudalics <rudalics@gmx.at>
8698
8699 * window.h: Declare delete_all_child_windows instead of
8700 delete_all_subwindows.
8701 * window.c (Fwindow_nest, Fset_window_nest)
8702 (Fset_window_new_total, Fset_window_new_normal)
8703 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
8704 (delete_all_subwindows): Rename to delete_all_child_windows.
8705 (Fdelete_other_windows_internal, Fset_window_configuration):
8706 Call delete_all_child_windows instead of delete_all_subwindows.
8707 * frame.c (delete_frame): Call delete_all_child_windows instead
8708 of delete_all_subwindows.
8709
8710 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
8711
8712 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
8713 This is also needed for porting to any host where GC_MARK_STACK is
8714 not GC_MAKE_GCPROS_NOOPS.
8715 (which_symbols): Use it.
8716
8717 2011-11-07 Kenichi Handa <handa@m17n.org>
8718
8719 * coding.c (coding_set_destination): Check coding->src_pos only
8720 when coding->src_object is a buffer (bug#9910).
8721
8722 * process.c (send_process): Set the member src_multibyte of coding
8723 to 0 (bug#9911) when sending a unibyte text.
8724
8725 * callproc.c (Fcall_process): Set the member src_multibyte of
8726 process_coding to 0 (bug#9912).
8727
8728 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8729
8730 * xmenu.c (cleanup_widget_value_tree): New function.
8731 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
8732 calling free_menubar_widget_value_tree directly (Bug#9830).
8733
8734 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
8735
8736 Fix some portability problems with 'inline'.
8737 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
8738 (window_box_width, window_box_left, window_box_left_offset)
8739 (window_box_right, window_box_right_offset): Declare extern.
8740 Otherwise, these inline functions do not conform to C99 and
8741 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
8742 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
8743 * intervals.c (adjust_intervals_for_insertion)
8744 (adjust_intervals_for_deletion): Now extern, because otherwise the
8745 extern inline functions 'offset_intervals' couldn't refer to it.
8746 (static_offset_intervals): Remove.
8747 (offset_intervals): Rewrite using the old contents of
8748 static_offset_intervals. The old version didn't conform to C99
8749 because an extern inline function contained a reference to an
8750 identifier with static linkage.
8751
8752 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
8753
8754 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
8755 GC.
8756
8757 2011-11-06 Eli Zaretskii <eliz@gnu.org>
8758
8759 * xdisp.c (init_iterator, reseat_to_string): Don't set the
8760 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
8761 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
8762 return Qleft_to_right.
8763
8764 2011-11-06 Chong Yidong <cyd@gnu.org>
8765
8766 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
8767 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
8768 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
8769 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
8770 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
8771 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
8772 (Fwindow_vscroll): Doc fix.
8773 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
8774 argument, since it makes no sense to pass a live window and for
8775 consistency with window-child.
8776
8777 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
8778
8779 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
8780 support MSVC.
8781
8782 2011-11-05 Jason Rumney <jasonr@gnu.org>
8783
8784 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
8785 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
8786 fonts (Bug#6029).
8787 (add_font_entity_to_list): Fix logic errors in mixed boolean and
8788 bitwise arithmetic preventing use of unicode-sip and non-truetype
8789 opentype fonts.
8790
8791 2011-11-05 Eli Zaretskii <eliz@gnu.org>
8792
8793 * s/ms-w32.h (fstat, stat, utime): Move redirections to
8794 "emacs"-only part.
8795
8796 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
8797 initialization code to keep similarity to xfns.c after changes
8798 from 2011-11-05.
8799
8800 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
8801
8802 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
8803 (unwind_create_frame): New function (Bug#9943).
8804 (Fx_create_frame): Restructure code to be more similar to the one in
8805 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
8806 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
8807 Move terminal->reference_count++ just before making the frame official
8808 (Bug#9943).
8809
8810 * nsterm.m (x_free_frame_resources): New function.
8811 (x_destroy_window): Move code to x_free_frame_resources.
8812
8813 * xfns.c (unwind_create_frame): Fix comment.
8814 (Fx_create_frame, x_create_tip_frame):
8815 Move terminal->reference_count++ just before making the frame
8816 official. Move initialization of image_cache_refcount and
8817 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
8818
8819 2011-11-05 Eli Zaretskii <eliz@gnu.org>
8820
8821 Support MSVC build with newer versions of Visual Studio.
8822 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
8823 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
8824 nt/gmake.defs.
8825
8826 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
8827 which are not supported by MSVC.
8828 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
8829 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
8830 bitfields.
8831 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
8832 types in bitfields.
8833 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
8834
8835 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
8836
8837 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
8838
8839 Support MSVC build with newer versions of Visual Studio.
8840 * w32.c: Don't include w32api.h for MSVC.
8841 (init_environment) [_MSC_VER]: Call sys_access, not _access.
8842
8843 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
8844 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
8845 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
8846 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
8847 e_* cousins.
8848 (alloca) [_MSC_VER]: Define to _alloca.
8849
8850 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
8851
8852 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
8853
8854 2011-11-04 Eli Zaretskii <eliz@gnu.org>
8855
8856 * xdisp.c (note_mouse_highlight): If either of
8857 previous/next-single-property-change returns nil, treat that as
8858 the beginning or the end of the buffer. (Bug#9955)
8859
8860 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
8861
8862 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
8863 label is not null (Bug#9951).
8864 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
8865 may be NULL.
8866
8867 2011-11-04 Eli Zaretskii <eliz@gnu.org>
8868
8869 * window.c (Fwindow_body_size): Mention in the doc string that the
8870 return value is in frame's canonical units. (Bug#9949)
8871
8872 2011-11-03 Eli Zaretskii <eliz@gnu.org>
8873
8874 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
8875
8876 * w32fns.c (unwind_create_frame): If needed, free the glyph
8877 matrices of the partially constructed frame. (Bug#9943)
8878 * xfns.c (unwind_create_frame): Likewise.
8879
8880 2011-11-01 Eli Zaretskii <eliz@gnu.org>
8881
8882 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
8883 Don't stop backward scan on the continuation glyph, even though
8884 its CHARPOS is positive.
8885 (mouse_face_from_buffer_pos, note_mouse_highlight):
8886 Rename cover_string to disp_string.
8887
8888 2011-11-01 Martin Rudalics <rudalics@gmx.at>
8889
8890 * window.c (temp_output_buffer_show): Don't use
8891 Vtemp_buffer_show_specifiers.
8892 (Vtemp_buffer_show_specifiers): Remove unused variable.
8893
8894 2011-10-30 Eli Zaretskii <eliz@gnu.org>
8895
8896 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
8897 past the beginning of the current glyph matrix.
8898
8899 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
8900
8901 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
8902 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
8903 HAVE_GTK3 (Bug#9869).
8904
8905 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
8906 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
8907
8908 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
8909
8910 * xterm.c: Declare x_handle_net_wm_state to return int.
8911 (handle_one_xevent): Check if we are iconified but don't have
8912 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
8913 (get_current_wm_state): Return non-zero if not hidden,
8914 check for _NET_WM_STATE_HIDDEN (Bug#9893).
8915 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
8916 (x_handle_net_wm_state): Return what get_current_wm_state returns.
8917 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
8918
8919 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
8920
8921 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
8922 so that this new function doesn't get optimized away by a
8923 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
8924
8925 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
8926
8927 * frame.h (MOUSE_HL_INFO): Remove excess parens.
8928
8929 2011-10-29 Eli Zaretskii <eliz@gnu.org>
8930
8931 Fix the `xbytecode' command.
8932 * .gdbinit (xprintbytestr): New command.
8933 (xwhichsymbols): Rename from `which'; all callers changed.
8934 (xbytecode): Print the byte-code string as well.
8935
8936 2011-10-29 Kim Storm <storm@cua.dk>
8937
8938 * alloc.c (which_symbols): New function.
8939
8940 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
8941
8942 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
8943 line. (Bug#9903)
8944
8945 2011-10-29 Glenn Morris <rgm@gnu.org>
8946
8947 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
8948 Not clear what it was for, and it causes various bugs. (Bug#9839)
8949
8950 2011-10-28 Eli Zaretskii <eliz@gnu.org>
8951
8952 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
8953 possible random value that matches one of those tested as
8954 condition to clear the mouse face.
8955
8956 2011-10-28 Chong Yidong <cyd@gnu.org>
8957
8958 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
8959
8960 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
8961
8962 * window.c (make_window): Initialize phys_cursor_on_p.
8963
8964 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8965
8966 * lisp.h (struct Lisp_Symbol): Update comments.
8967
8968 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
8969
8970 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
8971
8972 2011-10-28 Eli Zaretskii <eliz@gnu.org>
8973
8974 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
8975 <oslsachem@gmail.com> for helping to debug this.
8976
8977 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
8978 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
8979 (g_b_init_get_glyph_outline_w): New static variables.
8980 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
8981 (GetGlyphOutlineW_Proc): New typedefs.
8982 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
8983 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
8984 New functions.
8985 (w32font_open_internal, compute_metrics):
8986 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
8987 instead of calling the "wide" APIs directly.
8988
8989 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
8990
8991 * w32.h (syms_of_w32font): Add prototype.
8992
8993 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
8994
8995 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
8996 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
8997 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
8998 (Fmove_to_window_line): Doc fix.
8999
9000 2011-10-27 Chong Yidong <cyd@gnu.org>
9001
9002 * process.c (make_process): Set gnutls_state to NULL.
9003
9004 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
9005 non-NULL, regardless of GNUTLS_INITSTAGE.
9006 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
9007 an error. Set process slots as soon as we allocate them.
9008
9009 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
9010
9011 2011-10-27 Chong Yidong <cyd@gnu.org>
9012
9013 * gnutls.c (emacs_gnutls_deinit): New function.
9014 Deallocate credentials structures as well as calling gnutls_deinit.
9015 (Fgnutls_deinit, Fgnutls_boot): Use it.
9016
9017 * process.c (make_process): Initialize GnuTLS credentials to NULL.
9018 (deactivate_process): Call emacs_gnutls_deinit.
9019
9020 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
9021
9022 * image.c (x_create_x_image_and_pixmap):
9023 * w32.c (sys_rename, w32_delayed_load):
9024 * w32font.c (fill_in_logfont):
9025 * w32reg.c (x_get_string_resource): Silence compiler warnings.
9026
9027 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
9028
9029 * w32fns.c (w32_default_color_map): New function,
9030 extracted from Fw32_default_color_map.
9031 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
9032
9033 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
9034
9035 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
9036
9037 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9038
9039 * keyboard.c (test_undefined): New function (bug#9751).
9040 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
9041
9042 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
9043
9044 * sysdep.c (init_sys_modes): Fix the check for the controlling
9045 terminal (Bug#6649).
9046
9047 2011-10-20 Eli Zaretskii <eliz@gnu.org>
9048
9049 * dispextern.h (struct bidi_it): New member next_en_type.
9050
9051 * bidi.c (bidi_line_init): Initialize the next_en_type member.
9052 (bidi_resolve_explicit_1): When next_en_pos is valid for the
9053 current character, check also for next_en_type being WEAK_EN.
9054 (bidi_resolve_weak): Don't enter the expensive loop if the current
9055 position is before next_en_pos. Record the bidi type of the first
9056 non-ET, non-BN character we find, in addition to its position.
9057 (bidi_level_of_next_char): Invalidate next_en_type when
9058 next_en_pos is over-stepped.
9059
9060 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
9061
9062 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
9063 * editfns.c: Rewrite current-time-zone so that it invokes
9064 the equivalent of (format-time-string "%Z") to get the time zone name.
9065 This fixes a bug when the time zone name contains characters that
9066 need converting from the system time locale to Emacs internal format.
9067 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
9068 that patch fixed format-time-string to do the conversion, but
9069 I forgot to fix current-time-zone.
9070 (format_time_string): New function, containing most of
9071 what Fformat_time_string used to contain.
9072 (Fformat_time_string): Rewrite in terms of format_time_string.
9073 This doesn't change this function's behavior.
9074 (current-time-zone): Rewrite to use format_time_string.
9075 This fixes the bug reported by Michael Schierl in
9076 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
9077 Jason Rumney's 2007-06-07 change worked around this bug, but
9078 didn't fix it.
9079 * systime.h (tzname, timezone): Remove no-longer-used declarations.
9080
9081 2011-10-19 Eli Zaretskii <eliz@gnu.org>
9082
9083 * xdisp.c (start_display): If the character at POS is displayed
9084 via a display vector, reset IT->current.dpvec_index to zero.
9085 (try_window_reusing_current_matrix): If a line ends in a display
9086 vector or the next line starts in a display vector, continue
9087 redrawing the window even though the character position of
9088 start_row was reached.
9089 (Bug#9771, part 2)
9090
9091 2011-10-18 Chong Yidong <cyd@gnu.org>
9092
9093 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
9094 with nobreak-char-display too.
9095
9096 2011-10-18 Eli Zaretskii <eliz@gnu.org>
9097
9098 Fix part 3 of bug#9771.
9099 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
9100 (bidi_resolve_neutral): Don't enter the expensive loop looking for
9101 non-neutral characters if the current character is a paragraph
9102 separator (a.k.a. Newline). This avoids running the same
9103 expensive loop twice, once when we consume the preceding newline
9104 and the other time when the line actually needs to be displayed.
9105 Avoid the loop when we see neutrals on the base embedding level
9106 following a character whose directionality is the same as the
9107 paragraph's. This avoids running the expensive loop when a line
9108 ends in a long sequence of neutrals, like control characters.
9109 Add assertion against STRONG_AL type. Slightly rearrange code
9110 that determines the type of a neutral given the first non-neutral
9111 that follows it.
9112 (bidi_level_of_next_char): Set next_en_pos to zero when
9113 invalidating its info.
9114
9115 2011-10-17 Eli Zaretskii <eliz@gnu.org>
9116
9117 * xdisp.c (push_display_prop): Determine whether to record string
9118 or buffer position by IT->string, not by IT->method. Allow
9119 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
9120 (move_it_vertically_backward): Don't look for character position
9121 immediately after the newline when in a continuation line.
9122 (Bug#9771, part 1)
9123
9124 2011-10-15 Martin Rudalics <rudalics@gmx.at>
9125
9126 * window.c (coordinates_in_window): Rewrite and delabelize
9127 vertical border check. (Bug#5357) (Bug#9618)
9128
9129 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
9130
9131 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
9132 errors in XSetWindowBorder (bug#9310).
9133
9134 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
9135
9136 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
9137 avoid crash when xmalloc overrun checking is enabled.
9138
9139 2011-10-13 Eli Zaretskii <eliz@gnu.org>
9140
9141 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
9142 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
9143 cursor motion with <left> and <right> arrow keys.
9144
9145 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
9146 some callers set that themselves.
9147
9148 2011-10-12 Eli Zaretskii <eliz@gnu.org>
9149
9150 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
9151 display string and the previous row comes from the same string and
9152 is empty. (Bug#9739) (Bug#9738)
9153
9154 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
9155
9156 * doc.c (get_doc_string): Encode file name (bug#9735).
9157
9158 2011-10-12 Eli Zaretskii <eliz@gnu.org>
9159
9160 * bidi.c (bidi_level_of_next_char):
9161 * xdisp.c (get_visually_first_element): Remove old incorrect
9162 comments regarding the Unicode Line Separator character.
9163
9164 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
9165
9166 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
9167
9168 * alloc.c (Fgc_status): Do not access beyond zombies array
9169 boundary if nzombies > MAX_ZOMBIES.
9170 * alloc.c (dump_zombies): Add missing format specifier.
9171
9172 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
9173
9174 * xdisp.c (set_cursor_from_row): Simplify conditionals,
9175 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
9176
9177 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
9178 Some packages use them to denote characters with modifiers.
9179
9180 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
9181
9182 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
9183 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
9184 matching a pp-number. Rename parameter var to var1.
9185
9186 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9187
9188 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
9189
9190 2011-10-08 Glenn Morris <rgm@gnu.org>
9191
9192 * callint.c (Fcall_interactively): Give a more explicit error for the
9193 'c' case with a non-character input. (Bug#8479)
9194
9195 2011-10-08 Eli Zaretskii <eliz@gnu.org>
9196
9197 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
9198 lines.
9199 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
9200 lines that are hscrolled on the left.
9201
9202 * dispnew.c (buffer_posn_from_coords): Account for a possible
9203 presence of header-line. (Bug#4426)
9204
9205 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
9206
9207 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
9208 Don't advertise functionality which we discourage or doesn't work.
9209
9210 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
9211
9212 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
9213 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
9214 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
9215 this makes Emacs dump core during garbage collection on rare
9216 occasions. sizeof is obviously inferior to offsetof here, so
9217 stick with offsetof.
9218 (GC_POINTER_ALIGNMENT): New macro.
9219 (mark_memory): Omit 3rd (offset) arg; caller changed.
9220 Don't assume EMACS_INT alignment is the same as pointer alignment.
9221
9222 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9223
9224 * keyboard.c (read_key_sequence_remapped): New var.
9225 (read_key_sequence): Compute remapping in the right buffer.
9226 (command_loop_1): Use read_key_sequence's remapping directly.
9227
9228 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9229
9230 * dired.c (file_name_completion): Don't expand file name.
9231 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
9232 before checking file name handler.
9233
9234 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
9235 they've been requested explicitly (bug#9591).
9236
9237 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
9238
9239 * keymap.c (Fsingle_key_description): Use make_specified_string
9240 instead of build_string to build string from push_key_description.
9241 (Bug#5193)
9242
9243 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
9244
9245 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
9246 This fixes a Y2038 bug on 64-bit hosts.
9247 * buffer.c (reset_buffer):
9248 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
9249 (Fclear_buffer_auto_save_failure):
9250 Use 0, not -1, to represent an unset failure time, since time_t
9251 might not be signed.
9252
9253 Remove dependency on glibc malloc internals.
9254 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
9255 Move back here from lisp.h, but with their new implementations.
9256 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
9257 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
9258 * charset.c (charset_table_init): New static var.
9259 (syms_of_charset): Use it instead of xmalloc. This removes a
9260 dependency on glibc malloc internals. See Eli Zaretskii's comment in
9261 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
9262 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
9263 Move back to alloc.c.
9264 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
9265 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
9266
9267 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
9268
9269 * nsterm.m (windowDidResize): Call x_set_window_size only when
9270 ns_in_resize is true. Otherwise set pixelwidth/height and
9271 call change_frame_size (Bug#9628).
9272
9273 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
9274
9275 Port --enable-checking=all to Fedora 14 x86-64.
9276 * charset.c (syms_of_charset): Also account for glibc malloc's
9277 internal overhead when calculating the initial malloc maximum.
9278
9279 Port --enable-checking=all to Fedora 14 x86.
9280 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
9281 Move to lisp.h.
9282 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
9283 (overrun_check_realloc, overrun_check_free):
9284 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
9285 That way, xmalloc returns a properly-aligned pointer even if
9286 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
9287 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
9288 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
9289 into account when calculating the initial malloc maximum.
9290 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
9291 Move here from alloc.c, so that charset.c can use it too.
9292 Properly align; the old code wasn't right for common 32-bit hosts
9293 when configured with --enable-checking=all.
9294 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
9295 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
9296
9297 2011-09-29 Eli Zaretskii <eliz@gnu.org>
9298
9299 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
9300 use EDOM.
9301
9302 2011-09-28 Eli Zaretskii <eliz@gnu.org>
9303
9304 * xdisp.c (compute_display_string_end): If there's no display
9305 string at CHARPOS, return -1.
9306
9307 * bidi.c (bidi_fetch_char): When compute_display_string_end
9308 returns a negative value, treat the character as a normal
9309 character not covered by a display string. (Bug#9624)
9310
9311 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
9312
9313 * lread.c (Fread_from_string): Fix typo in docstring.
9314
9315 2011-09-27 Eli Zaretskii <eliz@gnu.org>
9316
9317 * xdisp.c (handle_invisible_prop): If invisible text ends on a
9318 newline, reseat the iterator instead of bidi-iterating there one
9319 character at a time. (Bug#9610)
9320 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
9321 TO_CHARPOS if the bidi iterator is at base embedding level.
9322
9323 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
9324
9325 * lread.c (readevalloop): Use correct code for NBSP.
9326 (read1): Likewise. (Bug#9608)
9327
9328 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
9329
9330 * dbusbind.c (Fdbus_register_signal): When service is not
9331 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
9332
9333 2011-09-25 Glenn Morris <rgm@gnu.org>
9334
9335 * buffer.c (truncate-lines): Doc fix.
9336
9337 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
9338
9339 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
9340 (Fset_window_next_buffers): Doc fix.
9341
9342 2011-09-24 Glenn Morris <rgm@gnu.org>
9343
9344 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
9345
9346 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
9347
9348 Fix minor problems found by static checking.
9349 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
9350 * indent.c (Fvertical_motion): Fix == vs = typo.
9351
9352 2011-09-24 Eli Zaretskii <eliz@gnu.org>
9353
9354 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
9355 Default value is now t. Doc fix.
9356
9357 * indent.c (Fvertical_motion): Compute and apply the overshoot
9358 logic when moving up, not only when moving down. Fix the
9359 confusing name and values of the it_overshoot_expected variable;
9360 logic changes accordingly. (Bug#9254) (Bug#9549)
9361
9362 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
9363 CHARPOS is covered by a display string which includes newlines.
9364 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
9365 is covered by a display string with embedded newlines.
9366
9367 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
9368
9369 * dbusbind.c (Fdbus_register_signal): Add match rule to
9370 Vdbus_registered_objects_table. (Bug#9581)
9371 (Fdbus_register_method, Vdbus_registered_objects_table):
9372 Fix docstring.
9373
9374 2011-09-24 Jim Meyering <meyering@redhat.com>
9375
9376 do not ignore write error for any output size
9377 The previous change was incomplete.
9378 While it makes emacs --batch detect the vast majority of stdout
9379 write failures, errors were still ignored whenever the output size is
9380 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
9381 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
9382 && echo FAIL: ignored write error
9383 FAIL: ignored write error
9384 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
9385 && echo FAIL: ignored write error
9386 FAIL: ignored write error
9387 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
9388
9389 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
9390
9391 * emacs.c (Fkill_emacs): In noninteractive mode exit
9392 non-successfully if a write error occurred on stdout. (Bug#9574)
9393
9394 2011-09-21 Eli Zaretskii <eliz@gnu.org>
9395
9396 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
9397 the xassert test.
9398
9399 * dispextern.h (struct it): Update the comment documenting what
9400 can it->OBJECT be.
9401
9402 2011-09-20 Eli Zaretskii <eliz@gnu.org>
9403
9404 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
9405 a display string, extend search for cursor position to end of row.
9406 (find_row_edges): If the row ends in a newline from a display
9407 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
9408 Handle the case of a display string with multiple newlines.
9409 (Fcurrent_bidi_paragraph_direction): Fix search for previous
9410 non-empty line. Fixes confusing cursor motion with arrow keys at
9411 the beginning of a line that starts with whitespace.
9412
9413 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
9414
9415 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
9416 (bug#9493).
9417
9418 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
9419
9420 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
9421 boolean (Bug#9154).
9422
9423 2011-09-18 Eli Zaretskii <eliz@gnu.org>
9424
9425 * xdisp.c (display_line): Record maximum and minimum buffer
9426 positions even if no glyphs were produced (e.g., by a zero-width
9427 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
9428 buffer positions that will be removed from the glyph row because
9429 they don't fit.
9430 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
9431 column is beyond frame width: don't subtract 1 "pixel" when
9432 computing width of the stretch.
9433 (reseat_at_next_visible_line_start): Undo the change made on
9434 2011-09-17 that saved paragraph information and restored it after
9435 the call to `reseat'. (Bug#9545)
9436
9437 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9438
9439 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
9440 and turn window cursor on if cleared (Bug#9415).
9441
9442 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
9443
9444 * search.c (boyer_moore): Take unibyte characters from pattern
9445 literally. (Bug#9458)
9446
9447 2011-09-18 Eli Zaretskii <eliz@gnu.org>
9448
9449 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
9450
9451 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
9452
9453 Fix minor problem found by static checking.
9454 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
9455 initialized, to pacify gcc -Wuninitialized.
9456
9457 * fileio.c: Report proper errno when syscall falls.
9458 (Finsert_file_contents): Save and restore errno,
9459 so that report_file_error outputs the correct diagnostic.
9460 (Fwrite_region) [CLASH_DETECTION]: Likewise.
9461
9462 2011-09-18 Eli Zaretskii <eliz@gnu.org>
9463
9464 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
9465
9466 2011-09-17 Eli Zaretskii <eliz@gnu.org>
9467
9468 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
9469 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
9470
9471 2011-09-17 Eli Zaretskii <eliz@gnu.org>
9472
9473 * xdisp.c (reseat_at_next_visible_line_start): Keep information
9474 about the current paragraph and restore it after the call to reseat.
9475
9476 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
9477 (bidi_find_paragraph_start): Search back for paragraph beginning
9478 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
9479 (bidi_move_to_visually_next): Only trigger paragraph-related
9480 computations when the last character is a newline or at EOB, not
9481 just any NEUTRAL_B. (Bug#9470)
9482
9483 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
9484 truncated lines if point is covered by a display string. (Bug#9524)
9485
9486 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
9487
9488 * xselect.c: Relax test for outgoing X longs (Bug#9498).
9489 (cons_to_x_long): New function.
9490 (lisp_data_to_selection_data): Use it. Correct the test for
9491 short-versus-long data; it was negated. Break out of vector
9492 loop, for efficiency, when a long datum is discovered.
9493
9494 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9495
9496 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
9497
9498 2011-09-16 Eli Zaretskii <eliz@gnu.org>
9499
9500 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
9501 GCC PR/17406) by declaring this function with external scope.
9502
9503 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
9504
9505 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
9506 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
9507
9508 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
9509
9510 * editfns.c (Fformat): Correctly handle text properties on "%%".
9511
9512 2011-09-15 Eli Zaretskii <eliz@gnu.org>
9513
9514 * xterm.c (x_draw_composite_glyph_string_foreground):
9515 * w32term.c (x_draw_composite_glyph_string_foreground):
9516 * term.c (encode_terminal_code):
9517 * composite.c (composition_update_it, get_composition_id):
9518 * xdisp.c (get_next_display_element)
9519 (fill_composite_glyph_string): Add comments about special meaning
9520 of TAB characters in a composition.
9521
9522 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
9523
9524 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
9525 This occurs when processing a multibyte format.
9526 Problem reported by Wolfgang Jenker.
9527
9528 2011-09-15 Johan Bockgård <bojohan@gnu.org>
9529
9530 * xdisp.c (try_cursor_movement): Only check for exact match if
9531 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
9532
9533 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
9534
9535 Remove unused external symbols.
9536 * dispextern.h (calc_pixel_width_or_height): Remove decl.
9537 * xdisp.c (calc_pixel_width_or_height): Now static.
9538 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
9539 * indent.c (check_display_width):
9540 * w32term.c: Fix comment to match code.
9541 * xterm.c, xterm.h (x_catching_errors): Remove.
9542
9543 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
9544
9545 * xselect.c: Use signed conversions more consistently (Bug#9498).
9546 (selection_data_to_lisp_data): Assume incoming selection data are
9547 signed integers, not unsigned. This is to be consistent with
9548 outgoing selection data, which was modified to use signed integers
9549 in as part of the fix to Bug#9196 in response to Jan D.'s comment
9550 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
9551 expects long, not unsigned long.
9552
9553 2011-09-14 Eli Zaretskii <eliz@gnu.org>
9554
9555 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
9556 computation of loop end. Reported by Johan Bockgård
9557 <bojohan@gnu.org>.
9558
9559 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9560
9561 * frame.c (Fother_visible_frames_p): Function deleted.
9562
9563 2011-09-12 Eli Zaretskii <eliz@gnu.org>
9564
9565 * indent.c (compute_motion): Process display vector front to back
9566 rather than the other way around. (Bug#2496)
9567
9568 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9569
9570 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
9571
9572 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9573
9574 * minibuf.c (Fread_from_minibuffer): Doc fix.
9575
9576 2011-09-11 Eli Zaretskii <eliz@gnu.org>
9577
9578 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
9579 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
9580
9581 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9582
9583 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
9584 value for non-existent files.
9585
9586 2011-09-11 Eli Zaretskii <eliz@gnu.org>
9587
9588 * fileio.c (Finsert_file_contents): If the file cannot be opened,
9589 set its "size" to -1. This will set the modtime_size field of
9590 the corresponding buffer to -1, which is what
9591 verify-visited-file-modtime expects for files that do not exist.
9592 (Bug#9139)
9593
9594 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
9595
9596 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
9597 here ...
9598 * lisp.h: ... from here. push_key_description is no longer
9599 defined in keyboard.c, so its declaration should not be in
9600 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
9601 logically belongs with push_key_description.
9602
9603 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
9604
9605 * buffer.h: Include <sys/types.h> instead of <time.h>.
9606 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
9607 Problem reported by Herbert J. Skuhra.
9608
9609 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9610
9611 * xml.c (parse_region): Make the parsing work for
9612 non-comment-starting XML files again (bug#9144).
9613
9614 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
9615
9616 * image.c (gif_load): Fix calculation of bottom and right corner.
9617 (Bug#9468)
9618
9619 2011-09-10 Eli Zaretskii <eliz@gnu.org>
9620
9621 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
9622 redisplay in small windows.
9623
9624 2011-09-09 Eli Zaretskii <eliz@gnu.org>
9625
9626 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
9627
9628 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9629
9630 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
9631 Operate on live windows only.
9632
9633 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
9634
9635 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
9636
9637 2011-09-07 Eli Zaretskii <eliz@gnu.org>
9638
9639 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
9640 only under bidi iteration.
9641
9642 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
9643
9644 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
9645
9646 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
9647
9648 isnan: Fix porting problem to Solaris 10 with bundled gcc.
9649 Without this fix, the command to link temacs failed due to an
9650 undefined symbol __builtin_isnan. This is because
9651 /usr/include/iso/math_c99.h #defines isnan(x) to
9652 __builtin_isnan(x), but the bundled gcc, which identifies itself
9653 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
9654 a __builtin_isnan.
9655 * floatfns.c (isnan): #undef, and then #define to a clone of
9656 what's in data.c.
9657 (Fisnan): Always define, since it's always available now.
9658 (syms_of_floatfns): Always define isnan at the Lisp level.
9659
9660 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
9661
9662 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
9663
9664 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
9665
9666 * fileio.c: Fix bugs with large file offsets (Bug#9428).
9667 The previous code assumed that file offsets (off_t values) fit in
9668 EMACS_INT variables, which is not true on typical 32-bit hosts.
9669 The code messed up by falsely reporting buffer overflow in cases
9670 such as (insert-file-contents "big" nil 1 2) into an empty buffer
9671 when "big" contains more than 2**29 bytes, even though this
9672 inserts just one byte and does not overflow the buffer.
9673 (Finsert_file_contents): Store file offsets as off_t
9674 values, not as EMACS_INT values. Check for overflow when
9675 converting between EMACS_INT and off_t. When checking for
9676 buffer overflow or for overlap, take the offsets into account.
9677 Don't use EMACS_INT for small values where int suffices.
9678 When checking for overlap, fix a typo: ZV was used where
9679 ZV_BYTE was intended.
9680 (Fwrite_region): Don't assume off_t fits into 'long'.
9681 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
9682
9683 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
9684
9685 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
9686
9687 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
9688
9689 sprintf-related integer and memory overflow issues (Bug#9412).
9690
9691 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
9692 (esprintf, exprintf, evxprintf): New functions.
9693 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
9694 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
9695 (modify_event_symbol): Do not assume that the length of
9696 name_alist_or_stem is safe to alloca and fits in int.
9697 (Fexecute_extended_command): Likewise for function name and binding.
9698 (Frecursion_depth): Wrap around reliably on integer overflow.
9699 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
9700 since some callers pass EMACS_INT values.
9701 (Fsingle_key_description): Don't crash if symbol name contains more
9702 than MAX_ALLOCA bytes.
9703 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
9704 (get_minibuffer): Arg is now EMACS_INT, not int.
9705 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
9706 (esprintf, exprintf, evxprintf): New decls.
9707 * window.h (command_loop_level, minibuf_level): Reflect API changes.
9708
9709 * dbusbind.c (signature_cat): New function.
9710 (xd_signature, Fdbus_register_signal):
9711 Do not overrun buffer; instead, report string overflow.
9712
9713 * dispnew.c (add_window_display_history): Don't overrun buffer.
9714 Truncate instead; this is OK since it's just a log.
9715
9716 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
9717 even if the time zone offset is outlandishly large.
9718 Don't mishandle offset == INT_MIN.
9719
9720 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
9721 when creating daemon; the previous buffer-overflow check was incorrect.
9722
9723 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
9724 which has the guts of the old verror function.
9725
9726 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
9727 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
9728
9729 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
9730 (font_unparse_xlfd): Don't blindly alloca long strings.
9731 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
9732 fits in int, when using sprintf. Use single snprintf to count
9733 length of string rather than counting it via multiple sprintfs;
9734 that's simpler and more reliable.
9735 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
9736 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
9737 sprintf, in case result does not fit in int.
9738
9739 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
9740 (fontset_from_font): Print it.
9741
9742 * frame.c (tty_frame_count): Now printmax_t, not int.
9743 (make_terminal_frame, set_term_frame_name): Print it.
9744 (x_report_frame_params): In X, window IDs are unsigned long,
9745 not signed long, so print them as unsigned.
9746 (validate_x_resource_name): Check for implausibly long names,
9747 and don't assume name length fits in 'int'.
9748 (x_get_resource_string): Don't blindly alloca invocation name;
9749 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
9750 not fit in int.
9751
9752 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
9753 (xg_check_special_colors, xg_set_geometry):
9754 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
9755
9756 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
9757 Use esprintf, not sprintf, in case result does not fit in int.
9758
9759 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
9760 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
9761 it as a large positive number.
9762 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
9763 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
9764
9765 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
9766 in case result does not fit in int.
9767
9768 * print.c (float_to_string): Detect width overflow more reliably.
9769 (print_object): Make sprintf buffer a bit bigger, to avoid potential
9770 buffer overrun. Don't assume list length fits in 'int'. Treat
9771 print length of 0 as 0, not as infinity; to be consistent with other
9772 uses of print length in this function. Don't overflow print length
9773 index. Don't assume hash table size fits in 'long', or that
9774 vectorlike size fits in 'unsigned long'.
9775
9776 * process.c (make_process): Use printmax_t, not int, to format
9777 process-name gensyms.
9778
9779 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
9780
9781 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
9782 to avoid potential buffer overrun.
9783
9784 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
9785 if X resource line is longer than 512 bytes.
9786
9787 * xfns.c (x_window): Make sprintf buffer a bit bigger
9788 to avoid potential buffer overrun.
9789
9790 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
9791
9792 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
9793
9794 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
9795
9796 Integer overflow fixes for scrolling, etc.
9797 Without these, Emacs silently mishandles large integers sometimes.
9798 For example, "C-u 4294967297 M-x recenter" was treated as if
9799 it were "C-u 1 M-x recenter" on a typical 64-bit host.
9800
9801 * xdisp.c (try_window_id): Check Emacs fixnum range before
9802 converting to 'int'.
9803
9804 * window.c (window_scroll_line_based, Frecenter):
9805 Check that an Emacs fixnum is in range before assigning it to 'int'.
9806 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
9807 values converted from Emacs fixnums.
9808 (Frecenter): Don't wrap around a line count if it is out of 'int'
9809 range; instead, treat it as an extreme value.
9810 (Fset_window_configuration, compare_window_configurations):
9811 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
9812
9813 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
9814 that can exceed INT_MAX. Check that EMACS_INT value is in range
9815 before assigning it to the (possibly-narrower) index.
9816 (match_limit): Don't assume that a fixnum can fit in 'int'.
9817
9818 * print.c (print_object): Use ptrdiff_t, not int, for index that can
9819 exceed INT_MAX.
9820
9821 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
9822 (Fvertical_motion): Don't wrap around LINES values that don't fit
9823 in 'int'. Instead, treat them as extreme values. This is good
9824 enough for windows, which can't have more than INT_MAX lines anyway.
9825
9826 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9827
9828 * Require libxml/parser.h to avoid compilation warning.
9829
9830 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
9831
9832 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
9833 since this reportedly can destroy thread storage.
9834
9835 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
9836
9837 * syntax.c (find_defun_start): Update all cache variables if
9838 exiting early (Bug#9401).
9839
9840 2011-08-30 Eli Zaretskii <eliz@gnu.org>
9841
9842 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
9843
9844 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
9845 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
9846 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
9847
9848 * term.c (tty_append_glyph): New function.
9849 (produce_stretch_glyph): Static function and its prototype deleted.
9850
9851 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
9852 Add prototypes.
9853
9854 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
9855
9856 * image.c (parse_image_spec): Check for nonnegative, not for positive,
9857 when checking :margin (Bug#9390).
9858 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
9859 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
9860 so that the name doesn't mislead. All uses changed.
9861
9862 2011-08-28 Johan Bockgård <bojohan@gnu.org>
9863
9864 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
9865 set_tty_hooks.
9866
9867 2011-08-27 Eli Zaretskii <eliz@gnu.org>
9868
9869 * xdisp.c (move_it_to): Don't bail out early when reaching
9870 position beyond to_charpos, if we are scanning backwards.
9871 (move_it_vertically_backward): When DY == 0, make sure we get to
9872 the first character in the line after the newline.
9873
9874 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
9875
9876 * ccl.c: Improve and simplify overflow checking (Bug#9196).
9877 (ccl_driver): Do not generate an out-of-range pointer.
9878 (Fccl_execute_on_string): Remove unnecessary check for
9879 integer overflow, noted by Stefan Monnier in
9880 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
9881 Remove a FIXME that didn't need fixing.
9882 Simplify the newly-introduced buffer reallocation code.
9883
9884 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
9885
9886 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
9887
9888 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
9889
9890 Integer and memory overflow issues (Bug#9196).
9891
9892 * doc.c (get_doc_string): Rework so that
9893 get_doc_string_buffer_size is the actual buffer size, rather than
9894 being 1 less than the actual buffer size; this makes xpalloc more
9895 convenient.
9896
9897 * image.c (x_allocate_bitmap_record, cache_image):
9898 * xselect.c (Fx_register_dnd_atom):
9899 Simplify previous changes by using xpalloc.
9900
9901 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
9902 since either will do and ptrdiff_t is convenient with xpalloc.
9903
9904 * charset.c (charset_table_size)
9905 (struct charset_sort_data.priority): Now ptrdiff_t.
9906 (charset_compare): Don't overflow if priorities differ greatly.
9907 (Fsort_charsets): Don't assume list length fits in int.
9908 Check for size-calculation overflow when allocating sort data.
9909 (syms_of_charset): Allocate an initial charset table that is
9910 just under 64 KiB, to avoid problems with glibc malloc and mmap.
9911
9912 * cmds.c (internal_self_insert): Check for size-calculation overflow.
9913
9914 * composite.h (struct composition.glyph_len): Now int, not unsigned.
9915 The actual value is always <= INT_MAX, and leaving it unsigned made
9916 overflow checking harder.
9917
9918 * dispextern.h (struct glyph_matrix.rows_allocated)
9919 (struct face_cache.size): Now ptrdiff_t, for convenience in use
9920 with xpalloc. The values are still always <= INT_MAX.
9921
9922 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
9923
9924 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
9925 (SAFE_NALLOCA): New macro.
9926
9927 * region-cache.c (struct boundary.pos, find_cache_boundary)
9928 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
9929 (set_cache_region, invalidate_region_cache)
9930 (revalidate_region_cache, know_region_cache, region_cache_forward)
9931 (region_cache_backward, pp_cache):
9932 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
9933 so that ptrdiff_t * can be passed to xpalloc.
9934 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
9935 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
9936 (pp_cache): Don't assume cache_len fits in int.
9937 * region-cache.h: Adjust extern decls to match.
9938
9939 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
9940 EMACS_INT, since either will do, for xpalloc.
9941
9942 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
9943 (xnmalloc, xnrealloc, xpalloc): New functions.
9944
9945 * bidi.c (bidi_shelve_header_size): New constant.
9946 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
9947 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
9948
9949 * bidi.c (bidi_cache_shrink):
9950 * buffer.c (overlays_at, overlays_in, record_overlay_string)
9951 (overlay_strings):
9952 Don't update size of array until after memory allocation succeeds,
9953 because xmalloc/xrealloc may not return.
9954 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
9955 now that we have proper integer overflow checking.
9956 (record_overlay_string, overlay_strings): Catch overflows when
9957 calculating size of overlay_str_buf.
9958
9959 * callproc.c (Fcall_process): Check for size overflow when
9960 calculating size of args2.
9961 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
9962 Normally we prefer signed values, but sticking with ptrdiff_t would
9963 require adding more-complicated checks.
9964
9965 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
9966 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
9967 Redo buffer-overflow calculations to avoid integer overflow.
9968 Add a FIXME comment where memory seems to be over-allocated.
9969
9970 * character.c (Fstring): Check for size-calculation overflow.
9971
9972 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
9973 unnecessary integer overflow. Check for size overflow.
9974 (encode_coding_object): Don't update size until xmalloc succeeds.
9975
9976 * composite.c (get_composition_id): Check for overflow in glyph
9977 length calculations.
9978
9979 Integer and memory overflow fixes for display code.
9980 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
9981 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
9982 (scrolling_window): Check for overflow in size calculations.
9983 (line_draw_cost, realloc_glyph_pool, add_row_entry):
9984 Don't assume glyph table len fits in int.
9985 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
9986 (row_table_size): Now ptrdiff_t, not int.
9987 (scrolling_window): Avoid overflow in size calculations.
9988 Don't update size until allocation succeeds.
9989 * fns.c (concat): Check for overflow in size calculations.
9990 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
9991 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
9992 (NEXT_ALMOST_PRIME_LIMIT): New constant.
9993
9994 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
9995 (get_doc_string): Check for size calculation overflow.
9996 Don't update size until allocation succeeds.
9997 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
9998 EMACS_INT, where ptrdiff_t will do.
9999 (Fsubstitute_command_keys): Check for string overflow.
10000
10001 * editfns.c (set_time_zone_rule): Don't assume environment length
10002 fits in int.
10003 (message_length): Now ptrdiff_t, not int.
10004 (Fmessage_box): Don't update size until allocation succeeds.
10005 Don't assume message length fits in int.
10006 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
10007
10008 * emacs.c (main): Do not reallocate argv, since there is a null at
10009 the end that can be overwritten, and this way there's no need to
10010 worry about size-calculation overflow.
10011 (sort_args): Check for size-calculation overflow.
10012
10013 * eval.c (init_eval_once, grow_specpdl): Don't update size until
10014 alloc succeeds.
10015 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
10016
10017 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
10018 (x_set_scroll_bar_width, x_figure_window_size):
10019 Check for integer overflow.
10020 (x_set_alpha): Do not assume XINT fits in int.
10021
10022 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
10023 This is for the members text_lines, text_cols, total_lines, total_cols,
10024 where the system imposes an 'int' limit.
10025
10026 * fringe.c (Fdefine_fringe_bitmap):
10027 Don't update size until alloc works.
10028
10029 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
10030 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
10031
10032 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
10033 Check for size-calculation overflow.
10034 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
10035 do, as we prefer signed integers.
10036 (id_to_widget.max_size, id_to_widget.used)
10037 (xg_store_widget_in_map, xg_remove_widget_from_map)
10038 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
10039 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
10040 Use and return ptrdiff_t, not int.
10041 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
10042 * gtkutil.h: Change prototypes to match the above.
10043
10044 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
10045 are duplicate now that they've been promoted to lisp.h.
10046 (x_allocate_bitmap_record, x_alloc_image_color)
10047 (make_image_cache, cache_image, xpm_load):
10048 Don't update size until alloc is done.
10049 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
10050 (x_detect_edges):
10051 Check for size calculation overflow.
10052 (ct_colors_allocated_max): New constant.
10053 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
10054 overflow.
10055
10056 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
10057 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
10058 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
10059 Use ptrdiff_t, not int, to count maps.
10060 (read_char_minibuf_menu_prompt): Check for overflow in size
10061 calculations. Don't update size until allocation succeeds.
10062 Redo calculations to avoid overflow.
10063 * keyboard.h: Change prototypes to match the above.
10064
10065 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
10066 to count maps.
10067 (current_minor_maps): Check for size calculation overflow.
10068 * keymap.h: Change prototypes to match the above.
10069
10070 * lread.c (read1, init_obarray): Don't update size until alloc done.
10071
10072 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
10073 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
10074
10075 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
10076 Now ptrdiff_t, not int.
10077 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
10078 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
10079
10080 * process.c (Fnetwork_interface_list): Check for overflow
10081 in size calculation.
10082
10083 * region-cache.c (move_cache_gap): Check for size calculation overflow.
10084
10085 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
10086 overflow. Don't bother calling xmalloc when xrealloc will do.
10087
10088 * search.c (Freplace_match): Check for size calculation overflow.
10089 (Fset_match_data): Don't assume list lengths fit in 'int'.
10090
10091 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
10092 for command line length. Do not attempt to address one before the
10093 beginning of an array, as that's not portable.
10094
10095 * term.c (max_frame_lines): Remove; unused.
10096 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
10097 not int.
10098 (encode_terminal_code, calculate_costs): Check for size
10099 calculation overflow.
10100 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
10101 table lengths and related sizes. Don't update size until alloc
10102 done. Redo calculations to avoid overflow.
10103 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
10104
10105 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
10106 subtracting pointers.
10107 (gobble_line): Check for overflow more carefully. Don't update size
10108 until alloc done.
10109
10110 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
10111 Don't update size until alloc done.
10112 Redo size calculations to avoid overflow.
10113 Check for size calculation overflow.
10114 (main) [DEBUG]: Fix typo in invoking tparam1.
10115
10116 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
10117 Use ptrdiff_t, not int, for sizes.
10118 (store_mode_line_noprop_char): Don't update size until alloc done.
10119
10120 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
10121 Use ptrdiff_t, not int, for sizes.
10122 (Finternal_make_lisp_face, cache_face):
10123 Check for size calculation overflow.
10124 (cache_face): Treat size calculation overflows as if they were
10125 memory exhaustion (the usual treatment), rather than aborting.
10126
10127 * xfns.c (x_encode_text, x_set_name_internal)
10128 (Fx_change_window_property): Use ptrdiff_t, not int, to count
10129 sizes, since they can exceed INT_MAX in size. Check for size
10130 calculation overflow.
10131
10132 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
10133 (xg_select): Check for size calculation overflow.
10134 Don't update size until alloc done.
10135
10136 * xrdb.c (get_environ_db): Don't assume path length fits in int,
10137 as sprintf is limited to int lengths.
10138
10139 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
10140 (X_LONG_MIN): New macros.
10141 Use them to make the following changes clearer.
10142 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
10143 This change doesn't affect the value now, but it may help remind
10144 future maintainers not to raise the value too much later.
10145 (SELECTION_QUANTUM): Remove, replacing with ...
10146 (selection_quantum): ... new function, which avoids overflow.
10147 All uses changed.
10148 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
10149 assumption that selection length fits in 'int'.
10150 (x_reply_selection_request, x_handle_selection_request)
10151 (x_get_window_property, receive_incremental_selection)
10152 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
10153 (lisp_data_to_selection_data, clean_local_selection_data):
10154 Use ptrdiff_t, not int, to record length of selection.
10155 (x_reply_selection_request, x_get_window_property)
10156 (receive_incremental_selection, x_property_data_to_lisp):
10157 Redo calculations to avoid overflow.
10158 (x_reply_selection_request): When sending hint, ceiling it at
10159 X_LONG_MAX rather than relying on wraparound overflow to send
10160 something.
10161 (x_get_window_property, receive_incremental_selection)
10162 (lisp_data_to_selection_data, x_property_data_to_lisp):
10163 Check for size-calculation overflow.
10164 (x_get_window_property, receive_incremental_selection)
10165 (lisp_data_to_selection_data, Fx_register_dnd_atom):
10166 Don't store size until memory allocation succeeds.
10167 (x_get_window_property): Plug memory leak on memory exhaustion.
10168 Don't double-block input; malloc is safe here. Don't assume 2**34
10169 - 4 fits in unsigned long. Add an xassert to check
10170 XGetWindowProperty overflow. Be more careful about overflow
10171 calculations, and distinguish size from memory overflow better.
10172 (receive_incremental_selection): When tracing, don't assume
10173 unsigned int is less than INT_MAX.
10174 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
10175 harmful) conversions of unsigned short to int.
10176 (lisp_data_to_selection_data): Don't assume that integers
10177 in the range -65535 through -1 fit in an X unsigned short.
10178 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
10179 result parameters unless successful. Rely on cons_to_unsigned
10180 to report problems with elements; the old code wasn't right anyway.
10181 (x_check_property_data): Check for int overflow; we cannot use
10182 a wider type due to X limits.
10183 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
10184
10185 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
10186
10187 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
10188 (x_term_init): Check for size calculation overflow.
10189 (x_color_cells): Don't store size until memory allocation succeeds.
10190 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
10191 Don't assume alloca size is less than MAX_ALLOCA.
10192 (x_term_init): Don't assume length fits in int (sprintf is limited
10193 to int size).
10194
10195 Use ptrdiff_t for composition IDs.
10196 * character.c (lisp_string_width):
10197 * composite.c (composition_table_size, n_compositions)
10198 (get_composition_id, composition_gstring_from_id):
10199 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
10200 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
10201 * window.c (Frecenter):
10202 Use ptrdiff_t, not int, for composition IDs.
10203 * composite.c (get_composition_id): Check for integer overflow.
10204 * composite.h: Adjust prototypes to match the above changes.
10205
10206 Use ptrdiff_t for hash table indexes.
10207 * category.c (hash_get_category_set):
10208 * ccl.c (ccl_driver):
10209 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
10210 * coding.c (coding_system_charset_list, detect_coding_system):
10211 * coding.h (struct coding_system.id):
10212 * composite.c (get_composition_id, gstring_lookup_cache):
10213 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
10214 * image.c (xpm_get_color_table_h):
10215 * lisp.h (hash_lookup, hash_put):
10216 * minibuf.c (Ftest_completion):
10217 Use ptrdiff_t for hash table indexes, not int (which is too
10218 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
10219 32-bit --with-wide-int hosts).
10220
10221 * charset.c (Fdefine_charset_internal): Check for integer overflow.
10222 Add a FIXME comment about memory leaks.
10223 (syms_of_charset): Don't assume xmalloc returns.
10224
10225 Don't assume that stated character widths fit in int.
10226 * character.c (Fchar_width, c_string_width, lisp_string_width):
10227 * character.h (CHAR_WIDTH):
10228 * indent.c (MULTIBYTE_BYTES_WIDTH):
10229 Use sanitize_char_width to avoid undefined and/or bad behavior
10230 with outlandish widths.
10231 * character.h (sanitize_tab_width): Rename from sanitize_width,
10232 now that we have two such functions. All uses changed.
10233 (sanitize_char_width): New inline function.
10234
10235 Don't assume that tab-width fits in int.
10236 * character.h (sanitize_width): New inline function.
10237 (SANE_TAB_WIDTH): New macro.
10238 (ASCII_CHAR_WIDTH): Use it.
10239 * indent.c (sane_tab_width): Remove. All uses replaced by
10240 SANE_TAB_WIDTH (current_buffer).
10241 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
10242
10243 * fileio.c: Integer overflow issues with file modes.
10244 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
10245
10246 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
10247 Remove unreachable code.
10248 (read_hex, load_charset_map_from_file): Check for integer overflow.
10249
10250 * xterm.c: Don't go over XClientMessageEvent limit.
10251 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
10252 (x_send_scroll_bar_event): Likewise. Check that the size does not
10253 exceed limits imposed by XClientMessageEvent, as well as the usual
10254 ptrdiff_t and size_t limits.
10255
10256 * keyboard.c: Overflow, signedness and related fixes.
10257 (make_lispy_movement): Use same integer type in forward decl
10258 that is used in the definition.
10259 (read_key_sequence, keyremap_step):
10260 Change bufsize argument back to int, undoing my 2011-03-30 change.
10261 We prefer signed types, and int is wide enough here.
10262 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
10263 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
10264 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
10265 length, not size_t. Use ptrdiff_t for index, not int.
10266 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
10267 possibility of integer overflow.
10268
10269 Overflow, signedness and related fixes for images.
10270
10271 * dispextern.h (struct it.stack[0].u.image.image_id)
10272 (struct_it.image_id, struct image.id, struct image_cache.size)
10273 (struct image_cache.used, struct image_cache.ref_count):
10274 * gtkutil.c (update_frame_tool_bar):
10275 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
10276 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
10277 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
10278 * nsmenu.m (update_frame_tool_bar):
10279 * xdisp.c (calc_pixel_width_or_height):
10280 * xfns.c (image_cache_refcount):
10281 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
10282 on typical 64-bit hosts.
10283
10284 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
10285 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
10286 Omit unnecessary casts to int.
10287 (parse_image_spec): Check that integers fall into 'int' range
10288 when the callers expect that.
10289 (image_ascent): Redo ascent calculation to avoid int overflow.
10290 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
10291 (lookup_image): Remove unnecessary tests.
10292 (xbm_image_p): Locals are now of int, not EMACS_INT,
10293 since parse_image_check makes sure they fit into int.
10294 (png_load, gif_load, svg_load_image):
10295 Prefer int to unsigned where either will do.
10296 (tiff_handler): New function, combining the cores of the
10297 old tiff_error_handler and tiff_warning_handler.
10298 This function is rewritten to use vsnprintf and thereby avoid
10299 stack buffer overflows. It uses only the features of vsnprintf
10300 that are common to both POSIX and native Microsoft.
10301 (tiff_error_handler, tiff_warning_handler): Use it.
10302 (tiff_load, gif_load, imagemagick_load_image):
10303 Don't assume :index value fits in 'int'.
10304 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
10305 (imagemagick_load_image): Check that crop parameters fit into
10306 the integer types that MagickCropImage accepts. Don't assume
10307 Vimagemagick_render_type has a nonnegative value. Don't assume
10308 size_t fits in 'long'.
10309 (gs_load): Use printmax_t to print the widest integers possible.
10310 Check for integer overflow when computing image height and width.
10311
10312 2011-08-26 Eli Zaretskii <eliz@gnu.org>
10313
10314 * xdisp.c (redisplay_window): Don't force window start if point
10315 will be invisible in the resulting window. (Bug#9324)
10316
10317 2011-08-25 Eli Zaretskii <eliz@gnu.org>
10318
10319 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
10320 the display spec is of the form `(space ...)'.
10321 (handle_display_spec): Return the value returned by
10322 handle_single_display_spec, not just 1 or zero.
10323 (handle_single_display_spec): If the display spec is of the form
10324 `(space ...)', and specifies display in the text area, return 2
10325 rather than 1.
10326 (try_cursor_movement): Check for the need to scroll more
10327 accurately, and prefer exact match for point under bidi.
10328 Don't advance `row' beyond the last row of the window.
10329
10330 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
10331 into disp_prop; all users changed.
10332
10333 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
10334 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
10335 for the text covered by the display property.
10336
10337 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
10338
10339 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
10340 Change return value to nil.
10341 (Frecord_buffer): Delete unused function.
10342
10343 2011-08-24 Eli Zaretskii <eliz@gnu.org>
10344
10345 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
10346 buffers, return left-to-right.
10347 (set_cursor_from_row): Consider candidate row a win if its glyph
10348 represents a newline and point is on that newline. Fixes cursor
10349 positioning on the newline at EOL of R2L text within L2R
10350 paragraph, and vice versa.
10351 (try_cursor_movement): Check continued rows, in addition to
10352 continuation rows. Fixes unwarranted scroll when point enters a
10353 continued line of R2L text within an L2R paragraph, or vice versa.
10354 (cursor_row_p): Consider the case of point being equal to
10355 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
10356 from the end of a short line to the beginning of a continued line
10357 of R2L text within L2R paragraph.
10358 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
10359 composed characters.
10360
10361 * bidi.c (bidi_check_type): Use xassert.
10362 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
10363 members.
10364
10365 2011-08-23 Eli Zaretskii <eliz@gnu.org>
10366
10367 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
10368 a character.
10369
10370 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
10371
10372 * nsfont.m (ns_otf_to_script): Fix typo.
10373
10374 2011-08-22 Kenichi Handa <handa@m17n.org>
10375
10376 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
10377 extra slot even if the purpose is char-code-property-table.
10378
10379 2011-08-23 Eli Zaretskii <eliz@gnu.org>
10380
10381 * xdisp.c (redisplay_window): When computing centering_position,
10382 account for the height of the header line. (Bug#8874)
10383
10384 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
10385 instead of CHAR_TO_BYTE. Fixes a crash when a completion
10386 candidate is selected by the mouse, and that candidate has a
10387 composed character under the mouse.
10388
10389 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
10390 coordinates reported by pos-visible-in-window-p for a composed
10391 character in column zero.
10392
10393 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10394
10395 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
10396
10397 2011-08-22 Eli Zaretskii <eliz@gnu.org>
10398
10399 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
10400 consider it a hit if to_charpos is anywhere in the range of the
10401 composed buffer positions.
10402
10403 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
10404
10405 * image.c (gif_load): Don't assume that each subimage has the same
10406 dimensions as the base image. Handle disposal method that is
10407 "undefined" by the gif spec (Bug#9335).
10408
10409 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
10410
10411 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
10412 (Fcondition_case): Document `debug' symbol in error handler.
10413
10414 2011-08-19 Eli Zaretskii <eliz@gnu.org>
10415
10416 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
10417 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
10418 from an Org mode buffer to a Speedbar frame.
10419
10420 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
10421 a composition, take its buffer position from IT->cmp_it.charpos.
10422 Fixes cursor positioning at the beginning of a line that begins
10423 with a composed character.
10424
10425 2011-08-18 Eli Zaretskii <eliz@gnu.org>
10426
10427 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
10428 character bidirectional type, use STRONG_L instead. Fixes crashes
10429 in a buffer produced by `describe-categories'.
10430
10431 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
10432 members before the level stack, so they would be saved and
10433 restored when copying iterator state. Fixes incorrect reordering
10434 around TABs covered by display properties.
10435
10436 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
10437
10438 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
10439
10440 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
10441
10442 * eval.c (internal_condition_case, internal_condition_case_1)
10443 (internal_condition_case_2, internal_condition_case_n):
10444 Remove unnecessary aborts (Bug#9081).
10445
10446 2011-08-17 Eli Zaretskii <eliz@gnu.org>
10447
10448 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
10449 has no `load' handler, try opening the file locally. (Bug#9311)
10450
10451 2011-08-16 Ken Brown <kbrown@cornell.edu>
10452
10453 * gmalloc.c: Expand comment.
10454
10455 2011-08-16 Eli Zaretskii <eliz@gnu.org>
10456
10457 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
10458 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
10459
10460 2011-08-16 Ken Brown <kbrown@cornell.edu>
10461
10462 Fix memory allocation problems in Cygwin build (Bug#9273).
10463
10464 * unexcw.c ( __malloc_initialized): Declare external variable.
10465 (fixup_executable): Force the dumped emacs to reinitialize malloc.
10466
10467 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
10468 New variables.
10469 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
10470 dumped emacs.
10471 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
10472 in the static heap.
10473 [CYGWIN] (special_realloc): New function.
10474 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
10475 requests to realloc storage in the static heap.
10476
10477 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
10478
10479 * bidi.c (bidi_initialize): Remove unused local.
10480
10481 2011-08-15 Eli Zaretskii <eliz@gnu.org>
10482
10483 * bidimirror.h:
10484 * biditype.h: Remove file.
10485 * makefile.w32-in ($(BLD)/bidi.$(O)):
10486 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
10487
10488 * dispextern.h: Fix a typo in the comment to bidi_type_t.
10489
10490 * chartab.c: Improve commentary for the uniprop_table API.
10491
10492 * bidi.c (bidi_paragraph_init): Support zero value of
10493 bidi_ignore_explicit_marks_for_paragraph_level.
10494 (bidi_initialize): Use uniprop_table instead of including
10495 biditype.h and bidimirror.h.
10496
10497 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
10498 coordinates of the iterator when restoring from ppos_it.
10499 (Bug#9296)
10500
10501 2011-08-14 Kenichi Handa <handa@m17n.org>
10502
10503 * process.c (create_process): Call setup_process_coding_systems
10504 after the pid of the process is set to -1 (Bug#8162).
10505
10506 2011-08-14 Eli Zaretskii <eliz@gnu.org>
10507
10508 * xdisp.c (move_it_in_display_line_to): Don't invoke
10509 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
10510 ppos_it. Fixes vertical cursor motion when line beginning is
10511 covered by an image. (Bug#9296)
10512
10513 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
10514
10515 * nsterm.h (ns_run_ascript): Declare.
10516 (NSAPP_DATA2_RUNASSCRIPT): Define.
10517
10518 * nsfns.m (as_script, as_result, as_status): New static variables.
10519 (ns_run_ascript): New function.
10520 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
10521 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
10522 the event loop. Get status from as_status (Bug#7276).
10523
10524 * nsterm.m (sendEvent): If event is NSApplicationDefined and
10525 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
10526 the event loop (Bug#7276).
10527
10528 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
10529
10530 * gnutls.c (QCgnutls_bootprop_priority)
10531 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
10532 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
10533 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
10534 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
10535 (QCgnutls_bootprop_verify_hostname_error)
10536 (QCgnutls_bootprop_callbacks_verify): Rename from
10537 Qgnutls_bootprop_..., all uses changed.
10538
10539 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
10540 uses changed.
10541
10542 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
10543
10544 * xfaces.c (Qframe_set_background_mode): Now static.
10545 * dispextern.h (Qframe_set_background_mode): Remove decl.
10546
10547 * process.c (Fnetwork_interface_info): Declare local only if needed.
10548
10549 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
10550
10551 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
10552 (Fnetwork_interface_list): Allocate in increments of bytes instead
10553 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
10554 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
10555 sockaddr.
10556 (struct ifflag_def): notrailers is smart on OSX.
10557 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
10558 Get hardware address with getifaddrs if available.
10559
10560 2011-08-12 Eli Zaretskii <eliz@gnu.org>
10561
10562 * xdisp.c (iterate_out_of_display_property): xassert that
10563 IT->position is set to within IT->object's boundaries. Break from
10564 the loop as soon as EOB is reached; avoids infloops in redisplay
10565 when IT->position is set up wrongly due to some bug.
10566 Set IT->current to match the bidi iterator unconditionally.
10567 (push_display_prop): Allow GET_FROM_STRING as IT->method on
10568 entry. Force push_it to save on the stack the current
10569 buffer/string position, to be restored by pop_it. Fix flags in
10570 the iterator structure wrt the object coming from a display
10571 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
10572 properties. (Bug#9284)
10573
10574 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
10575
10576 * fontset.c (fontset_get_font_group): Add proper type checks.
10577 (Bug#9172)
10578
10579 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10580
10581 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
10582 and LC_VERSION_MIN_MACOSX.
10583 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
10584 (dump_it) [LC_FUNCTION_STARTS]: Use it.
10585
10586 2011-08-08 Eli Zaretskii <eliz@gnu.org>
10587
10588 * xdisp.c (forward_to_next_line_start): Allow to use the
10589 no-display-properties-and-no-overlays under bidi display.
10590 Set disp_pos in the bidi iterator to avoid searches for display
10591 properties and overlays.
10592
10593 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
10594
10595 * editfns.c (Fset_time_zone_rule): Document relationship with the
10596 setenv function.
10597
10598 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
10599 the font entity extracted from the cache (Bug#8109).
10600
10601 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
10602
10603 * composite.c (autocmp_chars): Don't reset point. That is done by
10604 restore_point_unwind (Bug#5984).
10605
10606 2011-08-07 Juri Linkov <juri@jurta.org>
10607
10608 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
10609 to show the arg `TIME' instead of `TIMEVAL'.
10610
10611 2011-08-06 Eli Zaretskii <eliz@gnu.org>
10612
10613 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
10614 display property strides EOL and includes a newline, as in
10615 longlines-mode. (Bug#9254)
10616 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
10617 word-wrap under bidirectional display. (Bug#9224)
10618
10619 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
10620 is non-zero, even if the data buffer is NULL. Fixes a crash in
10621 vertical-motion with longlines-mode. (Bug#9254)
10622
10623 2011-08-05 Eli Zaretskii <eliz@gnu.org>
10624
10625 * bidi.c <bidi_cache_total_alloc>: Now static.
10626 (bidi_initialize): Initialize bidi_cache_total_alloc.
10627
10628 * xdisp.c (display_line): Release buffer allocated for shelved bidi
10629 cache. (Bug#9221)
10630
10631 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
10632 amount allocated this far in `bidi_cache_total_alloc'.
10633 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
10634 non-zero, only free the data buffer without restoring the cache
10635 contents. All callers changed.
10636
10637 * dispextern.h (bidi_unshelve_cache): Update prototype.
10638
10639 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
10640 (move_it_in_display_line, move_it_to)
10641 (move_it_vertically_backward, move_it_by_lines): Replace the call
10642 to xfree to an equivalent call to bidi_unshelve_cache.
10643 (move_it_in_display_line_to): Fix logic of returning
10644 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
10645
10646 2011-08-05 Eli Zaretskii <eliz@gnu.org>
10647
10648 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
10649 came from a string character with a `cursor' property. (Bug#9229)
10650
10651 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
10652
10653 * Makefile.in (LIB_PTHREAD): New variable.
10654 (LIBES): Add LIB_PTHREAD (Bug#9216).
10655
10656 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
10657 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
10658
10659 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
10660
10661 * regex.c (re_iswctype): Remove some redundant boolean conversions.
10662
10663 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
10664
10665 * xterm.c (x_find_topmost_parent): New function.
10666 (x_set_frame_alpha): Find topmost parent window with
10667 x_find_topmost_parent and set the property there also (bug#9181).
10668 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
10669
10670 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
10671
10672 * callproc.c (Fcall_process): Avoid vfork clobbering
10673 the local vars buffer, coding_systems, current_dir.
10674
10675 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10676
10677 * keymap.c (Fmake_composed_keymap): Move to subr.el.
10678
10679 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
10680
10681 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
10682 so that it is not optimized away.
10683
10684 * xdisp.c (compute_display_string_pos): Remove unused local.
10685
10686 2011-08-02 Eli Zaretskii <eliz@gnu.org>
10687
10688 Fix slow cursor motion and scrolling in large buffers with
10689 selective display, like Org Mode buffers. (Bug#9218)
10690
10691 * dispextern.h (struct bidi_it): New member disp_prop_p.
10692
10693 * xdisp.c: Remove one-slot cache of display string positions.
10694 (compute_display_string_pos): Accept an additional argument
10695 DISP_PROP_P; callers changed. Scan at most 5K characters forward
10696 for a display string or property. If found, set DISP_PROP_P
10697 non-zero.
10698
10699 * bidi.c (bidi_fetch_char): Accept an additional argument
10700 DISP_PROP_P, and pass it to compute_display_string_pos.
10701 Only handle text covered by a display string if DISP_PROP_P is returned
10702 non-zero. All callers of bidi_fetch_char changed.
10703
10704 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
10705
10706 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
10707
10708 2010-12-03 Don March <don@ohspite.net>
10709
10710 * keymap.c (Fdefine_key): Fix non-prefix key error message when
10711 last character M-[char] is translated to ESC [char] (bug#7541).
10712
10713 2011-08-02 Kenichi Handa <handa@m17n.org>
10714
10715 * lisp.h (uniprop_table): Extern it.
10716
10717 * chartab.c (uniprop_table): Make it non-static.
10718
10719 2011-08-01 Eli Zaretskii <eliz@gnu.org>
10720
10721 * xdisp.c (forward_to_next_line_start): Accept additional argument
10722 BIDI_IT_PREV, and store into it the state of the bidi iterator had
10723 on the newline.
10724 (reseat_at_next_visible_line_start): Use the bidi iterator state
10725 returned by forward_to_next_line_start to restore the state of
10726 it->bidi_it after backing up to previous newline. (Bug#9212)
10727
10728 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
10729
10730 * regex.c (re_comp): Protoize.
10731 (re_exec): Fix return type.
10732 (regexec): Fix type of `ret'. (Bug#9203)
10733
10734 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10735
10736 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
10737 This is needed if max-image-size is a floating-point number.
10738
10739 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
10740
10741 * print.c (print_object): Print empty symbol as ##.
10742
10743 * lread.c (read1): Read ## as empty symbol.
10744
10745 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
10746
10747 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
10748 setting frame foreground color (Bug#9175).
10749 (x_set_background_color): Likewise.
10750
10751 * nsmenu.m (-setText): Size tooltip dimensions precisely to
10752 contents (Bug#9176).
10753 (EmacsTooltip -init): Remove bezels and add shadows to
10754 tooltip windows.
10755
10756 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
10757 or scroll bar (Bug#8470).
10758
10759 * nsfont.m (nsfont_open): Remove assignment to voffset and
10760 unnecessary vars hshink, expand, hd, full_height, min_height.
10761 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
10762
10763 * nsterm.h (nsfont_info): Remove voffset field.
10764
10765 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
10766
10767 Implement strike-through and overline on NextStep (Bug#8863).
10768
10769 * nsfont.m (nsfont_open): Use underline position provided by font,
10770 instead of hard-coded value of 2.
10771 (nsfont_draw): Call ns_draw_text_decoration instead.
10772
10773 * nsterm.h: Add declaration for ns_draw_text_decoration.
10774
10775 * nsterm.m (ns_draw_text_decoration): New function for drawing
10776 underline, overline, and strike-through.
10777 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
10778 ns_draw_text_decoration. Change treatment of cursor drawing to
10779 accommodate underlining, etc.
10780
10781 2011-07-28 Eli Zaretskii <eliz@gnu.org>
10782
10783 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
10784 default.
10785
10786 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10787
10788 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
10789 Without this fix, if a signal arrives just after memory fills up,
10790 'malloc' might be invoked reentrantly.
10791
10792 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
10793 In other words, assume that every image size is allowed, on non-X
10794 hosts. This assumption is probably wrong, but it lets Emacs compile.
10795
10796 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
10797
10798 * regex.c (re_iswctype): Convert return values to boolean.
10799
10800 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
10801
10802 * xdisp.c (compute_display_string_pos): Don't use cached display
10803 string position if the buffer had its restriction changed.
10804 (Bug#9184)
10805
10806 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10807
10808 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
10809
10810 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10811
10812 Integer signedness and overflow and related fixes. (Bug#9079)
10813
10814 * bidi.c: Integer size and overflow fixes.
10815 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
10816 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
10817 (bidi_cache_find_level_change, bidi_cache_ensure_space)
10818 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
10819 (bidi_find_other_level_edge):
10820 Use ptrdiff_t instead of EMACS_INT where either will do.
10821 This works better on 32-bit hosts configured --with-wide-int.
10822 (bidi_cache_ensure_space): Check for size-calculation overflow.
10823 Use % rather than repeated addition, for better worst-case speed.
10824 Don't set bidi_cache_size until after xrealloc returns, because it
10825 might not return.
10826 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
10827 (bidi_cache_ensure_space): Also check that the bidi cache size
10828 does not exceed that of the largest Lisp string or buffer. See Eli
10829 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
10830
10831 * alloc.c (__malloc_size_t): Remove.
10832 All uses replaced by size_t. See Andreas Schwab's note
10833 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
10834
10835 * image.c: Improve checking for integer overflow.
10836 (check_image_size): Assume that f is nonnull, since
10837 it is always nonnull in practice. This is one less thing to
10838 worry about when checking for integer overflow later.
10839 (x_check_image_size): New function, which checks for integer
10840 overflow issues inside X.
10841 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
10842 This removes the need for a memory_full check.
10843 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
10844 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
10845 (xbm_read_bitmap_data): Change locals back to 'int', since
10846 their values must fit in 'int'.
10847 (xpm_load_image, png_load, tiff_load):
10848 Invoke x_create_x_image_and_pixmap earlier,
10849 to avoid much needless work if the image is too large.
10850 (tiff_load): Treat overly large images as if
10851 x_create_x_image_and_pixmap failed, not as malloc failures.
10852 (gs_load): Use x_check_image_size.
10853
10854 * gtkutil.c: Omit integer casts.
10855 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
10856 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
10857
10858 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
10859
10860 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
10861 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
10862 would wrongly return t on a 64-bit host.
10863
10864 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
10865 The plain *_OVERFLOW macros run afoul of GCC bug 49705
10866 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
10867 and therefore cause GCC to emit a bogus diagnostic in some cases.
10868
10869 * image.c: Integer signedness and overflow and related fixes.
10870 This is not an exhaustive set of fixes, but it's time to
10871 record what I've got.
10872 (lookup_pixel_color, check_image_size): Remove redundant decls.
10873 (check_image_size): Don't assume that arbitrary EMACS_INT values
10874 fit in 'int', or that arbitrary 'double' values fit in 'int'.
10875 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
10876 (tiff_load, imagemagick_load_image):
10877 Check for overflow in size calculations.
10878 (x_create_x_image_and_pixmap): Remove unnecessary test for
10879 xmalloc returning NULL; that can't happen.
10880 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
10881 (xpm_color_bucket): Use better integer hashing function.
10882 (xpm_cache_color): Don't possibly over-allocate memory.
10883 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
10884 (gif_memory_source):
10885 Use ptrdiff_t, not int or size_t, to record sizes.
10886 (png_load): Don't assume values greater than 2**31 fit in 'int'.
10887 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
10888 either works, as we prefer signed integers.
10889 (tiff_read_from_memory, tiff_write_from_memory):
10890 Return tsize_t, not size_t, since that's what the TIFF API wants.
10891 (tiff_read_from_memory): Don't fail simply because the read would
10892 go past EOF; instead, return a short read.
10893 (tiff_load): Omit no-longer-needed casts.
10894 (Fimagemagick_types): Don't assume size fits into 'int'.
10895
10896 Improve hashing quality when configured --with-wide-int.
10897 * fns.c (hash_string): New function, taken from sxhash_string.
10898 Do not discard information about ASCII character case; this
10899 discarding is no longer needed.
10900 (sxhash-string): Use it. Change sig to match it. Caller changed.
10901 * lisp.h: Declare it.
10902 * lread.c (hash_string): Remove, since we now use fns.c's version.
10903 The fns.c version returns a wider integer if --with-wide-int is
10904 specified, so this should help the quality of the hashing a bit.
10905
10906 * emacs.c: Integer overflow minor fix.
10907 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
10908 Define only if GNU_LINUX.
10909 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
10910
10911 * dispnew.c: Integer signedness and overflow fixes.
10912 Remove unnecessary forward decls, that were a maintenance hassle.
10913 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
10914 All uses changed.
10915 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
10916 (scrolling_window): Use ptrdiff_t, not int, for byte count.
10917 (prepare_desired_row, line_draw_cost):
10918 Use int, not unsigned, where either works.
10919 (save_current_matrix, restore_current_matrix):
10920 Use ptrdiff_t, not size_t, where either works.
10921 (init_display): Check for overflow more accurately, and without
10922 relying on undefined behavior.
10923
10924 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
10925 Remove, replacing with the new symbols in lisp.h. All uses changed.
10926 * fileio.c (make_temp_name):
10927 * filelock.c (lock_file_1, lock_file):
10928 * xdisp.c (message_dolog):
10929 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
10930 Use pMd etc. instead.
10931 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
10932 replacing the pWIDE etc. symbols removed from editfns.c.
10933
10934 * keyboard.h (num_input_events): Now uintmax_t.
10935 This is (very slightly) less likely to mess up due to wraparound.
10936 All uses changed.
10937
10938 * buffer.c: Integer signedness fixes.
10939 (alloc_buffer_text, enlarge_buffer_text):
10940 Use ptrdiff_t rather than size_t when either will do, as we prefer
10941 signed integers.
10942
10943 * alloc.c: Integer signedness and overflow fixes.
10944 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
10945 (__malloc_size_t): Default to size_t, not to int.
10946 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
10947 (Fgarbage_collect, mark_object_loop_halt, mark_object):
10948 Prefer ptrdiff_t to size_t when either would do, as we prefer
10949 signed integers.
10950 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
10951 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
10952 Now const. Initialize with values that are in range even if char
10953 is signed.
10954 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
10955 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
10956 These functions do the right thing with sizes > 2**32.
10957 (check_depth): Now ptrdiff_t, not int.
10958 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
10959 Adjust to new way of storing sizes. Check for size overflow bugs
10960 in rest of code.
10961 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
10962 slightly wrong anyway, as it missed one instance of
10963 XMALLOC_OVERRUN_CHECK_OVERHEAD.
10964 (refill_memory_reserve): Omit needless cast to size_t.
10965 (mark_object_loop_halt): Mark as externally visible.
10966
10967 * xselect.c: Integer signedness and overflow fixes.
10968 (Fx_register_dnd_atom, x_handle_dnd_message):
10969 Use ptrdiff_t, not size_t, since we prefer signed.
10970 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
10971 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
10972 x_dnd_atoms_size and x_dnd_atoms_length.
10973
10974 * doprnt.c: Prefer signed to unsigned when either works.
10975 * eval.c (verror):
10976 * doprnt.c (doprnt):
10977 * lisp.h (doprnt):
10978 * xdisp.c (vmessage):
10979 Use ptrdiff_t, not size_t, when using or implementing doprnt,
10980 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
10981 prefer signed arithmetic to avoid comparison confusion.
10982 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
10983 but is a bit tricky.
10984
10985 Assume freestanding C89 headers, string.h, stdlib.h.
10986 * data.c, doprnt.c, floatfns.c, print.c:
10987 Include float.h unconditionally.
10988 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
10989 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
10990 * regex.c: Likewise for stddef.h, string.h.
10991 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
10992 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
10993 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
10994 (STDC_HEADERS): Remove obsolete defines.
10995 * sysdep.c: Include limits.h unconditionally.
10996
10997 Assume support for memcmp, memcpy, memmove, memset.
10998 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
10999 * regex.c (memcmp, memcpy):
11000 Remove; we assume C89 now.
11001
11002 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
11003 (__malloc_safe_bcopy): Remove; no longer needed.
11004
11005 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
11006 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
11007 well either way, and we prefer signed to unsigned.
11008
11009 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11010
11011 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
11012 closes the connection while we're reading (bug#9182).
11013
11014 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
11015
11016 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
11017 are specified (Bug#9168).
11018
11019 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
11020
11021 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
11022 Found by GCC static checking and --with-wide-int on a 32-bit host.
11023
11024 2011-07-25 Eli Zaretskii <eliz@gnu.org>
11025
11026 * xdisp.c (compute_display_string_pos): Fix logic of caching
11027 previous display string position. Initialize cached_prev_pos to
11028 -1. Fixes slow-down at the beginning of a buffer.
11029
11030 2011-07-24 Eli Zaretskii <eliz@gnu.org>
11031
11032 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
11033 for attrs[LFACE_FONTSET_INDEX].
11034
11035 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
11036
11037 * xml.c (parse_region): Remove unused local
11038 that was recently introduced.
11039
11040 2011-07-23 Eli Zaretskii <eliz@gnu.org>
11041
11042 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
11043 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
11044
11045 * xdisp.c (move_it_in_display_line_to): Record the best matching
11046 position for TO_CHARPOS while scanning the line, and restore it on
11047 exit if none of the characters scanned was an exact match.
11048 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
11049 when exact match is impossible due to invisible text, and the
11050 lines are truncated.
11051
11052 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
11053
11054 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
11055 for OSX >= 10.7.
11056
11057 2011-07-22 Eli Zaretskii <eliz@gnu.org>
11058
11059 Fix a significant slow-down of cursor motion with C-n, C-p,
11060 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
11061 auto-repeat under bidi redisplay in fontified buffers.
11062 * xdisp.c (compute_stop_pos_backwards): New function.
11063 (next_element_from_buffer): Call compute_stop_pos_backwards to
11064 find a suitable prev_stop when we find ourselves before
11065 base_level_stop.
11066 (reseat): Don't look for prev_stop, as that could mean a very long
11067 run.
11068 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
11069 <cached_disp_overlay_modiff>: Cache for last found display string
11070 position.
11071 (compute_display_string_pos): Return the cached position if asked
11072 about the same buffer in the same area of character positions, and
11073 the buffer wasn't changed since the time the display string
11074 position was cached.
11075
11076 2011-07-22 Eli Zaretskii <eliz@gnu.org>
11077
11078 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
11079 is an integer, which is important for empty lines. (Bug#9149)
11080
11081 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
11082
11083 * frame.c (Fmodify_frame_parameters): In tty case, update the
11084 default face if necessary (Bug#4238).
11085
11086 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
11087
11088 * editfns.c (Fstring_to_char): No need to explain what a character
11089 is in the docstring (Bug#6576).
11090
11091 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
11092
11093 * xml.c (parse_region): Make sure we always return a tree.
11094
11095 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
11096
11097 * xml.c (parse_region): If a document contains only comments,
11098 return that, too.
11099
11100 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
11101
11102 * xml.c (make_dom): Return comments, too.
11103
11104 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
11105
11106 Port to OpenBSD.
11107 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
11108 and the surrounding thread.
11109 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
11110 rather than fgets, and retry after EINTR. Otherwise, 'emacs
11111 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
11112 timer goes off.
11113 * s/openbsd.h (BROKEN_SIGIO): Define.
11114 * unexelf.c (unexec) [__OpenBSD__]:
11115 Don't update the .mdebug section of the Alpha COFF symbol table.
11116
11117 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11118
11119 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
11120 (bug#8460).
11121
11122 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
11123
11124 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
11125 This fixes some race conditions on the permissions of any newly
11126 created file.
11127
11128 * alloc.c (valid_pointer_p): Use pipe, not open.
11129 This fixes some permissions issues when debugging.
11130
11131 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
11132 If fchown fails to set both uid and gid, try to set just gid,
11133 as that is sometimes allowed. Adjust the file's mode to eliminate
11134 setuid or setgid bits that are inappropriate if fchown fails.
11135
11136 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
11137
11138 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
11139 to compare Lisp_Objects.
11140 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
11141 global_gnutls_log_level, don't mistake it for a Lisp_Object.
11142 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
11143
11144 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
11145
11146 * lread.c (read_integer): Unread even EOF character.
11147 (read1): Likewise. Properly record start position of symbol.
11148
11149 * lread.c (read1): Read `#:' as empty uninterned symbol if no
11150 symbol character follows.
11151
11152 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
11153
11154 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
11155 This works around a problem with the previous change to Fcopy_file.
11156 Recent glibc declares fchown with __attribute__((warn_unused_result)),
11157 and without this change, GCC might complain about discarding
11158 fchown's return value.
11159
11160 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
11161
11162 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
11163
11164 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
11165
11166 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
11167
11168 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
11169
11170 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
11171 it's used from the C level.
11172
11173 * process.c: Use the same condition for POLL_FOR_INPUT in both
11174 keyboard.c and process.c (bug#1858).
11175
11176 2011-07-09 Lawrence Mitchell <wence@gmx.li>
11177
11178 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
11179 (Fgnutls_boot): Use it.
11180
11181 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
11182
11183 * doc.c (Fsubstitute_command_keys): Revert last change.
11184
11185 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11186
11187 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
11188 quotes the next character, and doesn't affect other longer
11189 sequences (bug#8935).
11190
11191 * lread.c (syms_of_lread): Clarify that is isn't only
11192 `eval-buffer' and `eval-defun' that's affected by
11193 `lexical-binding' (bug#8460).
11194
11195 2011-07-15 Eli Zaretskii <eliz@gnu.org>
11196
11197 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
11198 bidi redisplay when a line includes both an image and is truncated.
11199
11200 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
11201
11202 Fix minor problems found by static checking.
11203 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
11204 (elsz): Now a signed constant, not a size_t var. We prefer signed
11205 types to unsigned, to avoid integer comparison confusion. Without
11206 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
11207 "cannot optimize loop, the loop counter may overflow", a symptom
11208 of the confusion.
11209 * indent.c (Fvertical_motion): Mark locals as initialized.
11210 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
11211
11212 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11213
11214 * search.c (Fre_search_backward): Mention `case-fold-search' in
11215 all the re_search_* functions (bug#8138).
11216
11217 * keyboard.c (Fopen_dribble_file): Document when the file is
11218 closed (bug#8056).
11219
11220 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11221
11222 * bidi.c (bidi_dump_cached_states): Fix format of displaying
11223 bidi_cache_idx.
11224
11225 Support bidi reordering of display and overlay strings.
11226 * xdisp.c (compute_display_string_pos)
11227 (compute_display_string_end): Accept additional argument STRING.
11228 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
11229 (reseat_to_string): Initialize bidi_it->string.s and
11230 bidi_it->string.schars.
11231 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
11232 NULL (avoids a crash in bidi_paragraph_init).
11233 Initialize itb.string.lstring.
11234 (init_iterator): Call bidi_init_it only of a valid
11235 buffer position was specified. Initialize paragraph_embedding to
11236 L2R.
11237 (reseat_to_string): Initialize the bidi iterator.
11238 (display_string): If we need to ignore text properties of
11239 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
11240 original value of -1 will not work with bidi.)
11241 (compute_display_string_pos): First arg is now struct
11242 `text_pos *'; all callers changed. Support display properties on
11243 Lisp strings.
11244 (compute_display_string_end): Support display properties on Lisp
11245 strings.
11246 (init_iterator, reseat_1, reseat_to_string): Initialize the
11247 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
11248 when iterating on a string not from display properties).
11249 (compute_display_string_pos, compute_display_string_end):
11250 Fix calculation of the object to scan. Fixes an error when using
11251 arrow keys.
11252 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
11253 base_level_stop; instead, set base_level_stop to BEGV.
11254 Fixes crashes in vertical-motion.
11255 (next_element_from_buffer): Improve commentary for when
11256 the iterator is before prev_stop.
11257 (init_iterator): Initialize bidi_p from the default value of
11258 bidi-display-reordering, not from buffer-local value. Use the
11259 buffer-local value only if initializing for buffer iteration.
11260 (handle_invisible_prop): Support invisible properties on strings
11261 that are being bidi-reordered.
11262 (set_iterator_to_next): Support bidi reordering of C strings and
11263 Lisp strings.
11264 (next_element_from_string): Support bidi reordering of Lisp
11265 strings.
11266 (handle_stop_backwards): Support Lisp strings as well.
11267 (display_string): Support display of R2L glyph rows.
11268 Use IT_STRING_CHARPOS when displaying from a Lisp string.
11269 (init_iterator): Don't initialize it->bidi_p for strings
11270 here.
11271 (reseat_to_string): Initialize it->bidi_p for strings here.
11272 (next_element_from_string, next_element_from_c_string)
11273 (next_element_from_buffer): Add xassert's for correspondence
11274 between IT's object being iterated and it->bidi_it.string
11275 structure.
11276 (face_before_or_after_it_pos): Support bidi iteration.
11277 (next_element_from_c_string): Handle the case of the first string
11278 character that is not the first one in the visual order.
11279 (get_visually_first_element): New function, refactored from common
11280 parts of next_element_from_buffer, next_element_from_string, and
11281 next_element_from_c_string.
11282 (tool_bar_lines_needed, redisplay_tool_bar)
11283 (display_menu_bar): Force left-to-right direction. Add a FIXME
11284 comment for making that be controlled by a user option.
11285 (push_it, pop_it): Save and restore the state of the
11286 bidi iterator. Save and restore the bidi_p flag.
11287 (pop_it): Iterate out of display property for string iteration as
11288 well.
11289 (iterate_out_of_display_property): Support iteration over strings.
11290 (handle_single_display_spec): Set up it->bidi_it for iteration
11291 over a display string, and call bidi_init_it.
11292 (handle_single_display_spec, next_overlay_string)
11293 (get_overlay_strings_1, push_display_prop): Set up the bidi
11294 iterator for displaying display or overlay strings.
11295 (forward_to_next_line_start): Don't use the shortcut if
11296 bidi-iterating.
11297 (back_to_previous_visible_line_start): If handle_display_prop
11298 pushed the iterator stack, restore the internal state of the bidi
11299 iterator by calling bidi_pop_it same number of times.
11300 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
11301 and we are bidi-iterating, don't decrement the iterator position;
11302 instead, set the first_elt flag in the bidi iterator, to produce
11303 the same effect.
11304 (reseat_1): Remove redundant setting of string_from_display_prop_p.
11305 (push_display_prop): xassert that we are iterating a buffer.
11306 (push_it, pop_it): Save and restore paragraph_embedding member.
11307 (handle_single_display_spec, next_overlay_string)
11308 (get_overlay_strings_1, reseat_1, reseat_to_string)
11309 (push_display_prop): Set up the `unibyte' member of bidi_it.string
11310 correctly. Don't assume unibyte strings are not bidi-reordered.
11311 (compute_display_string_pos)
11312 (compute_display_string_end): Fix handling the case of C string.
11313 (push_it, pop_it): Save and restore from_disp_prop_p.
11314 (handle_single_display_spec, push_display_prop): Set the
11315 from_disp_prop_p flag.
11316 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
11317 (pop_it): Call iterate_out_of_display_property only if we are
11318 popping after iteration over a string that came from a display
11319 property. Fix a typo in popping stretch info. Add an assertion
11320 for verifying that the iterator position is in sync with the bidi
11321 iterator.
11322 (handle_single_display_spec, get_overlay_strings_1)
11323 (push_display_prop): Fix initialization of paragraph direction for
11324 string when that of the parent object is not yet determined.
11325 (reseat_1): Call bidi_init_it to resync the bidi
11326 iterator with IT's position. (Bug#7616)
11327 (find_row_edges): If ROW->start.pos gives position
11328 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
11329 (handle_stop, back_to_previous_visible_line_start, reseat_1):
11330 Reset the from_disp_prop_p flag.
11331 (SAVE_IT, RESTORE_IT): New macros.
11332 (pos_visible_p, face_before_or_after_it_pos)
11333 (back_to_previous_visible_line_start)
11334 (move_it_in_display_line_to, move_it_in_display_line)
11335 (move_it_to, move_it_vertically_backward, move_it_by_lines)
11336 (try_scrolling, redisplay_window, display_line): Use them when
11337 saving a temporary copy of the iterator and restoring it back.
11338 (back_to_previous_visible_line_start, reseat_1)
11339 (init_iterator): Empty the bidi cache "stack".
11340 (move_it_in_display_line_to): If iterator ended up at
11341 EOL, but we never saw any buffer positions smaller than
11342 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
11343 motion in bidi-reordered lines.
11344 (move_it_in_display_line_to): Record prev_method and prev_pos
11345 immediately before the call to set_iterator_to_next. Fixes cursor
11346 motion in bidi-reordered lines with stretch glyphs and strings
11347 displayed in margins. (Bug#8133) (Bug#8867)
11348 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
11349 TO_CHARPOS.
11350 (pos_visible_p): Support positions in bidi-reordered lines.
11351 Save and restore bidi cache.
11352
11353 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
11354 (bidi_paragraph_info): Delete unused struct.
11355 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
11356 (bidi_cache_start): New variable.
11357 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
11358 to zero.
11359 (bidi_cache_fetch_state, bidi_cache_search)
11360 (bidi_cache_find_level_change, bidi_cache_iterator_state)
11361 (bidi_cache_find, bidi_peek_at_next_level)
11362 (bidi_level_of_next_char, bidi_find_other_level_edge)
11363 (bidi_move_to_visually_next): Compare cache index with
11364 bidi_cache_start rather than with zero.
11365 (bidi_fetch_char): Accept new argument STRING; all callers
11366 changed. Support iteration over a string. Support strings with
11367 display properties. Support unibyte strings. Fix the type of
11368 `len' according to what STRING_CHAR_AND_LENGTH expects.
11369 (bidi_paragraph_init, bidi_resolve_explicit_1)
11370 (bidi_resolve_explicit, bidi_resolve_weak)
11371 (bidi_level_of_next_char, bidi_move_to_visually_next):
11372 Support iteration over a string.
11373 (bidi_set_sor_type, bidi_resolve_explicit_1)
11374 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
11375 can now be zero (for strings); special values 0 and -1 were
11376 changed to -1 and -2, respectively.
11377 (bidi_char_at_pos): New function.
11378 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
11379 Call it instead of FETCH_MULTIBYTE_CHAR.
11380 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
11381 initialized to valid values.
11382 (bidi_init_it): Don't initialize charpos and bytepos with invalid
11383 values.
11384 (bidi_level_of_next_char): Allow the sentinel "position" to pass
11385 the test for valid cached positions. Fix the logic for looking up
11386 the sentinel state in the cache. GCPRO the Lisp string we are
11387 iterating.
11388 (bidi_push_it, bidi_pop_it): New functions.
11389 (bidi_initialize): Initialize the bidi cache start stack pointer.
11390 (bidi_cache_ensure_space): New function, refactored from part of
11391 bidi_cache_iterator_state. Don't assume the required size is just
11392 one BIDI_CACHE_CHUNK away.
11393 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
11394 (bidi_count_bytes, bidi_char_at_pos): New functions.
11395 (bidi_cache_search): Don't assume bidi_cache_last_idx is
11396 always valid if bidi_cache_idx is valid.
11397 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
11398 is valid if it's going to be used.
11399 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
11400 (bidi_cache_fetch_state, bidi_cache_search)
11401 (bidi_cache_find_level_change, bidi_cache_ensure_space)
11402 (bidi_cache_iterator_state, bidi_cache_find)
11403 (bidi_find_other_level_edge, bidi_cache_start_stack):
11404 All variables related to cache indices are now EMACS_INT.
11405
11406 * dispextern.h (struct bidi_string_data): New structure.
11407 (struct bidi_it): New member `string'. Make flag members be 1-bit
11408 fields, and put them last in the struct.
11409 (compute_display_string_pos, compute_display_string_end):
11410 Update prototypes.
11411 (bidi_push_it, bidi_pop_it): Add prototypes.
11412 (struct iterator_stack_entry): New members bidi_p,
11413 paragraph_embedding, and from_disp_prop_p.
11414 (struct it): Member bidi_p is now a bit field 1 bit wide.
11415 (bidi_shelve_cache, bidi_unshelve_cache):
11416 Declare prototypes.
11417
11418 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
11419 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
11420 and vector-like objects.
11421
11422 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
11423 cache around display iteration.
11424
11425 * window.c (Fwindow_end, window_scroll_pixel_based)
11426 (displayed_window_lines, Frecenter): Save and restore the bidi
11427 cache around display iteration.
11428
11429 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11430
11431 * editfns.c (Fdelete_region): Clarify the use of the named
11432 parameters (bug#6788).
11433
11434 2011-07-14 Martin Rudalics <rudalics@gmx.at>
11435
11436 * indent.c (Fvertical_motion): Set and restore w->pointm when
11437 saving and restoring the window's buffer (Bug#9006).
11438
11439 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11440
11441 * editfns.c (Fstring_to_char): Clarify just what is returned
11442 (bug#6576). Text by Eli Zaretskii.
11443
11444 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11445
11446 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
11447
11448 2011-07-13 Eli Zaretskii <eliz@gnu.org>
11449
11450 * buffer.c (mmap_find): Fix a typo.
11451
11452 2011-07-13 Johan Bockgård <bojohan@gnu.org>
11453
11454 Fix execution of x selection hooks.
11455 * xselect.c (Qx_lost_selection_functions)
11456 (Qx_sent_selection_functions): New vars.
11457 (syms_of_xselect): DEFSYM them.
11458 (x_handle_selection_request): Pass Qx_sent_selection_functions
11459 rather than Vx_sent_selection_functions to Frun_hook_with_args.
11460 (x_handle_selection_clear,x_clear_frame_selections):
11461 Pass Qx_lost_selection_functions rather than
11462 Vx_lost_selection_functions to Frun_hook_with_args.
11463
11464 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
11465
11466 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
11467 The old code sometimes used this field without initializing it.
11468
11469 * alloc.c (gc_sweep): Don't read past end of array.
11470 In theory, the old code could also have corrupted Emacs internals,
11471 though it'd be very unlikely.
11472
11473 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
11474
11475 * character.c (Fcharacterp): Don't advertise optional ignored
11476 argument. (Bug#4026)
11477
11478 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11479
11480 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
11481 key" (bug#4257).
11482
11483 * window.c (Fset_window_start): Doc fix (bug#4199).
11484 (Fset_window_hscroll): Ditto.
11485
11486 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
11487
11488 Fix minor new problems caught by GCC 4.6.1.
11489 * term.c (init_tty): Remove unused local.
11490 * xsettings.c (store_monospaced_changed): Define this function only
11491 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
11492 not used otherwise.
11493
11494 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11495
11496 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
11497
11498 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11499
11500 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
11501 are the mini-buffer and the echo area (bug#3320).
11502
11503 * term.c (init_tty): Remove support for supdup, c10 and perq
11504 terminals, which are no longer supported (bug#1482).
11505
11506 2011-07-10 Johan Bockgård <bojohan@gnu.org>
11507
11508 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
11509
11510 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
11511
11512 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
11513 for non-popups (Bug#3642).
11514
11515 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
11516
11517 * alloc.c (reset_malloc_hooks): Protoize.
11518 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
11519 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
11520 * cm.c (losecursor): Likewise.
11521 * data.c (fmod): Likewise.
11522 * dispnew.c (swap_glyphs_in_rows): Likewise.
11523 * emacs.c (memory_warning_signal): Likewise.
11524 * floatfns.c (float_error): Likewise.
11525 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
11526 (otf_open, font_otf_capability, generate_otf_features)
11527 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
11528 Likewise.
11529 * image.c (pbm_read_file): Likewise.
11530 * indent.c (string_display_width): Likewise.
11531 * intervals.c (check_for_interval, search_for_interval)
11532 (inc_interval_count, count_intervals, root_interval)
11533 (adjust_intervals_for_insertion, make_new_interval): Likewise.
11534 * lread.c (defalias): Likewise.
11535 * ralloc.c (r_alloc_check): Likewise.
11536 * regex.c (set_image_of_range_1, set_image_of_range)
11537 (regex_grow_registers): Likewise.
11538 * sysdep.c (strerror): Likewise.
11539 * termcap.c (valid_filename_p, tprint, main): Likewise.
11540 * tparam.c (main): Likewise.
11541 * unexhp9k800.c (run_time_remap, save_data_space)
11542 (update_file_ptrs, read_header, write_header, calculate_checksum)
11543 (copy_file, copy_rest, display_header): Likewise.
11544 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
11545 Likewise.
11546 * xdisp.c (check_it): Likewise.
11547 * xfaces.c (register_color, unregister_color, unregister_colors):
11548 Likewise.
11549 * xfns.c (print_fontset_result): Likewise.
11550 * xrdb.c (member, fatal, main): Likewise.
11551
11552 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
11553
11554 Fix minor problems found by static checking (Bug#9031).
11555 * chartab.c (char_table_set_range, map_sub_char_table):
11556 Remove unused locals.
11557 (uniprop_table): Now static.
11558 * composite.c (_work_char): Remove unused static var.
11559
11560 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
11561
11562 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
11563
11564 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
11565
11566 * gtkutil.c (qttip_cb): Remove code without function.
11567
11568 2011-07-09 Eli Zaretskii <eliz@gnu.org>
11569
11570 * w32.c (pthread_sigmask): New stub.
11571
11572 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
11573
11574 Use pthread_sigmask, not sigprocmask (Bug#9010).
11575 sigprocmask is portable only for single-threaded applications, and
11576 Emacs can be multi-threaded when it uses GTK.
11577 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
11578 (LIBES): Use it.
11579 * callproc.c (Fcall_process):
11580 * process.c (create_process):
11581 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
11582 Use pthread_sigmask, not sigprocmask.
11583
11584 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
11585
11586 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
11587 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
11588 wrong (Bug#8591).
11589
11590 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
11591
11592 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
11593 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
11594 (xg_hide_tooltip): Fix comment.
11595
11596 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
11597 in registerServicesMenuSendTypes.
11598 (validRequestorForSendType): Don't check ns_return_types.
11599
11600 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
11601 ns_return_type.
11602
11603 2011-07-08 Jason Rumney <jasonr@gnu.org>
11604
11605 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
11606 SH_SHOW for hidden windows (Bug#5482).
11607
11608 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
11609 frame struct members of non-existent frames (Bug#6284).
11610
11611 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
11612
11613 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
11614 variable firstTime not needed on OSX >= 10.6.
11615 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
11616 >= 10.5. Use setKnobProportion, setDoubleValue.
11617
11618 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
11619 (MAC_OS_X_VERSION_10_5): Define if not defined.
11620 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
11621 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
11622 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
11623
11624 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
11625 cString and lossyCString on OSX >= 10.4.
11626
11627 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
11628 sizeToFit on OSX >= 10.2.
11629
11630 * nsimage.m (allocInitFromFile): Don't use deprecated method
11631 bestRepresentationForDevice on OSX >= 10.6.
11632
11633 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
11634 to avoid warning.
11635
11636 * emacs.c: Declare unexec_init_emacs_zone.
11637
11638 * nsgui.h: Fix compiler warning about gnulib redefining verify.
11639
11640 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
11641
11642 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
11643 on svcsMenu (Bug#8842).
11644
11645 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
11646 ns_return_types.
11647 (Fns_list_services): Just return Qnil on 10.6, code not working there.
11648
11649 * nsterm.m (QUTF8_STRING): Declare.
11650 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
11651 (validRequestorForSendType): Return type is (id).
11652 Change indexOfObjectIdenticalTo to indexOfObject.
11653 Check if we have local selection before returning self (Bug#8842).
11654 (writeSelectionToPasteboard): Put local selection into paste board
11655 if we have a local selection (Bug#8842).
11656 (syms_of_nsterm): DEFSYM QUTF8_STRING.
11657
11658 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
11659 (ns_get_local_selection): Declare.
11660
11661 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11662
11663 * keymap.c (describe_map_tree): Don't insert a double newline at
11664 the end of the buffer (bug#1169) and return whether we inserted
11665 something.
11666
11667 * callint.c (Fcall_interactively): Change "reading args" to
11668 "providing args" to try to clarify what it does (bug#1010).
11669
11670 2011-07-07 Kenichi Handa <handa@m17n.org>
11671
11672 * composite.c (composition_compute_stop_pos): Ignore a static
11673 composition starting before CHARPOS (Bug#8915).
11674
11675 * xdisp.c (handle_composition_prop): Likewise.
11676
11677 2011-07-07 Eli Zaretskii <eliz@gnu.org>
11678
11679 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
11680 (Bug#9015)
11681
11682 2011-07-07 Kenichi Handa <handa@m17n.org>
11683
11684 * character.h (unicode_category_t): New enum type.
11685
11686 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
11687 (Qchar_code_property_table): New variable.
11688 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
11689 (UNIPROP_COMPRESSED_FORM_P): New macros.
11690 (char_table_ascii): Uncompress the compressed values.
11691 (sub_char_table_ref): New arg is_uniprop. Callers changed.
11692 Uncompress the compressed values.
11693 (sub_char_table_ref_and_range): Likewise.
11694 (char_table_ref_and_range): Uncompress the compressed values.
11695 (sub_char_table_set): New arg is_uniprop. Callers changed.
11696 Uncompress the compressed values.
11697 (sub_char_table_set_range): Args changed. Callers changed.
11698 (char_table_set_range): Adjuted for the above change.
11699 (map_sub_char_table): Delete args default_val and parent. Add arg
11700 top. Give decoded values to a Lisp function.
11701 (map_char_table): Adjust for the above change. Give decoded
11702 values to a Lisp function. Gcpro more variables.
11703 (uniprop_table_uncompress)
11704 (uniprop_decode_value_run_length): New functions.
11705 (uniprop_decoder, uniprop_decoder_count): New variables.
11706 (uniprop_get_decoder, uniprop_encode_value_character)
11707 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
11708 New functions.
11709 (uniprop_encoder, uniprop_encoder_count): New variables.
11710 (uniprop_get_encoder, uniprop_table)
11711 (Funicode_property_table_internal, Fget_unicode_property_internal)
11712 (Fput_unicode_property_internal): New functions.
11713 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
11714 Sunicode_property_table_internal, Sget_unicode_property_internal,
11715 and Sput_unicode_property_internal. Defvar_lisp
11716 char-code-property-alist.
11717
11718 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
11719 Vunicode_category_table.
11720
11721 * font.c (font_range): Adjust for the change of
11722 Vunicode_category_table.
11723
11724 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
11725
11726 * m/iris4d.h: Remove file, move contents ...
11727 * s/irix6-5.h: ... here.
11728
11729 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
11730
11731 Remove unportable assumption about struct layout (Bug#8884).
11732 * alloc.c (mark_buffer):
11733 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
11734 (clone_per_buffer_values): Don't assume that
11735 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
11736 This isn't true in general, and it's particularly not true
11737 if Emacs is configured with --with-wide-int.
11738 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
11739 New macros, used in the buffer.c change.
11740
11741 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
11742
11743 * xsettings.c: Use both GConf and GSettings if both are available.
11744 (store_config_changed_event): Add comment.
11745 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
11746 (store_tool_bar_style_changed): New functions.
11747 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
11748 (struct xsettings): Move font inside HAVE_XFT.
11749 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
11750 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
11751 Move inside HAVE_XFT.
11752 (something_changed_gsettingsCB): Rename from something_changedCB.
11753 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
11754 also.
11755 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
11756 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
11757 (something_changed_gconfCB): Rename from something_changedCB.
11758 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
11759 (parse_settings): Move check for font inside HAVE_XFT.
11760 (read_settings, apply_xft_settings): Add comment.
11761 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
11762 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
11763 call store_font_name_changed.
11764 (xft_settings_event): Add comment.
11765 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
11766 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
11767 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
11768 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
11769 (xsettings_initialize): Call init_gsettings last.
11770 (xsettings_get_system_font, xsettings_get_system_normal_font):
11771 Add comment.
11772
11773 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
11774
11775 Random fixes. E.g., (random) never returned negative values.
11776 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
11777 subseconds part to the entropy, as that's a bit more random.
11778 Prefer signed to unsigned, since the signedness doesn't matter and
11779 in general we prefer signed. When given a limit, use a
11780 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
11781 latter isn't right if USE_2_TAGS_FOR_INTS.
11782 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
11783 not 0..VALMASK. Don't discard "excess" bits that random () returns.
11784
11785 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11786
11787 * textprop.c (text_property_stickiness):
11788 Obey Vtext_property_default_nonsticky.
11789 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
11790 * w32fns.c (syms_of_w32fns):
11791 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
11792
11793 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11794
11795 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
11796 This is more efficient than Ffile_directory_p and avoids a minor race.
11797
11798 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11799
11800 * buffer.c (Foverlay_put): Say what the return value is
11801 (bug#7835).
11802
11803 * fileio.c (barf_or_query_if_file_exists): Check first if the file
11804 is a directory before asking whether to use the file name
11805 (bug#7564).
11806 (barf_or_query_if_file_exists): Make the "File is a directory"
11807 error be more correct.
11808
11809 * fns.c (Frequire): Remove the mention of the .gz files, since
11810 that's installation-specific, but keep the mention of
11811 `get-load-suffixes'.
11812
11813 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11814
11815 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
11816 Report string overflow if the output is too long.
11817
11818 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11819
11820 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
11821 (syms_of_gnutls): Remove duplicate DEFSYM for
11822 Qgnutls_bootprop_verify_hostname_error, an error for
11823 Qgnutls_bootprop_verify_error (which is no longer used).
11824
11825 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
11826 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
11827 Also (re)move comments that are misplaced or no longer relevant.
11828
11829 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11830
11831 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
11832
11833 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
11834
11835 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
11836 and background color parameters if they have been changed.
11837
11838 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11839
11840 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
11841
11842 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11843
11844 * xsettings.c (SYSTEM_FONT): Define only when used.
11845 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
11846
11847 * keymap.c (access_keymap_1): Now static.
11848
11849 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
11850
11851 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
11852 leave any prefix arg for the up event (Bug#1586).
11853
11854 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11855
11856 * lread.c (syms_of_lread): Mention single symbols defined by
11857 `defvar' or `defconst' (bug#7154).
11858
11859 * fns.c (Frequire): Mention .el.gz files (bug#7314).
11860 (Frequire): Mention get-load-suffixes.
11861
11862 2011-07-02 Martin Rudalics <rudalics@gmx.at>
11863
11864 * window.h (window): Remove clone_number slot.
11865 * window.c (Fwindow_clone_number, Fset_window_clone_number):
11866 Remove.
11867 (make_parent_window, make_window, saved_window)
11868 (Fset_window_configuration, save_window_save): Don't deal with
11869 clone numbers.
11870 * buffer.c (Qclone_number): Remove declaration.
11871 (sort_overlays, overlay_strings): Don't deal with clone numbers.
11872
11873 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11874
11875 Add multiple inheritance to keymaps.
11876 * keymap.c (Fmake_composed_keymap): New function.
11877 (Fset_keymap_parent): Simplify.
11878 (fix_submap_inheritance): Remove.
11879 (access_keymap_1): New function extracted from access_keymap to handle
11880 embedded parents and handle lists of maps.
11881 (access_keymap): Use it.
11882 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
11883 (Fcopy_keymap): Handle embedded parents.
11884 (Fcommand_remapping, define_as_prefix): Simplify.
11885 (Fkey_binding): Simplify.
11886 (syms_of_keymap): Move minibuffer-local-completion-map,
11887 minibuffer-local-filename-completion-map,
11888 minibuffer-local-must-match-map, and
11889 minibuffer-local-filename-must-match-map to Elisp.
11890 (syms_of_keymap): Defsubr make-composed-keymap.
11891 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
11892 (parse_menu_item): Trivial simplification.
11893
11894 2011-07-01 Glenn Morris <rgm@gnu.org>
11895
11896 * Makefile.in (SETTINGS_LIBS): Fix typo.
11897
11898 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
11899
11900 * coding.c (Fencode_coding_string): Record the last coding system
11901 used, as the function doc string says (bug#8738).
11902
11903 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
11904
11905 * xsettings.c (store_monospaced_changed): Take new font as arg and
11906 check for change against current_mono_font.
11907 (EMACS_TYPE_SETTINGS): Remove this and related defines.
11908 (emacs_settings_constructor, emacs_settings_get_property)
11909 (emacs_settings_set_property, emacs_settings_class_init)
11910 (emacs_settings_init, gsettings_obj): Remove.
11911 (something_changedCB): New function for HAVE_GSETTINGS.
11912 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
11913 with value as argument.
11914 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
11915 g_settings_new (Bug#8967). Do not create gsettings_obj.
11916 Remove calls to g_settings_bind. Connect something_changedCB to
11917 "changed".
11918
11919 * xgselect.c: Add defined (HAVE_GSETTINGS).
11920 (xgselect_initialize): Ditto.
11921
11922 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
11923 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
11924 xg_select.
11925
11926 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11927
11928 * eval.c (struct backtrace): Simplify and port the data structure.
11929 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
11930 signed bit field, as this assumption is not portable and it makes
11931 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
11932 "char debug_on_exit : 1" as this is not portable either; instead,
11933 use the portable "unsigned int debug_on_exit : 1". Remove unused
11934 member evalargs. Remove obsolete comments about cc bombing out.
11935
11936 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
11937
11938 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
11939 Let HAVE_GSETTINGS override HAVE_GCONF.
11940 (store_monospaced_changed): New function.
11941 (EMACS_SETTINGS): A new type derived from GObject to handle
11942 GSettings notifications.
11943 (emacs_settings_constructor, emacs_settings_get_property)
11944 (emacs_settings_set_property, emacs_settings_class_init):
11945 New functions.
11946 (gsettings_client, gsettings_obj): New variables.
11947 (GSETTINGS_SCHEMA): New define.
11948 (something_changedCB): Call store_monospaced_changed.
11949 (init_gsettings): New function.
11950 (xsettings_initialize): Call init_gsettings.
11951 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
11952 to NULL.
11953
11954 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
11955 GCONF_CFLAGS/LIBS.
11956
11957 2011-06-29 Martin Rudalics <rudalics@gmx.at>
11958
11959 * window.c (resize_root_window, grow_mini_window)
11960 (shrink_mini_window): Rename Qresize_root_window to
11961 Qwindow_resize_root_window and Qresize_root_window_vertically to
11962 Qwindow_resize_root_window_vertically.
11963
11964 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
11965
11966 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
11967
11968 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
11969
11970 * makefile.w32-in: Redesign dependencies so they reflect more
11971 clearly which files are directly included by each source file,
11972 and not through other includes.
11973
11974 2011-06-27 Martin Rudalics <rudalics@gmx.at>
11975
11976 * buffer.c (Qclone_number): Declare static and DEFSYM it.
11977 (sort_overlays, overlay_strings): When an overlay's clone number
11978 matches the window's clone number process the overlay even if
11979 the overlay's window property doesn't match the current window.
11980
11981 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
11982 (Fwindow_hchild): Rename to Fwindow_left_child.
11983 (Fwindow_next): Rename to Fwindow_next_sibling.
11984 (Fwindow_prev): Rename to Fwindow_prev_sibling.
11985 (resize_window_check): Rename to window_resize_check.
11986 (resize_window_apply): Rename to window_resize_apply.
11987 (Fresize_window_apply): Rename to Fwindow_resize_apply.
11988 (Fdelete_other_windows_internal, resize_frame_windows)
11989 (Fsplit_window_internal, Fdelete_window_internal)
11990 (grow_mini_window, shrink_mini_window)
11991 (Fresize_mini_window_internal): Fix callers accordingly.
11992
11993 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
11994
11995 * emacsgtkfixed.h: State that this is only used with Gtk+3.
11996 (emacs_fixed_set_min_size): Remove.
11997 (emacs_fixed_new): Take frame as argument.
11998
11999 * emacsgtkfixed.c: State that this is only used with Gtk+3.
12000 (_EmacsFixedPrivate): Remove minwidth/height.
12001 Add struct frame *f.
12002 (emacs_fixed_init): Initialize priv->f.
12003 (get_parent_class, emacs_fixed_set_min_size): Remove.
12004 (emacs_fixed_new): Set priv->f to argument.
12005 (emacs_fixed_get_preferred_width)
12006 (emacs_fixed_get_preferred_height): Use min_width/height from
12007 frames size_hint to set minimum and natural (Bug#8919).
12008 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
12009 and use min_width/height from frames size_hint to set
12010 min_width/height (Bug#8919).
12011
12012 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
12013 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
12014 Fix indentation.
12015
12016 2011-06-26 Eli Zaretskii <eliz@gnu.org>
12017
12018 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
12019 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
12020 called at ZV.
12021
12022 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
12023
12024 * process.c (wait_reading_process_output): Bypass select if
12025 waiting for a cell while ignoring keyboard input, and input is
12026 pending. Suggested by Jan Djärv (Bug#8869).
12027
12028 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
12029
12030 Use gnulib's dup2 module instead of rolling our own.
12031 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
12032
12033 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12034
12035 * dispnew.c (scrolling_window): Before scrolling, turn off a
12036 mouse-highlight in the window being scrolled.
12037
12038 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
12039
12040 Move DEFSYM to lisp.h and use everywhere.
12041
12042 * character.h (DEFSYM): Move declaration...
12043 * lisp.h (DEFSYM): ...here.
12044
12045 * gnutls.c:
12046 * minibuf.c:
12047 * w32menu.c:
12048 * w32proc.c:
12049 * w32select.c: Don't include character.h.
12050
12051 * alloc.c (syms_of_alloc):
12052 * buffer.c (syms_of_buffer):
12053 * bytecode.c (syms_of_bytecode):
12054 * callint.c (syms_of_callint):
12055 * casefiddle.c (syms_of_casefiddle):
12056 * casetab.c (init_casetab_once):
12057 * category.c (init_category_once, syms_of_category):
12058 * ccl.c (syms_of_ccl):
12059 * cmds.c (syms_of_cmds):
12060 * composite.c (syms_of_composite):
12061 * dbusbind.c (syms_of_dbusbind):
12062 * dired.c (syms_of_dired):
12063 * dispnew.c (syms_of_display):
12064 * doc.c (syms_of_doc):
12065 * editfns.c (syms_of_editfns):
12066 * emacs.c (syms_of_emacs):
12067 * eval.c (syms_of_eval):
12068 * fileio.c (syms_of_fileio):
12069 * fns.c (syms_of_fns):
12070 * frame.c (syms_of_frame):
12071 * fringe.c (syms_of_fringe):
12072 * insdel.c (syms_of_insdel):
12073 * keymap.c (syms_of_keymap):
12074 * lread.c (init_obarray, syms_of_lread):
12075 * macros.c (syms_of_macros):
12076 * msdos.c (syms_of_msdos):
12077 * print.c (syms_of_print):
12078 * process.c (syms_of_process):
12079 * search.c (syms_of_search):
12080 * sound.c (syms_of_sound):
12081 * syntax.c (init_syntax_once, syms_of_syntax):
12082 * terminal.c (syms_of_terminal):
12083 * textprop.c (syms_of_textprop):
12084 * undo.c (syms_of_undo):
12085 * w32.c (globals_of_w32):
12086 * window.c (syms_of_window):
12087 * xdisp.c (syms_of_xdisp):
12088 * xfaces.c (syms_of_xfaces):
12089 * xfns.c (syms_of_xfns):
12090 * xmenu.c (syms_of_xmenu):
12091 * xsettings.c (syms_of_xsettings):
12092 * xterm.c (syms_of_xterm): Use DEFSYM.
12093
12094 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
12095
12096 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
12097
12098 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
12099
12100 Integer and buffer overflow fixes (Bug#8873).
12101
12102 * print.c (printchar, strout): Check for string overflow.
12103 (PRINTPREPARE, printchar, strout):
12104 Don't set size unless allocation succeeds.
12105
12106 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
12107 for sizes. Check for string overflow more accurately.
12108 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
12109
12110 * macros.c: Integer and buffer overflow fixes.
12111 * keyboard.h (struct keyboard.kbd_macro_bufsize):
12112 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
12113 Use ptrdiff_t, not int, for sizes.
12114 Don't increment bufsize until after realloc succeeds.
12115 Check for size-calculation overflow.
12116 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
12117
12118 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
12119
12120 * lread.c: Integer overflow fixes.
12121 (read_integer): Radix is now EMACS_INT, not int,
12122 to improve quality of diagnostics for out-of-range radices.
12123 Calculate buffer size correctly for out-of-range radices.
12124 (read1): Check for integer overflow in radices, and in
12125 read-circle numbers.
12126 (read_escape): Avoid int overflow.
12127 (Fload, openp, read_buffer_size, read1)
12128 (substitute_object_recurse, read_vector, read_list, map_obarray):
12129 Use ptrdiff_t, not int, for sizes.
12130 (read1): Use EMACS_INT, not int, for sizes.
12131 Check for size overflow.
12132
12133 * image.c (cache_image): Check for size arithmetic overflow.
12134
12135 * lread.c: Integer overflow issues.
12136 (saved_doc_string_size, saved_doc_string_length)
12137 (prev_saved_doc_string_size, prev_saved_doc_string_length):
12138 Now ptrdiff_t, not int.
12139 (read1): Don't assume doc string length fits in int. Check for
12140 out-of-range doc string lengths.
12141 (read_list): Don't assume file position fits in int.
12142 (read_escape): Check for hex character overflow.
12143
12144 2011-06-22 Leo Liu <sdl.web@gmail.com>
12145
12146 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
12147 Move to minibuffer.el.
12148
12149 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
12150
12151 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
12152 The following patches are for when GLYPH_DEBUG && !XASSERT.
12153 * dispextern.h (trace_redisplay_p, dump_glyph_string):
12154 * dispnew.c (flush_stdout):
12155 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
12156 Mark as externally visible.
12157 * dispnew.c (check_window_matrix_pointers): Now static.
12158 * dispnew.c (window_to_frame_vpos):
12159 * xfns.c (unwind_create_frame):
12160 * xterm.c (x_check_font): Remove unused local.
12161 * scroll.c (CHECK_BOUNDS):
12162 * xfaces.c (cache_fache): Rename local to avoid shadowing.
12163 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
12164 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
12165 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
12166 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
12167 Now static.
12168 (debug_method_add): Use va_list and vsprintf rather than relying
12169 on undefined behavior with wrong number of arguments.
12170 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
12171 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
12172 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
12173 since we're not interested in debugging glyphs with old libraries.
12174 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
12175 GCC 4.6.0's static checking.
12176
12177 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
12178
12179 Integer overflow and signedness fixes (Bug#8873).
12180 A few related buffer overrun fixes, too.
12181
12182 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
12183
12184 * dispextern.h (struct face.stipple):
12185 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
12186 (x_bitmap_mask, x_allocate_bitmap_record)
12187 (x_create_bitmap_from_data, x_create_bitmap_from_file)
12188 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
12189 (x_create_bitmap_from_xpm_data):
12190 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
12191 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
12192 (.bitmaps_last):
12193 * xfaces.c (load_pixmap):
12194 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
12195 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
12196 (.bitmaps_last, struct x_output.icon_bitmap):
12197 Use ptrdiff_t, not int, for bitmap indexes.
12198 (x_allocate_bitmap_record): Check for size overflow.
12199 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
12200
12201 Use ptrdiff_t, not int, for overlay counts.
12202 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
12203 * editfns.c (overlays_around, get_pos_property):
12204 * textprop.c (get_char_property_and_overlay):
12205 * xdisp.c (next_overlay_change, note_mouse_highlight):
12206 * xfaces.c (face_at_buffer_position):
12207 * buffer.c (OVERLAY_COUNT_MAX): New macro.
12208 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
12209 (Fnext_overlay_change, Fprevious_overlay_change)
12210 (mouse_face_overlay_overlaps, Foverlays_in):
12211 Use ptrdiff_t, not int, for sizes.
12212 (overlays_at, overlays_in): Check for size-calculation overflow.
12213
12214 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
12215
12216 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
12217 (x_session_initialize): Do not assume string length fits in int.
12218
12219 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
12220 This is unlikely, but can occur if DPI is outlandish.
12221
12222 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
12223 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
12224
12225 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
12226 * xrdb.c (magic_file_p, search_magic_path):
12227 Omit last arg SUFFIX; it was always 0. All callers changed.
12228 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
12229
12230 * xfont.c (xfont_match): Avoid need for strlen.
12231
12232 * xfns.c: Don't assume strlen fits in int.
12233 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
12234
12235 * xdisp.c (message_log_check_duplicate): Return intmax_t,
12236 not unsigned long, as we prefer signed integers. All callers changed.
12237 Detect integer overflow in repeat count.
12238 (message_dolog): Don't assume print length fits in 39 bytes.
12239 (display_mode_element): Don't assume strlen fits in int.
12240
12241 * termcap.c: Don't assume sizes fit in int and never overflow.
12242 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
12243 (gobble_line): Check for size-calculation overflow.
12244
12245 * minibuf.c (Fread_buffer):
12246 * lread.c (intern, intern_c_string):
12247 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
12248 Don't assume string length fits in int.
12249
12250 * keyboard.c (parse_tool_bar_item):
12251 * gtkutil.c (style_changed_cb): Avoid need for strlen.
12252
12253 * font.c: Don't assume string length fits in int.
12254 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
12255 Use ptrdiff_t, not int.
12256 (font_intern_prop): Don't assume string length fits in int.
12257 Don't assume integer property fits in fixnum.
12258 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
12259
12260 * filelock.c: Fix some buffer overrun and integer overflow issues.
12261 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
12262 Reformulate so as not to need the command string.
12263 Invoke gzip -cd rather than gunzip, as it's more portable.
12264 (lock_info_type, lock_file_1, lock_file):
12265 Don't assume pid_t and time_t fit in unsigned long.
12266 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
12267 (current_lock_owner): Prefer signed type for sizes.
12268 Use memcpy, not strncpy, where memcpy is what is really wanted.
12269 Don't assume (via atoi) that time_t and pid_t fit in int.
12270 Check for time_t and/or pid_t out of range, e.g., via a network share.
12271 Don't alloca where an auto var works fine.
12272
12273 * fileio.c: Fix some integer overflow issues.
12274 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
12275 Don't assume string length fits in int.
12276 (directory_file_name): Don't assume string length fits in long.
12277 (make_temp_name): Don't assume pid fits in int, or that its print
12278 length is less than 20.
12279
12280 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
12281
12282 * coding.c (make_subsidiaries): Don't assume string length fits in int.
12283
12284 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
12285
12286 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
12287 We prefer signed integers, even for size calculations.
12288
12289 * emacs.c: Don't assume string length fits in 'int'.
12290 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
12291 (main): Don't invoke strlen when not needed.
12292
12293 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
12294 (XD_DEBUG_MESSAGE): Don't waste a byte.
12295
12296 * callproc.c (getenv_internal_1, getenv_internal)
12297 (Fgetenv_internal):
12298 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
12299
12300 * lread.c (invalid_syntax): Omit length argument.
12301 All uses changed. This doesn't fix a bug, but it simplifies the
12302 code away from its former Hollerith-constant appearance, and it's
12303 one less 'int' to worry about when looking at integer-overflow issues.
12304 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
12305
12306 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
12307 This didn't break anything, but it didn't help either.
12308 It's confusing to put a bogus integer in a place where the actual
12309 value does not matter.
12310 (LIST_END_P): Remove unused macro and its bogus comment.
12311 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
12312
12313 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
12314 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
12315 implementation.
12316 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
12317 We prefer signed types, and the value cannot exceed the EMACS_INT
12318 range anyway (because otherwise the length would not be representable).
12319 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
12320 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
12321 This avoids a GCC warning when WIDE_EMACS_INT.
12322
12323 * indent.c (sane_tab_width): New function.
12324 (current_column, scan_for_column, Findent_to, position_indentation)
12325 (compute_motion): Use it. This is just for clarity.
12326 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
12327
12328 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
12329
12330 * lisp.h (lint_assume): New macro.
12331 * composite.c (composition_gstring_put_cache):
12332 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
12333
12334 * editfns.c, insdel.c:
12335 Omit unnecessary forward decls, to simplify future changes.
12336
12337 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
12338
12339 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
12340
12341 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
12342 Use much-faster test for byte-length change.
12343 Don't assume string byte-length fits in 'int'.
12344 Check that character arg fits in 'int'.
12345 (mapcar1): Declare byte as byte, for clarity.
12346
12347 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
12348
12349 * fns.c (concat): Catch string overflow earlier.
12350 Do not rely on integer wraparound.
12351
12352 * dispextern.h (struct it.overlay_strings_charpos)
12353 (struct it.selective): Now EMACS_INT, not int.
12354 * xdisp.c (forward_to_next_line_start)
12355 (back_to_previous_visible_line_start)
12356 (reseat_at_next_visible_line_start, next_element_from_buffer):
12357 Don't arbitrarily truncate the value of 'selective' to int.
12358
12359 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
12360
12361 * composite.c: Don't truncate sizes to 'int'.
12362 (composition_gstring_p, composition_reseat_it)
12363 (composition_adjust_point): Use EMACS_INT, not int.
12364 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
12365 not EMACS_UINT, for indexes.
12366
12367 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
12368
12369 * buffer.c: Include <verify.h>.
12370 (struct sortvec.priority, struct sortstr.priority):
12371 Now EMACS_INT, not int.
12372 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
12373 (struct sortstr.size, record_overlay_string)
12374 (struct sortstrlist.size, struct sortlist.used):
12375 Don't truncate size to int.
12376 (record_overlay_string): Check for size-calculation overflow.
12377 (init_buffer_once): Check at compile-time, not run-time.
12378
12379 2011-06-22 Jim Meyering <meyering@redhat.com>
12380
12381 Don't leak an XBM-image-sized buffer
12382 * image.c (xbm_load): Free the image buffer after using it.
12383
12384 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
12385
12386 Port to Sun C.
12387 * composite.c (find_automatic_composition): Omit needless 'return 0;'
12388 that Sun C diagnosed.
12389 * fns.c (secure_hash): Fix pointer signedness issue.
12390 * intervals.c (static_offset_intervals): New function.
12391 (offset_intervals): Use it.
12392
12393 2011-06-21 Leo Liu <sdl.web@gmail.com>
12394
12395 * deps.mk (fns.o):
12396 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
12397 sha512.h.
12398
12399 * fns.c (secure_hash): Rename from crypto_hash_function and change
12400 the first arg to accept symbols.
12401 (Fsecure_hash): New primitive.
12402 (syms_of_fns): New symbols.
12403
12404 2011-06-20 Deniz Dogan <deniz@dogan.se>
12405
12406 * process.c (Fset_process_buffer): Clarify return value in
12407 docstring.
12408
12409 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
12410
12411 * dispnew.c (add_window_display_history): Use BVAR.
12412
12413 * xdisp.c (debug_method_add): Use BVAR.
12414 (check_window_end, dump_glyph_matrix, dump_glyph)
12415 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
12416
12417 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
12418 Likewise.
12419
12420 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
12421 check till after the cache is created in init_frame_faces.
12422
12423 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12424
12425 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
12426
12427 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
12428
12429 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
12430 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
12431 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
12432
12433 Improve buffer-overflow checking (Bug#8873).
12434 * fileio.c (Finsert_file_contents):
12435 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
12436 Remove the old (too-loose) buffer overflow checks.
12437 They weren't needed, since make_gap checks for buffer overflow.
12438 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
12439 The old code merely checked for Emacs fixnum overflow, and relied
12440 on undefined (wraparound) behavior. The new code avoids undefined
12441 behavior, and also checks for ptrdiff_t and/or size_t overflow.
12442
12443 * editfns.c (Finsert_char): Don't dump core with very negative counts.
12444 Tune. Don't use wider integers than needed. Don't use alloca.
12445 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
12446
12447 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
12448
12449 * insdel.c, lisp.h (buffer_overflow): New function.
12450 (insert_from_buffer_1, replace_range, replace_range_2):
12451 * insdel.c (make_gap_larger):
12452 * editfns.c (Finsert_char):
12453 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
12454
12455 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
12456
12457 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
12458
12459 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
12460
12461 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
12462 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
12463
12464 * fileio.c: Don't assume EMACS_INT fits in off_t.
12465 (emacs_lseek): New static function.
12466 (Finsert_file_contents, Fwrite_region): Use it.
12467 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
12468
12469 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
12470
12471 * fns.c: Don't overflow int when computing a list length.
12472 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
12473 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
12474 truncation on 64-bit hosts. Check for QUIT every
12475 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
12476 faster and is responsive enough.
12477 (Flength): Report an error instead of overflowing an integer.
12478 (Fsafe_length): Return a float if the value is not representable
12479 as a fixnum. This shouldn't happen except in contrived situations.
12480 (Fnthcdr, Fsort): Don't assume list length fits in int.
12481 (Fcopy_sequence): Don't assume vector length fits in int.
12482
12483 * alloc.c: Check that resized vectors' lengths fit in fixnums.
12484 (header_size, word_size): New constants.
12485 (allocate_vectorlike): Don't check size overflow here.
12486 (allocate_vector): Check it here instead, since this is the only
12487 caller of allocate_vectorlike that could cause overflow.
12488 Check that the new vector's length is representable as a fixnum.
12489
12490 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
12491 The previous code was bogus. For example, next_almost_prime (32)
12492 returned 39, which is undesirable as it is a multiple of 3; and
12493 next_almost_prime (24) returned 25, which is a multiple of 5 so
12494 why was the code bothering to check for multiples of 7?
12495
12496 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
12497
12498 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
12499
12500 Variadic C functions now count arguments with ptrdiff_t.
12501 This partly undoes my 2011-03-30 change, which replaced int with size_t.
12502 Back then I didn't know that the Emacs coding style prefers signed int.
12503 Also, in the meantime I found a few more instances where arguments
12504 were being counted with int, which may truncate counts on 64-bit
12505 machines, or EMACS_INT, which may be unnecessarily wide.
12506 * lisp.h (struct Lisp_Subr.function.aMANY)
12507 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
12508 Arg counts are now ptrdiff_t, not size_t.
12509 All variadic functions and their callers changed accordingly.
12510 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
12511 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
12512 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
12513 * callint.c (Fcall_interactively): Check arg count for overflow,
12514 to avoid potential buffer overrun. Use signed char, not 'int',
12515 for 'varies' array, so that we needn't bother to check its size
12516 calculation for overflow.
12517 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
12518 * eval.c (apply_lambda):
12519 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
12520 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
12521 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
12522
12523 * callint.c (Fcall_interactively): Don't use index var as event count.
12524
12525 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
12526 * mem-limits.h (SIZE): Remove; no longer used.
12527
12528 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
12529
12530 Remove unnecessary casts.
12531 * xterm.c (x_term_init):
12532 * xfns.c (x_set_border_pixel):
12533 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
12534 These aren't needed now that we assume ANSI C.
12535
12536 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
12537 It's more likely to cause problems (due to unsigned overflow)
12538 than to cure them.
12539
12540 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
12541
12542 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
12543
12544 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
12545
12546 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
12547
12548 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
12549
12550 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
12551
12552 GLYPH_CODE_FACE returns EMACS_INT, not int.
12553 * dispextern.h (merge_faces):
12554 * xfaces.c (merge_faces):
12555 * xdisp.c (get_next_display_element, next_element_from_display_vector):
12556 Don't assume EMACS_INT fits in int.
12557
12558 * character.h (CHAR_VALID_P): Remove unused parameter.
12559 * fontset.c, lisp.h, xdisp.c: All uses changed.
12560
12561 * editfns.c (Ftranslate_region_internal): Omit redundant test.
12562
12563 * fns.c (concat): Minor tuning based on overflow analysis.
12564 This doesn't fix any bugs. Use int to hold character, instead
12565 of constantly refetching from Emacs object. Use XFASTINT, not
12566 XINT, for value known to be a character. Don't bother comparing
12567 a single byte to 0400, as it's always less.
12568
12569 * floatfns.c (Fexpt):
12570 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
12571
12572 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
12573 for characters.
12574
12575 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
12576
12577 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
12578 Without this fix, on a 64-bit host (aset S 0 4294967386) would
12579 incorrectly succeed when S was a string, because 4294967386 was
12580 truncated before it was used.
12581
12582 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
12583 Otherwise, an out-of-range integer could cause undefined behavior
12584 on a 64-bit host.
12585
12586 * composite.c: Use int, not EMACS_INT, for characters.
12587 (fill_gstring_body, composition_compute_stop_pos): Use int, not
12588 EMACS_INT, for values that are known to be in character range.
12589 This doesn't fix any bugs but is the usual style inside Emacs and
12590 may generate better code on 32-bit machines.
12591
12592 Make sure a 64-bit char is never passed to ENCODE_CHAR.
12593 This is for reasons similar to the recent CHAR_STRING fix.
12594 * charset.c (Fencode_char): Check that character arg is actually
12595 a character. Pass an int to ENCODE_CHAR.
12596 * charset.h (ENCODE_CHAR): Verify that the character argument is no
12597 wider than 'int', as a compile-time check to prevent future regressions
12598 in this area.
12599
12600 * character.c (char_string): Remove unnecessary casts.
12601
12602 Make sure a 64-bit char is never passed to CHAR_STRING.
12603 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
12604 by silently ignoring the top 32 bits, allowing some values
12605 that were far too large to be valid characters.
12606 * character.h: Include <verify.h>.
12607 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
12608 arguments are no wider than unsigned, as a compile-time check
12609 to prevent future regressions in this area.
12610 * data.c (Faset):
12611 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
12612 (Fsubst_char_in_region):
12613 * fns.c (concat):
12614 * xdisp.c (decode_mode_spec_coding):
12615 Adjust to CHAR_STRING's new requirement.
12616 * editfns.c (Finsert_char, Fsubst_char_in_region):
12617 * fns.c (concat): Check that character args are actually
12618 characters. Without this test, these functions did the wrong
12619 thing with wildly out-of-range values on 64-bit hosts.
12620
12621 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
12622 These casts should not be needed on 32-bit hosts, either.
12623 * keyboard.c (read_char):
12624 * lread.c (Fload): Remove casts to unsigned.
12625
12626 * lisp.h (UNSIGNED_CMP): New macro.
12627 This fixes comparison bugs on 64-bit hosts.
12628 (ASCII_CHAR_P): Use it.
12629 * casefiddle.c (casify_object):
12630 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
12631 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
12632 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
12633 * dispextern.h (FACE_FROM_ID):
12634 * keyboard.c (read_char): Use UNSIGNED_CMP.
12635
12636 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
12637 not to EMACS_INT, to avoid GCC warning.
12638
12639 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
12640
12641 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
12642 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
12643 isn't needed on 32-bit machines.
12644
12645 * buffer.c (Fgenerate_new_buffer_name):
12646 Use EMACS_INT for count, not int.
12647 (advance_to_char_boundary): Return EMACS_INT, not int.
12648
12649 * data.c (Qcompiled_function): Now static.
12650
12651 * window.c (window_body_lines): Now static.
12652
12653 * image.c (gif_load): Rename local to avoid shadowing.
12654
12655 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
12656 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
12657 * alloc.c (make_save_value): Integer argument is now of type
12658 ptrdiff_t, not int.
12659 (mark_object): Use ptrdiff_t, not int.
12660 * lisp.h (pD): New macro.
12661 * print.c (print_object): Use it.
12662
12663 * alloc.c: Use EMACS_INT, not int, to count objects.
12664 (total_conses, total_markers, total_symbols, total_vector_size)
12665 (total_free_conses, total_free_markers, total_free_symbols)
12666 (total_free_floats, total_floats, total_free_intervals)
12667 (total_intervals, total_strings, total_free_strings):
12668 Now EMACS_INT, not int. All uses changed.
12669 (Fgarbage_collect): Compute overall total using a double, so that
12670 integer overflow is less likely to be a problem. Check for overflow
12671 when converting back to an integer.
12672 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
12673 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
12674 These were 'int' variables that could overflow on 64-bit hosts;
12675 they were never used, so remove them instead of repairing them.
12676 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
12677 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
12678 Previously, this ceilinged at INT_MAX, but that doesn't work on
12679 64-bit machines.
12680 (allocate_pseudovector): Don't use EMACS_INT when int would do.
12681
12682 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
12683 (allocate_vectorlike): Check for ptrdiff_t overflow.
12684 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
12685 when a (possibly-narrower) signed value would do just as well.
12686 We prefer using signed arithmetic, to avoid comparison confusion.
12687
12688 * alloc.c: Catch some string size overflows that we were missing.
12689 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
12690 for convenience in STRING_BYTES_MAX.
12691 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
12692 The definition here is exact; the one in lisp.h was approximate.
12693 (allocate_string_data): Check for string overflow. This catches
12694 some instances we weren't catching before. Also, it catches
12695 size_t overflow on (unusual) hosts where SIZE_MAX <= min
12696 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
12697 and ptrdiff_t and EMACS_INT are both 64 bits.
12698
12699 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
12700 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
12701 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
12702
12703 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
12704
12705 * alloc.c (Fmake_string): Check for out-of-range init.
12706
12707 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12708
12709 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
12710
12711 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
12712
12713 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
12714 xg_get_default_scrollbar_width.
12715
12716 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
12717 (int_gtk_range_get_value): Move to the scroll bar part of the file.
12718 (style_changed_cb): Call update_theme_scrollbar_width and call
12719 x_set_scroll_bar_default_width and xg_frame_set_char_size for
12720 all frames (Bug#8505).
12721 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
12722 Call gtk_window_set_resizable if HAVE_GTK3.
12723 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
12724 and height if HAVE_GTK3 (Bug#8505).
12725 (scroll_bar_width_for_theme): New variable.
12726 (update_theme_scrollbar_width): New function.
12727 (xg_get_default_scrollbar_width): Move code to
12728 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
12729 (xg_initialize): Call update_theme_scrollbar_width.
12730
12731 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
12732
12733 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
12734
12735 2011-06-12 Martin Rudalics <rudalics@gmx.at>
12736
12737 * frame.c (make_frame): Call other_buffer_safely instead of
12738 other_buffer.
12739
12740 * window.c (temp_output_buffer_show): Call display_buffer with
12741 second argument Vtemp_buffer_show_specifiers and reset latter
12742 immediately after the call.
12743 (Vtemp_buffer_show_specifiers): New variable.
12744 (auto_window_vscroll_p, next_screen_context_lines)
12745 (Vscroll_preserve_screen_position): Remove leading asterisks from
12746 doc-strings.
12747
12748 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
12749
12750 Fix minor problems found by GCC 4.6.0 static checking.
12751 * buffer.c (Qclone_number): Remove for now, as it's unused.
12752 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
12753 (record_buffer): Remove unused local.
12754 * frame.c (other_visible_frames, frame_buffer_list): Now static.
12755 (set_frame_buffer_list): Remove; unused.
12756 * frame.h (other_visible_frames): Remove decl.
12757 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
12758 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
12759 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
12760 if HAVE_GPM.
12761 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
12762 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
12763 Define only if HAVE_GPM.
12764 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
12765 (update_hints_inhibit): Remove; never set. All uses removed.
12766 * widgetprv.h (emacsFrameClassRec): Remove decl.
12767 * window.c (delete_deletable_window): Now returns void, since it
12768 wasn't returning anything.
12769 (compare_window_configurations): Remove unused locals.
12770 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
12771 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
12772 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
12773 the same widths as pointers. This follows up on the 2011-05-06 patch.
12774 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
12775 * xterm.h: Likewise.
12776 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
12777
12778 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
12779
12780 * makefile.w32-in: Update dependencies.
12781 (LISP_H): Add lib/intprops.h.
12782
12783 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
12784
12785 * image.c (gif_load): Add animation frame delay to the metadata.
12786 (syms_of_image): Use DEFSYM. New symbol `delay'.
12787
12788 2011-06-11 Martin Rudalics <rudalics@gmx.at>
12789
12790 * window.c (delete_deletable_window): Re-add.
12791 (Fset_window_configuration): Rewrite to handle dead buffers and
12792 consequently deletable windows.
12793 (window_tree, Fwindow_tree): Remove. Supply functionality in
12794 window.el.
12795 (compare_window_configurations): Simplify code.
12796
12797 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
12798
12799 * image.c (imagemagick_load_image): Fix type mismatch.
12800 (Fimagemagick_types): Likewise.
12801
12802 * window.h (replace_buffer_in_windows): Declare.
12803
12804 2011-06-11 Martin Rudalics <rudalics@gmx.at>
12805
12806 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
12807 Qclone_number. Remove external declaration of Qdelete_window.
12808 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
12809 code.
12810 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
12811 Run Qbuffer_list_update_hook if allowed.
12812 (Fother_buffer): Rewrite doc-string. Major rewrite for new
12813 buffer list implementation.
12814 (other_buffer_safely): New function.
12815 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
12816 calls to replace_buffer_in_windows and
12817 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
12818 if allowed.
12819 (record_buffer): Inhibit quitting and rewrite using quittable
12820 functions. Run Qbuffer_list_update_hook if allowed.
12821 (Frecord_buffer, Funrecord_buffer): New functions.
12822 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
12823 Move switch-to-buffer to window.el.
12824 (bury-buffer): Move to window.el.
12825 (Vbuffer_list_update_hook): New variable.
12826
12827 * lisp.h (other_buffer_safely): Add prototype in buffer.c
12828 section.
12829
12830 * window.h (resize_frame_windows): Move up in code.
12831 (Fwindow_frame): Remove EXFUN.
12832 (replace_buffer_in_all_windows): Remove prototype.
12833 (replace_buffer_in_windows_safely): Add prototype.
12834
12835 * window.c: Declare Qdelete_window static again. Move down
12836 declaration of select_count.
12837 (Fnext_window, Fprevious_window): Rewrite doc-strings.
12838 (Fother_window): Move to window.el.
12839 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
12840 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
12841 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
12842 window.el.
12843 (replace_buffer_in_windows): Implement by calling
12844 Qreplace_buffer_in_windows.
12845 (replace_buffer_in_all_windows): Remove with some functionality
12846 moved into replace_buffer_in_windows_safely.
12847 (replace_buffer_in_windows_safely): New function.
12848 (select_window_norecord, select_frame_norecord): Move in front
12849 of run_window_configuration_change_hook. Remove now obsolete
12850 declarations.
12851 (Fset_window_buffer): Rewrite doc-string.
12852 Call Qrecord_window_buffer.
12853 (keys_of_window): Move binding for other-window to window.el.
12854
12855 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
12856
12857 * dispextern.h (struct image): Replace data member, whose int_val
12858 and ptr_val fields were not used by anything, with a single
12859 lisp_val object.
12860
12861 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
12862 (gif_clear_image, gif_load, imagemagick_load_image)
12863 (gs_clear_image, gs_load): Callers changed.
12864
12865 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
12866
12867 * buffer.h: Include <time.h>, for time_t.
12868 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
12869
12870 Fix minor problems found by static checking.
12871
12872 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
12873
12874 Make identifiers static if they are not used in other modules.
12875 * data.c (Qcompiled_function, Qframe, Qvector):
12876 * image.c (QimageMagick, Qsvg):
12877 * minibuf.c (Qmetadata):
12878 * window.c (resize_window_check, resize_root_window): Now static.
12879 * window.h (resize_window_check, resize_root_window): Remove decls.
12880
12881 * window.c (window_deletion_count, delete_deletable_window):
12882 Remove; unused.
12883 (window_body_lines): Now static.
12884 (Fdelete_other_windows_internal): Mark vars as initialized.
12885 Make sure 'resize_failed' is initialized.
12886 (run_window_configuration_change_hook): Rename local to avoid shadowing.
12887 (resize_window_apply): Remove unused local.
12888 * window.h (delete_deletable_window): Remove decl.
12889
12890 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
12891 (imagemagick_load_image): Fix pointer signedness problem by changing
12892 last arg from unsigned char * to char *. All uses changed.
12893 Also, fix a local for similar reasons.
12894 Remove unused locals. Remove locals to avoid shadowing.
12895 (fn_rsvg_handle_free): Remove; unused.
12896 (svg_load, svg_load_image): Fix pointer signedness problem.
12897 (imagemagick_load_image): Don't use garbage pointer image_wand.
12898
12899 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
12900
12901 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
12902
12903 * image.c (gif_load): Fix omitted cast error introduced by
12904 2011-06-06 change.
12905
12906 2011-06-10 Martin Rudalics <rudalics@gmx.at>
12907
12908 * window.h (resize_proportionally, orig_total_lines)
12909 (orig_top_line): Remove from window structure.
12910 (set_window_height, set_window_width, change_window_heights)
12911 (Fdelete_window): Remove prototypes.
12912 (resize_frame_windows): Remove duplicate declaration.
12913
12914 2011-06-10 Eli Zaretskii <eliz@gnu.org>
12915
12916 * window.h (resize_frame_windows, resize_window_check)
12917 (delete_deletable_window, resize_root_window)
12918 (resize_frame_windows): Declare prototypes.
12919
12920 * window.c (resize_window_apply): Make definition be "static" to
12921 match the prototype.
12922
12923 2011-06-10 Martin Rudalics <rudalics@gmx.at>
12924
12925 * window.c: Remove declarations of Qwindow_size_fixed,
12926 window_min_size_1, window_min_size_2, window_min_size,
12927 size_window, window_fixed_size_p, enlarge_window, delete_window.
12928 Remove static from declaration of Qdelete_window, it's
12929 temporarily needed by Fbury_buffer.
12930 (replace_window): Don't assign orig_top_line and
12931 orig_total_lines.
12932 (Fdelete_window, delete_window): Remove. Window deletion is
12933 handled by window.el.
12934 (window_loop): Remove DELETE_OTHER_WINDOWS case.
12935 Replace Fdelete_window calls with calls to Qdelete_window.
12936 (Fdelete_other_windows): Remove. Deleting other windows is
12937 handled by window.el.
12938 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
12939 handled in window.el.
12940 (window_min_size_2, window_min_size_1, window_min_size): Remove.
12941 Window minimum sizes are handled in window.el.
12942 (shrink_windows, size_window, set_window_height)
12943 (set_window_width, change_window_heights, window_height)
12944 (window_width, CURBEG, CURSIZE, enlarge_window)
12945 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
12946 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
12947 handled in window.el.
12948 (make_dummy_parent): Rename to make_parent_window and give it a
12949 second argument horflag.
12950 (make_window): Don't set resize_proportionally any more.
12951 (Fsplit_window): Remove. Windows are split in window.el.
12952 (save_restore_action, save_restore_orig_size)
12953 (shrink_window_lowest_first, save_restore_orig_size): Remove.
12954 Resize mini windows in window.el.
12955 (grow_mini_window, shrink_mini_window): Implement by calling
12956 Qresize_root_window_vertically, resize_window_check and
12957 resize_window_apply.
12958 (saved_window, Fset_window_configuration, save_window_save):
12959 Do not handle orig_top_line, orig_total_lines, and
12960 resize_proportionally.
12961 (window_min_height, window_min_width): Move to window.el.
12962 (keys_of_window): Move bindings for delete-other-windows,
12963 split-window, delete-window and enlarge-window to window.el.
12964
12965 * buffer.c: Temporarily extern Qdelete_window.
12966 (Fbury_buffer): Temporarily call Qdelete_window instead of
12967 Fdelete_window (Fbury_buffer will move to window.el soon).
12968
12969 * frame.c (set_menu_bar_lines_1): Remove code handling
12970 orig_top_line and orig_total_lines.
12971
12972 * dispnew.c (adjust_frame_glyphs_initially): Don't use
12973 set_window_height but set heights directly.
12974 (change_frame_size_1): Use resize_frame_windows.
12975
12976 * xdisp.c (init_xdisp): Don't use set_window_height but set
12977 heights directly.
12978
12979 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
12980 Use resize_frame_windows instead of change_window_heights and run
12981 run_window_configuration_change_hook.
12982
12983 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
12984 instead of change_window_heights and run
12985 run_window_configuration_change_hook.
12986
12987 2011-06-09 Martin Rudalics <rudalics@gmx.at>
12988
12989 * window.c (replace_window): Rename second argument REPLACEMENT to
12990 NEW. New third argument SETFLAG. Rewrite.
12991 (delete_window, make_dummy_parent): Call replace_window with
12992 third argument 1.
12993 (window_list_1): Move down in code.
12994 (run_window_configuration_change_hook): Move set_buffer part
12995 before select_frame_norecord part in order to unwind correctly.
12996 Rename count1 to count.
12997 (recombine_windows, delete_deletable_window, resize_root_window)
12998 (Fdelete_other_windows_internal)
12999 (Frun_window_configuration_change_hook, make_parent_window)
13000 (resize_window_check, resize_window_apply, Fresize_window_apply)
13001 (resize_frame_windows, Fsplit_window_internal)
13002 (Fdelete_window_internal, Fresize_mini_window_internal):
13003 New functions.
13004 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
13005
13006 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13007
13008 * window.h (window): Add some new members to window structure -
13009 normal_lines, normal_cols, new_total, new_normal, clone_number,
13010 splits, nest, prev_buffers, next_buffers.
13011 (WINDOW_TOTAL_SIZE): Move here from window.c.
13012 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
13013
13014 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
13015 Remove.
13016 (make_dummy_parent): Set new members of windows structure.
13017 (make_window): Move down in code. Handle new members of window
13018 structure.
13019 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
13020 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
13021 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
13022 (Fset_window_prev_buffers, Fwindow_next_buffers)
13023 (Fset_window_next_buffers, Fset_window_clone_number):
13024 New functions.
13025 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
13026 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
13027 Doc-string fixes.
13028 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
13029 Argument WINDOW can be now internal window too.
13030 (Fwindow_use_time): Move up in code.
13031 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
13032 Rewrite doc-string.
13033 (Fset_window_configuration, saved_window)
13034 (Fcurrent_window_configuration, save_window_save): Handle new
13035 members of window structure.
13036 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
13037 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
13038 (syms_of_window): New Lisp objects Qrecord_window_buffer,
13039 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
13040 Qget_mru_window, Qresize_root_window,
13041 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
13042 Qauto_buffer_name; staticpro them.
13043
13044 2011-06-07 Martin Rudalics <rudalics@gmx.at>
13045
13046 * window.c (Fwindow_total_size, Fwindow_left_column)
13047 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
13048 (Fwindow_list_1): New functions.
13049 (window_box_text_cols): Replace with window_body_cols.
13050 (Fwindow_width, Fscroll_left, Fscroll_right):
13051 Use window_body_cols instead of window_box_text_cols.
13052 (delete_window, Fset_window_configuration):
13053 Call delete_all_subwindows with window as argument.
13054 (delete_all_subwindows): Take a window as argument and not a
13055 structure. Rewrite.
13056 (window_loop): Remove handling of GET_LRU_WINDOW and
13057 GET_LARGEST_WINDOW.
13058 (Fget_lru_window, Fget_largest_window): Move to window.el.
13059
13060 * window.h: Extern window_body_cols instead of
13061 window_box_text_cols. delete_all_subwindows now takes a
13062 Lisp_Object as argument.
13063
13064 * indent.c (compute_motion, Fcompute_motion):
13065 Use window_body_cols instead of window_box_text_cols.
13066
13067 * frame.c (delete_frame): Call delete_all_subwindows with root
13068 window as argument.
13069
13070 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
13071
13072 * fns.c (Fputhash): Document return value.
13073
13074 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
13075
13076 * image.c (gif_load): Implement gif89a spec "no disposal" method.
13077
13078 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
13079
13080 Cons<->int and similar integer overflow fixes (Bug#8794).
13081
13082 Check for overflow when converting integer to cons and back.
13083 * charset.c (Fdefine_charset_internal, Fdecode_char):
13084 Use cons_to_unsigned to catch overflow.
13085 (Fencode_char): Use INTEGER_TO_CONS.
13086 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
13087 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
13088 * data.c (long_to_cons, cons_to_long): Remove.
13089 (cons_to_unsigned, cons_to_signed): New functions.
13090 These signal an error for invalid or out-of-range values.
13091 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
13092 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
13093 * font.c (Ffont_variation_glyphs):
13094 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
13095 * lisp.h: Include <intprops.h>.
13096 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
13097 (cons_to_signed, cons_to_unsigned): New decls.
13098 (long_to_cons, cons_to_long): Remove decls.
13099 * undo.c (record_first_change): Use INTEGER_TO_CONS.
13100 (Fprimitive_undo): Use CONS_TO_INTEGER.
13101 * xfns.c (Fx_window_property): Likewise.
13102 * xselect.c: Include <limits.h>.
13103 (x_own_selection, selection_data_to_lisp_data):
13104 Use INTEGER_TO_CONS.
13105 (x_handle_selection_request, x_handle_selection_clear)
13106 (x_get_foreign_selection, Fx_disown_selection_internal)
13107 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
13108 (lisp_data_to_selection_data): Use cons_to_unsigned.
13109 (x_fill_property_data): Use cons_to_signed.
13110 Report values out of range.
13111
13112 Check for buffer and string overflow more precisely.
13113 * buffer.h (BUF_BYTES_MAX): New macro.
13114 * lisp.h (STRING_BYTES_MAX): New macro.
13115 * alloc.c (Fmake_string):
13116 * character.c (string_escape_byte8):
13117 * coding.c (coding_alloc_by_realloc):
13118 * doprnt.c (doprnt):
13119 * editfns.c (Fformat):
13120 * eval.c (verror):
13121 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
13122 since they may not be the same number.
13123 * editfns.c (Finsert_char):
13124 * fileio.c (Finsert_file_contents):
13125 Likewise for BUF_BYTES_MAX.
13126
13127 * image.c: Use ptrdiff_t, not int, for sizes.
13128 (slurp_file): Switch from int to ptrdiff_t.
13129 All uses changed.
13130 (slurp_file): Check that file size fits in both size_t (for
13131 malloc) and ptrdiff_t (for sanity and safety).
13132
13133 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
13134 if b->modtime has its maximal value.
13135
13136 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
13137
13138 Don't assume time_t can fit into int.
13139 * buffer.h (struct buffer.modtime): Now time_t, not int.
13140 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
13141 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
13142
13143 Minor fixes for signed vs unsigned integers.
13144 * character.h (MAYBE_UNIFY_CHAR):
13145 * charset.c (maybe_unify_char):
13146 * keyboard.c (read_char, reorder_modifiers):
13147 XINT -> XFASTINT, since the integer must be nonnegative.
13148 * ftfont.c (ftfont_spec_pattern):
13149 * keymap.c (access_keymap, silly_event_symbol_error):
13150 XUINT -> XFASTINT, since the integer must be nonnegative.
13151 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
13152 since it makes no difference and we prefer signed.
13153 * keyboard.c (record_char): Use XUINT when all the neighbors do.
13154 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
13155 nonnegative.
13156
13157 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
13158
13159 * window.h (Fwindow_frame): Declare.
13160
13161 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
13162
13163 * alloc.c: Simplify handling of large-request failures (Bug#8800).
13164 (SPARE_MEMORY): Always define.
13165 (LARGE_REQUEST): Remove.
13166 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
13167
13168 2011-06-06 Martin Rudalics <rudalics@gmx.at>
13169
13170 * lisp.h: Move EXFUNS for Fframe_root_window,
13171 Fframe_first_window and Fset_frame_selected_window to window.h.
13172
13173 * window.h: Move EXFUNS for Fframe_root_window,
13174 Fframe_first_window and Fset_frame_selected_window here from
13175 lisp.h.
13176
13177 * frame.c (Fwindow_frame, Fframe_first_window)
13178 (Fframe_root_window, Fframe_selected_window)
13179 (Fset_frame_selected_window): Move to window.c.
13180 (Factive_minibuffer_window): Move to minibuf.c.
13181 (Fother_visible_frames_p): New function.
13182
13183 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
13184
13185 * window.c (decode_window, decode_any_window): Move up in code.
13186 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
13187 (inhibit_frame_unsplittable): Remove unused variable.
13188 (Fwindow_buffer): Move up and rewrite doc-string.
13189 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
13190 (Fwindow_prev): New functions.
13191 (Fwindow_frame): Move here from frame.c. Accept any window as
13192 argument.
13193 (Fframe_root_window, Fframe_first_window)
13194 (Fframe_selected_window): Move here from frame.c. Accept frame
13195 or arbitrary window as argument. Update doc-strings.
13196 (Fminibuffer_window): Move up in code.
13197 (Fwindow_minibuffer_p): Move up in code and simplify.
13198 (Fset_frame_selected_window): Move here from frame.c.
13199 Marginal rewrite.
13200 (Fselected_window, select_window, Fselect_window): Move up in
13201 code. Minor doc-string fixes.
13202
13203 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
13204
13205 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
13206 Do not assume that spare memory exists; that assumption is valid
13207 only if SYSTEM_MALLOC.
13208 (LARGE_REQUEST): New macro, so that the issue of large requests
13209 is separated from the issue of spare memory.
13210
13211 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
13212
13213 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
13214 format. (Bug#8806)
13215
13216 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
13217
13218 * xfns.c (x_set_scroll_bar_default_width): Move declarations
13219 before statements.
13220
13221 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
13222
13223 * gtkutil.c (xg_get_default_scrollbar_width): New function.
13224
13225 * gtkutil.h: Declare xg_get_default_scrollbar_width.
13226
13227 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
13228 min width by calling x_set_scroll_bar_default_width (Bug#8505).
13229
13230 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
13231
13232 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
13233
13234 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
13235
13236 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
13237 (x_clipboard_manager_save): Add return value.
13238 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
13239 New error handlers.
13240 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
13241 Obey Vx_select_enable_clipboard_manager. Catch errors in
13242 x_clipboard_manager_save (Bug#8779).
13243 (Vx_select_enable_clipboard_manager): New variable.
13244 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
13245
13246 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
13247
13248 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
13249
13250 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13251
13252 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
13253 in the current matrix if keep_current_p is non-zero.
13254
13255 2011-06-04 Eli Zaretskii <eliz@gnu.org>
13256
13257 * bidi.c (bidi_level_of_next_char): Fix last change.
13258
13259 2011-06-03 Eli Zaretskii <eliz@gnu.org>
13260
13261 Support bidi reordering of text covered by display properties.
13262
13263 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
13264 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
13265 (bidi_cache_search, bidi_cache_iterator_state)
13266 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
13267 (bidi_level_of_next_char, bidi_move_to_visually_next):
13268 Support character positions inside a run of characters covered by a
13269 display string.
13270 (bidi_paragraph_init, bidi_resolve_explicit_1)
13271 (bidi_level_of_next_char): Call bidi_fetch_char and
13272 bidi_fetch_char_advance instead of FETCH_CHAR and
13273 FETCH_CHAR_ADVANCE.
13274 (bidi_init_it): Initialize new members.
13275 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
13276 definitions.
13277 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
13278 instead of using explicit *_CHAR codes.
13279 (bidi_resolve_explicit, bidi_resolve_weak):
13280 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
13281 bidirectional text is supported only in multibyte buffers.
13282 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
13283 it to initialize the frame_window_p member of struct bidi_it.
13284 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
13285 (bidi_resolve_explicit, bidi_resolve_weak)
13286 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
13287 bidi_it->nchars is non-positive.
13288 (bidi_level_of_next_char): Don't try to lookup the cache for the
13289 next/previous character if nothing is cached there yet, or if we
13290 were just reseat()'ed to a new position.
13291
13292 * xdisp.c (set_cursor_from_row): Set start and stop points
13293 according to the row's direction when priming the loop that looks
13294 for the glyph on which to display cursor.
13295 (single_display_spec_intangible_p): Function deleted.
13296 (display_prop_intangible_p): Reimplement to call
13297 handle_display_spec instead of single_display_spec_intangible_p.
13298 Accept 3 additional arguments needed by handle_display_spec.
13299 This fixes incorrect cursor motion across display property with complex
13300 values: lists, `(when COND...)' forms, etc.
13301 (single_display_spec_string_p): Support property values that are
13302 lists with the argument STRING its top-level element.
13303 (display_prop_string_p): Fix the condition for processing a
13304 property that is a list to be consistent with handle_display_spec.
13305 (handle_display_spec): New function, refactored from the
13306 last portion of handle_display_prop.
13307 (compute_display_string_pos): Accept additional argument
13308 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
13309 value of a `display' property is a "replacing spec".
13310 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
13311 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
13312 the display property, but just return a value indicating whether
13313 the display property will replace the characters it covers.
13314 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
13315 frame_window_p members of struct bidi_it.
13316 (compute_display_string_pos, compute_display_string_end):
13317 New functions.
13318 (push_it): Accept second argument POSITION, where pop_it should
13319 jump to continue iteration.
13320 (reseat_1): Initialize bidi_it.disp_pos.
13321
13322 * keyboard.c (adjust_point_for_property): Adjust the call to
13323 display_prop_intangible_p to its new signature.
13324
13325 * dispextern.h (struct bidi_it): New member frame_window_p.
13326 (bidi_init_it): Update prototypes.
13327 (display_prop_intangible_p): Update prototype.
13328 (compute_display_string_pos, compute_display_string_end):
13329 Declare prototypes.
13330 (struct bidi_it): New members nchars and disp_pos. ch_len is now
13331 EMACS_INT.
13332
13333 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
13334
13335 Malloc failure behavior now depends on size of allocation.
13336 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
13337 * lisp.h: Change signatures accordingly.
13338 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
13339 All callers changed. (Bug#8762)
13340
13341 * gnutls.c: Use Emacs's memory allocators.
13342 Without this change, the gnutls library would invoke malloc etc.
13343 directly, which causes problems on non-SYNC_INPUT hosts, and which
13344 runs afoul of improving memory_full behavior. (Bug#8761)
13345 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
13346 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
13347 xfree instead of the default malloc, realloc, free.
13348 (Fgnutls_boot): No need to check for memory allocation failure,
13349 since xmalloc does that for us.
13350
13351 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
13352 * category.c (hash_get_category_set):
13353 * ccl.c (ccl_driver):
13354 * charset.c (Fdefine_charset_internal):
13355 * charset.h (struct charset.hash_index):
13356 * composite.c (get_composition_id, gstring_lookup_cache)
13357 (composition_gstring_put_cache):
13358 * composite.h (struct composition.hash_index):
13359 * dispextern.h (struct image.hash):
13360 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
13361 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
13362 (hashfn_equal, hashfn_user_defined, make_hash_table)
13363 (maybe_resize_hash_table, hash_lookup, hash_put)
13364 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
13365 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
13366 (Fsxhash, Fgethash, Fputhash, Fmaphash):
13367 * image.c (make_image, search_image_cache, lookup_image)
13368 (xpm_put_color_table_h):
13369 * lisp.h (struct Lisp_Hash_Table):
13370 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
13371 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
13372 for hashes and hash indexes, instead of 'unsigned' and 'int'.
13373 * alloc.c (allocate_vectorlike):
13374 Check for overflow in vector size calculations.
13375 * ccl.c (ccl_driver):
13376 Check for overflow when converting EMACS_INT to int.
13377 * fns.c, image.c: Remove unnecessary static decls that would otherwise
13378 need to be updated by these changes.
13379 * fns.c (make_hash_table, maybe_resize_hash_table):
13380 Check for integer overflow with large hash tables.
13381 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
13382 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
13383 (SXHASH_REDUCE): New macro.
13384 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
13385 Use it instead of discarding useful hash info with large hash values.
13386 (sxhash_float): New function.
13387 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
13388 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
13389 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
13390 Rewrite to use FIXNUM_BITS, as this simplifies things.
13391 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
13392 Adjust signatures to match updated version of code.
13393 (consing_since_gc): Now EMACS_INT, since a single hash table can
13394 use more than INT_MAX bytes.
13395
13396 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
13397
13398 Make it possible to build with GCC-4.6+ -O2 -flto.
13399
13400 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
13401
13402 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13403
13404 * minibuf.c (get_minibuffer, read_minibuf_unwind):
13405 Call minibuffer-inactive-mode.
13406
13407 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
13408
13409 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
13410 Update dependencies.
13411
13412 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
13413
13414 * data.c (init_data): Remove code for UTS, this system is not
13415 supported anymore.
13416
13417 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
13418
13419 Don't force ./temacs to start in terminal mode.
13420
13421 * frame.c (make_initial_frame): Initialize faces in all cases, not
13422 only when CANNOT_DUMP is defined.
13423 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
13424
13425 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
13426
13427 * dispnew.c (add_window_display_history): Use const for the string
13428 pointer. Remove declaration, not needed.
13429
13430 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
13431
13432 Use 'inline', not 'INLINE'.
13433 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
13434 * alloc.c, fontset.c (INLINE): Remove.
13435 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
13436 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
13437 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
13438 * gmalloc.c (register_heapinfo): Use inline unconditionally.
13439 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
13440
13441 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
13442
13443 Make it possible to run ./temacs.
13444
13445 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
13446 syms_of_callproc does the same thing. Remove test for
13447 "initialized", do it in the caller.
13448 * emacs.c (main): Avoid calling set_initial_environment when dumping.
13449
13450 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13451
13452 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
13453 (read_minibuf): Use get_minibuffer.
13454 (syms_of_minibuf): Use DEFSYM.
13455 (Qmetadata): New var.
13456 * data.c (Qbuffer): Don't make it static.
13457 (syms_of_data): Use DEFSYM.
13458
13459 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
13460
13461 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
13462 (CCL_CODE_MIN): New macro.
13463
13464 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
13465
13466 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
13467
13468 * eval.c (Qdebug): Now static.
13469 * lisp.h (Qdebug): Remove decl. This reverts a part of the
13470 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
13471 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
13472
13473 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13474
13475 * image.c: Various fixes to ImageMagick code comments.
13476 (Fimagemagick_types): Doc fix.
13477
13478 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
13479
13480 Minor fixes prompted by GCC 4.6.0 warnings.
13481
13482 * xselect.c (converted_selections, conversion_fail_tag): Now static.
13483
13484 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
13485 (x_clipboard_manager_save_all): Move extern decl to ...
13486 * xterm.h: ... here, so that it can be checked for consistency.
13487
13488 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13489
13490 * xselect.c (x_clipboard_manager_save_frame)
13491 (x_clipboard_manager_save_all): New functions.
13492 (Fx_clipboard_manager_save): Lisp function deleted.
13493
13494 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
13495 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
13496
13497 * xterm.h: Update prototype.
13498
13499 2011-05-28 William Xu <william.xwl@gmail.com>
13500
13501 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
13502 exiting (Bug#8239).
13503
13504 2011-05-28 Jim Meyering <meyering@redhat.com>
13505
13506 Avoid a sign-extension bug in crypto_hash_function.
13507 * fns.c (to_uchar): Define.
13508 (crypto_hash_function): Use it to convert some newly-signed
13509 variables to unsigned, to avoid sign-extension bugs. For example,
13510 without this change, (md5 "truc") would evaluate to
13511 45723a2aff78ff4fff7fff1114760e62 rather than the expected
13512 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
13513 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
13514
13515 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
13516
13517 Integer overflow fixes.
13518
13519 * dbusbind.c: Serial number integer overflow fixes.
13520 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
13521 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
13522 to hold a serial number that is too large for a fixnum.
13523 (Fdbus_method_return_internal, Fdbus_method_error_internal):
13524 Check for serial numbers out of range. Decode any serial number
13525 that was so large that it became a float. (Bug#8722)
13526
13527 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
13528 (Fdbus_call_method, Fdbus_call_method_asynchronously):
13529 Use XFASTINT rather than XUINT when numbers are nonnegative.
13530 (xd_append_arg, Fdbus_method_return_internal):
13531 (Fdbus_method_error_internal): Likewise. Also, for unsigned
13532 arguments, check that Lisp number is nonnegative, rather than
13533 silently wrapping negative numbers around. (Bug#8722)
13534 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
13535 (Bug#8722)
13536
13537 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
13538
13539 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
13540
13541 ccl: Add integer overflow checks.
13542 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
13543 (IN_INT_RANGE): New macros.
13544 (ccl_driver): Use them to check for integer overflow when
13545 decoding a CCL program. Many of the new checks are whether XINT (x)
13546 fits in int; it doesn't always, on 64-bit hosts. The new version
13547 doesn't catch all possible integer overflows, but it's an
13548 improvement. (Bug#8719)
13549
13550 * alloc.c (make_event_array): Use XINT, not XUINT.
13551 There's no need for unsigned here.
13552
13553 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
13554 This follows up to the 2011-05-06 change that substituted uintptr_t
13555 for EMACS_INT. This case wasn't caught back then.
13556
13557 Rework Fformat to avoid integer overflow issues.
13558 * editfns.c: Include <float.h> unconditionally, as it's everywhere
13559 now (part of C89). Include <verify.h>.
13560 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
13561 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
13562 (Fformat): Avoid the prepass trying to compute sizes; it was only
13563 approximate and thus did not catch overflow reliably. Instead, walk
13564 through the format just once, formatting and computing sizes as we go,
13565 checking for integer overflow at every step, and allocating a larger
13566 buffer as needed. Keep track separately whether the format is
13567 multibyte. Keep only the most-recently calculated precision, rather
13568 than them all. Record whether each argument has been converted to
13569 string. Use EMACS_INT, not int, for byte and char and arg counts.
13570 Support field widths and precisions larger than INT_MAX. Avoid
13571 sprintf's undefined behavior with conversion specifications such as %#d
13572 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
13573 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
13574 formatting out-of-range floating point numbers with int
13575 formats. (Bug#8668)
13576
13577 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
13578
13579 * data.c: Avoid integer truncation in expressions involving floats.
13580 * data.c: Include <intprops.h>.
13581 (arith_driver): When there's an integer overflow in an expression
13582 involving floating point, convert the integers to floating point
13583 so that the resulting value does not suffer from catastrophic
13584 integer truncation. For example, on a 64-bit host (* 4
13585 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
13586 Do not rely on undefined behavior after integer overflow.
13587
13588 merge count_size_as_multibyte, parse_str_to_multibyte
13589 * character.c, character.h (count_size_as_multibyte):
13590 Rename from parse_str_to_multibyte; all uses changed.
13591 Check for integer overflow.
13592 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
13593 since it's now a duplicate of the other. This is more of
13594 a character than a buffer op, so better that it's in character.c.
13595 * fns.c, print.c: Adjust to above changes.
13596
13597 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13598
13599 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
13600
13601 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
13602
13603 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
13604 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
13605 (x_clipboard_manager_save): Now static.
13606 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
13607
13608 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
13609 (crypto_hash_function): Now static.
13610 Fix pointer signedness problems. Avoid unnecessary initializations.
13611
13612 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
13613
13614 * termhooks.h (Vselection_alist): Make it terminal-local.
13615
13616 * terminal.c (create_terminal): Initialize it.
13617
13618 * xselect.c: Support for clipboard managers.
13619 (Vselection_alist): Move to termhooks.h as terminal-local var.
13620 (LOCAL_SELECTION): New macro.
13621 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
13622 (symbol_to_x_atom): Remove gratuitous arg.
13623 (x_handle_selection_request, lisp_data_to_selection_data)
13624 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
13625 (x_own_selection, x_get_local_selection, x_convert_selection):
13626 New arg, specifying work frame. Use terminal-local Vselection_alist.
13627 (some_frame_on_display): Delete unused function.
13628 (Fx_own_selection_internal, Fx_get_selection_internal)
13629 (Fx_disown_selection_internal, Fx_selection_owner_p)
13630 (Fx_selection_exists_p): New optional frame arg.
13631 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
13632 (x_handle_selection_clear): Don't treat other terminals with the
13633 same keyboard specially. Use the terminal-local Vselection_alist.
13634 (x_clear_frame_selections): Use Frun_hook_with_args.
13635
13636 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
13637
13638 * xterm.h: Add support for those atoms.
13639
13640 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
13641
13642 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
13643 (converted_selections, conversion_fail_tag): New global variables.
13644 (x_selection_request_lisp_error): Free the above.
13645 (x_get_local_selection): Remove unnecessary code.
13646 (x_reply_selection_request): Args changed; handle arbitrary array
13647 of converted selections stored in converted_selections.
13648 Separate the XChangeProperty and SelectionNotify steps.
13649 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
13650 (x_convert_selection): New function.
13651 (x_handle_selection_event): Simplify.
13652 (x_get_foreign_selection): Don't ignore incoming requests while
13653 waiting for an answer; this will fail when we implement
13654 SAVE_TARGETS, and seems unnecessary anyway.
13655 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
13656 (Vx_sent_selection_functions): Doc fix.
13657
13658 2011-05-26 Leo Liu <sdl.web@gmail.com>
13659
13660 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
13661
13662 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13663
13664 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
13665
13666 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
13667 for fringe update if it has periodic bitmap.
13668 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
13669 and fringe_bitmap_periodic_p.
13670
13671 * fringe.c (get_fringe_bitmap_data): New function.
13672 (draw_fringe_bitmap_1, update_window_fringes): Use it.
13673 (update_window_fringes): Record periodicity of fringe bitmap in glyph
13674 row. Mark glyph row for fringe update if periodicity changed.
13675
13676 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
13677 for fringe update unless it has periodic bitmap.
13678
13679 2011-05-25 Kenichi Handa <handa@m17n.org>
13680
13681 * xdisp.c (get_next_display_element): Set correct it->face_id for
13682 a static composition.
13683
13684 2011-05-24 Leo Liu <sdl.web@gmail.com>
13685
13686 * deps.mk (fns.o):
13687 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
13688
13689 * fns.c (crypto_hash_function, Fsha1): New function.
13690 (Fmd5): Use crypto_hash_function.
13691 (syms_of_fns): Add Ssha1.
13692
13693 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
13694
13695 * gnutls.c: Remove unused macros.
13696 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
13697 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
13698 Remove macros that are defined and never used.
13699 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
13700
13701 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
13702
13703 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
13704 (Fx_get_selection_internal): Minor cleanup.
13705 (Fx_own_selection_internal): Rename arguments for consistency with
13706 select.el.
13707
13708 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
13709
13710 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
13711
13712 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
13713
13714 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
13715
13716 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13717
13718 * dispnew.c (scrolling_window): Don't exclude the case that the
13719 last enabled row in the desired matrix touches the bottom boundary.
13720
13721 2011-05-21 Glenn Morris <rgm@gnu.org>
13722
13723 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
13724 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
13725 and add some more files.
13726
13727 2011-05-20 Eli Zaretskii <eliz@gnu.org>
13728
13729 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
13730 report_file_error introduced by the change from 2011-05-07.
13731
13732 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
13733
13734 * systime.h (Time): Define only if emacs is defined.
13735 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
13736 where the include path doesn't have X11/X.h by default. See
13737 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
13738
13739 2011-05-20 Kenichi Handa <handa@m17n.org>
13740
13741 * composite.c (find_automatic_composition): Fix previous change.
13742
13743 2011-05-20 Glenn Morris <rgm@gnu.org>
13744
13745 * lisp.mk: New file, split from Makefile.in.
13746 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
13747 (shortlisp): Remove.
13748 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
13749
13750 2011-05-19 Glenn Morris <rgm@gnu.org>
13751
13752 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
13753 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
13754 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
13755 (lisp): Set the order to that of loadup.el.
13756 (shortlisp): Make it a copy of $lisp.
13757 (SOME_MACHINE_LISP): Remove.
13758 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
13759 Use just $shortlisp, not $SOME_MACHINE_LISP too.
13760
13761 2011-05-18 Kenichi Handa <handa@m17n.org>
13762
13763 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
13764 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
13765 (find_automatic_composition): Mostly rewrite for efficiency.
13766
13767 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
13768
13769 * makefile.w32-in: Update dependencies.
13770
13771 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
13772
13773 * menu.c: Include limits.h (fixes the MS-Windows build broken by
13774 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
13775
13776 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
13777
13778 Fix some integer overflow issues, such as string length overflow.
13779
13780 * insdel.c (count_size_as_multibyte): Check for string overflow.
13781
13782 * character.c (lisp_string_width): Check for string overflow.
13783 Use EMACS_INT, not int, for string indexes and lengths; in
13784 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
13785 the resulting string length overflows an EMACS_INT; instead,
13786 report a string overflow if no precision given. When checking for
13787 precision exhaustion, use a check that cannot possibly have
13788 integer overflow. (Bug#8675)
13789 * character.h (lisp_string_width): Adjust to new signature.
13790
13791 * alloc.c (string_overflow): New function.
13792 (Fmake_string): Use it. This doesn't change behavior, but saves
13793 a few bytes and will simplify future changes.
13794 * character.c (string_escape_byte8): Likewise.
13795 * lisp.h (string_overflow): New decl.
13796
13797 Fixups, following up to the user-interface timestamp change.
13798 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
13799 for UI timestamps, instead of unsigned long.
13800 * msdos.c (mouse_get_pos): Likewise.
13801 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
13802 * w32gui.h (Time): Define by including "systime.h" rather than by
13803 declaring it ourselves. (Bug#8664)
13804
13805 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
13806 * image.c (clear_image_cache): Likewise.
13807
13808 * term.c (term_mouse_position): Don't assume time_t wraparound.
13809
13810 Be more systematic about user-interface timestamps.
13811 Before, the code sometimes used 'Time', sometimes 'unsigned long',
13812 and sometimes 'EMACS_UINT', to represent these timestamps.
13813 This change causes it to use 'Time' uniformly, as that's what X uses.
13814 This makes the code easier to follow, and makes it easier to catch
13815 integer overflow bugs such as Bug#8664.
13816 * frame.c (Fmouse_position, Fmouse_pixel_position):
13817 Use Time, not unsigned long, for user-interface timestamps.
13818 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
13819 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
13820 * keyboard.h (last_event_timestamp): Likewise.
13821 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
13822 * menu.h (xmenu_show): Likewise.
13823 * term.c (term_mouse_position): Likewise.
13824 * termhooks.h (struct input_event.timestamp): Likewise.
13825 (struct terminal.mouse_position_hook): Likewise.
13826 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
13827 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
13828 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
13829 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
13830 what it was before.
13831 * menu.h, termhooks.h: Include "systime.h", for Time.
13832
13833 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
13834 Don't assume that the difference between two unsigned long values
13835 can fit into an integer. At this point, we know button_down_time
13836 <= event->timestamp, so the difference must be nonnegative, so
13837 there's no need to cast the result if double-click-time is
13838 nonnegative, as it should be; check that it's nonnegative, just in
13839 case. This bug is triggered when events are more than 2**31 ms
13840 apart (about 25 days). (Bug#8664)
13841
13842 * xselect.c (last_event_timestamp): Remove duplicate decl.
13843 (x_own_selection): Remove needless cast to unsigned long.
13844
13845 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
13846 that always fit in int. Use a sentinel instead of a counter, to
13847 avoid a temp and to allay GCC's concerns about possible int overflow.
13848 * frame.h (struct frame): Use int for menu_bar_items_used
13849 instead of EMACS_INT, since it always fits in int.
13850
13851 * menu.c (grow_menu_items): Check for int overflow.
13852
13853 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
13854
13855 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
13856 Before, the code was not consistent. These values cannot exceed
13857 2**31 - 1 so there's no need to make them unsigned.
13858 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
13859 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
13860 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
13861 as modifiers.
13862 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
13863
13864 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
13865 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
13866 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
13867 presumably because the widths might not match.
13868
13869 * window.c (size_window): Avoid needless test at loop start.
13870
13871 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
13872
13873 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
13874
13875 2011-05-12 Drew Adams <drew.adams@oracle.com>
13876
13877 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
13878
13879 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13880
13881 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
13882 `width' to `bar_area_x' and `bar_area_width', respectively.
13883 (x_scroll_run): Take account of fringe background extension.
13884
13885 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
13886 Rename local vars `left' and `width' to `bar_area_x' and
13887 `bar_area_width', respectively.
13888 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
13889 background extension.
13890
13891 2011-05-10 Jim Meyering <meyering@redhat.com>
13892
13893 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
13894
13895 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
13896
13897 * image.c (Finit_image_library): Return t for built-in image types,
13898 like pbm and xbm. (Bug#8640)
13899
13900 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
13901
13902 * w32menu.c (set_frame_menubar): Fix submenu allocation.
13903
13904 2011-05-07 Eli Zaretskii <eliz@gnu.org>
13905
13906 * w32console.c (Fset_screen_color): Doc fix.
13907 (Fget_screen_color): New function.
13908 (syms_of_ntterm): Defsubr it.
13909
13910 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
13911 unlink the temporary file if Fcall_process didn't create it in the
13912 first place.
13913 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
13914 child process will be redirected to a file specified with `:file'.
13915 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
13916 cue to call_process_cleanup not to close that handle.
13917
13918 2011-05-07 Ben Key <bkey76@gmail.com>
13919
13920 * makefile.w32-in: The bootstrap-temacs rule now makes use of
13921 one of two shell specific rules, either bootstrap-temacs-CMD or
13922 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
13923 to the previous implementation of the bootstrap-temacs rule.
13924 The bootstrap-temacs-CMD rule is similar to the previous
13925 implementation of the bootstrap-temacs rule except that it
13926 makes use of the ESC_CFLAGS variable instead of the CFLAGS
13927 variable.
13928
13929 These changes, along with some changes to nt/configure.bat,
13930 nt/gmake.defs, and nt/nmake.defs, are required to extend my
13931 earlier fix to add support for --cflags and --ldflags options
13932 that include quotes so that it works whether make uses cmd or
13933 sh as the shell.
13934
13935 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
13936
13937 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
13938 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
13939 is a constant.
13940 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
13941 a string. Handle both cases.
13942 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
13943 (Fdbus_register_method): Use Qinvalid_function.
13944
13945 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
13946
13947 * makefile.w32-in: Update dependencies.
13948 (LISP_H): Add inttypes.h and stdin.h.
13949 (PROCESS_H): Add unistd.h.
13950
13951 2011-05-06 Eli Zaretskii <eliz@gnu.org>
13952
13953 * lread.c: Include limits.h (fixes the MS-Windows build broken by
13954 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
13955
13956 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
13957
13958 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
13959
13960 * term.c (vfatal): Remove stray call to va_end.
13961 It's not needed and the C Standard doesn't allow it here anyway.
13962
13963 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
13964 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
13965
13966 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
13967 bytes.
13968
13969 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
13970
13971 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
13972
13973 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
13974
13975 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
13976
13977 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
13978
13979 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
13980 * charset.c (Fdefine_charset_internal): Don't initialize
13981 charset.code_space[15]. The value was garbage, on hosts with
13982 32-bit int (Bug#8600).
13983
13984 * lread.c (read_integer): Be more consistent with string-to-number.
13985 Use string_to_number to do the actual conversion; this avoids
13986 rounding errors and fixes some other screwups. Without this fix,
13987 for example, #x1fffffffffffffff was misread as -2305843009213693952.
13988 (digit_to_number): Move earlier, for benefit of read_integer.
13989 Return -1 if the digit is out of range for the base, -2 if it is
13990 not a digit in any supported base. (Bug#8602)
13991
13992 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
13993
13994 * dispnew.c (scrolling_window): Return 1 if we scrolled,
13995 to match comment at start of function. This also removes a
13996 GCC warning about overflow in a 32+64-bit port.
13997
13998 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
13999
14000 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
14001 Reported by Stefan Monnier in
14002 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
14003 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
14004 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
14005
14006 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
14007 (EMACS_UINTPTR): Likewise, with uintptr_t.
14008
14009 * lisp.h: Prefer 64-bit EMACS_INT if available.
14010 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
14011 on 32-bit hosts that have 64-bit int, so that they can access
14012 large files.
14013 However, temporarily disable this change unless the temporary
14014 symbol WIDE_EMACS_INT is defined.
14015
14016 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
14017
14018 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
14019 This removes an assumption that EMACS_INT and long are the same
14020 width as pointers. The assumption is true for Emacs porting targets
14021 now, but we want to make other targets possible.
14022 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
14023 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
14024 In the rest of the code, change types of integers that hold casted
14025 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
14026 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
14027 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
14028 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
14029 No need to cast type when ORing.
14030 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
14031 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
14032 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
14033 assume EMACS_INT is the same width as char *.
14034 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
14035 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
14036 Remove no-longer-needed casts.
14037 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
14038 (xg_tool_bar_help_callback, xg_make_tool_item):
14039 Use EMACS_INTPTR to hold an integer
14040 that will be cast to void *; this can avoid a GCC warning
14041 if EMACS_INT is not the same width as void *.
14042 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
14043 * xdisp.c (display_echo_area_1, resize_mini_window_1):
14044 (current_message_1, set_message_1):
14045 Use a local to convert to proper width without a cast.
14046 * xmenu.c (dialog_selection_callback): Likewise.
14047
14048 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
14049 Also, don't assume VALBITS / RAND_BITS is less than 5,
14050 and don't rely on undefined behavior when shifting a 1 left into
14051 the sign bit.
14052 * lisp.h (get_random): Change signature to match.
14053
14054 * lread.c (hash_string): Use size_t, not int, for hash computation.
14055 Normally we prefer signed values; but hashing is special, because
14056 it's better to use unsigned division on hash table sizes so that
14057 the remainder is nonnegative. Also, size_t is the natural width
14058 for hashing into memory. The previous code used 'int', which doesn't
14059 retain enough info to hash well into very large tables.
14060 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
14061
14062 * dbusbind.c: Don't possibly lose pointer info when converting.
14063 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
14064 Use XPNTR rather than XHASH, so that the high-order bits of
14065 the pointer aren't lost when converting through void *.
14066
14067 * eval.c (Fautoload): Don't double-shift a pointer.
14068
14069 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
14070
14071 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
14072
14073 * gnutls.c (DEF_GNUTLS_FN):
14074 * image.c (DEF_IMGLIB_FN): Make function pointers static.
14075
14076 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
14077
14078 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
14079 marker. (Bug#8610)
14080
14081 2011-05-05 Eli Zaretskii <eliz@gnu.org>
14082
14083 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
14084 New version that can reserve upto 2GB of heap space.
14085
14086 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
14087
14088 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
14089
14090 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
14091
14092 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
14093 `gnutls_certificate_set_x509_key_file'.
14094
14095 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
14096
14097 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
14098 Update dependencies.
14099
14100 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
14101
14102 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
14103 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
14104 Remove unused parameter `fildes'.
14105 * process.c (read_process_output, send_process): Don't pass it.
14106
14107 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
14108
14109 Fix previous change: the library cache is defined in w32.c.
14110 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
14111 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
14112
14113 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
14114
14115 Implement dynamic loading of GnuTLS on Windows.
14116
14117 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
14118 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
14119 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
14120 Declare.
14121
14122 * gnutls.c (Qgnutls_dll): Define.
14123 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
14124 (gnutls_*): Declare function pointers.
14125 (init_gnutls_functions): New function to initialize function pointers.
14126 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
14127 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
14128 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
14129 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
14130 (emacs_gnutls_write, emacs_gnutls_read)
14131 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
14132 (Fgnutls_available_p): New function.
14133 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
14134 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
14135 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
14136
14137 * image.c: Include w32.h.
14138 (Vimage_type_cache): Delete.
14139 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
14140 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
14141 (w32_delayed_load): Move to w32.c.
14142
14143 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
14144
14145 * w32.c (QCloaded_from, Vlibrary_cache): Define.
14146 (w32_delayed_load): Move from image.c. When loading a library, record
14147 its filename in the :loaded-from property of the library id.
14148 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
14149 Initialize and staticpro them.
14150 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
14151
14152 * process.c: Include lisp.h before w32.h, not after.
14153 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
14154 instead of gnutls_record_check_pending.
14155
14156 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
14157
14158 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
14159
14160 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
14161 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
14162 as passed in.
14163
14164 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
14165
14166 * xterm.c (x_set_frame_alpha): Do not set property on anything
14167 else than FRAME_X_OUTER_WINDOW (Bug#8608).
14168
14169 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
14170
14171 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
14172
14173 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
14174
14175 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
14176 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
14177 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
14178 (gnutls_global_initialized, Qgnutls_bootprop_priority)
14179 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
14180 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
14181 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
14182 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
14183 (Qgnutls_bootprop_callbacks_verify): Make static.
14184
14185 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
14186
14187 * callproc.c: Indentation fixup.
14188
14189 * sysdep.c (wait_for_termination_1): Make static.
14190 (wait_for_termination, interruptible_wait_for_termination):
14191 Move after wait_for_termination_1.
14192
14193 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
14194
14195 * sysdep.c (interruptible_wait_for_termination): New function
14196 which is like wait_for_termination, but allows keyboard
14197 interruptions.
14198
14199 * callproc.c (Fcall_process): Add (:file "file") as an option for
14200 the STDOUT buffer.
14201 (Fcall_process_region): Ditto.
14202
14203 2011-04-30 Eli Zaretskii <eliz@gnu.org>
14204
14205 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
14206 rather than `XVECTOR (FOO)->size'.
14207
14208 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
14209 inttypes.h, as a gnulib replacement is used if it not available in
14210 system headers.
14211
14212 2011-04-21 Eli Zaretskii <eliz@gnu.org>
14213
14214 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
14215 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
14216 of MOST_POSITIVE_FIXNUM. (Bug#8528)
14217
14218 * coding.c (coding_alloc_by_realloc): Error out if destination
14219 will grow beyond MOST_POSITIVE_FIXNUM.
14220 (decode_coding_emacs_mule): Abort if there isn't enough place in
14221 charbuf for the composition carryover bytes. Reserve an extra
14222 space for up to 2 characters produced in a loop.
14223 (decode_coding_iso_2022): Abort if there isn't enough place in
14224 charbuf for the composition carryover bytes.
14225
14226 2011-04-21 Eli Zaretskii <eliz@gnu.org>
14227
14228 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
14229 aborting when %lld or %lll format is passed.
14230 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
14231 %llo or %llx format is passed. (Bug#8545)
14232
14233 * window.c (window_scroll_line_based): Use a marker instead of
14234 simple variables to record original value of point. (Bug#7952)
14235
14236 * doprnt.c (doprnt): Fix the case where a multibyte sequence
14237 produced by %s or %c overflows available buffer space. (Bug#8545)
14238
14239 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
14240
14241 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
14242 (SIZE_MAX): Move defn after all includes, as they might #define it.
14243
14244 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14245
14246 * w32.c (init_environment): Warn about defaulting HOME to C:\.
14247
14248 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14249
14250 * keyboard.c (Qdelayed_warnings_hook): Define.
14251 (command_loop_1): Run `delayed-warnings-hook'
14252 if Vdelayed_warnings_list is non-nil.
14253 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
14254 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
14255
14256 2011-04-28 Eli Zaretskii <eliz@gnu.org>
14257
14258 * doprnt.c (doprnt): Don't return value smaller than the buffer
14259 size if the message was truncated. (Bug#8545).
14260
14261 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14262
14263 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
14264 (Fx_window_property): #if-0 the whole functions, not just the bodies.
14265
14266 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
14267
14268 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
14269
14270 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
14271
14272 * makefile.w32-in: Update dependencies.
14273
14274 2011-04-27 Eli Zaretskii <eliz@gnu.org>
14275
14276 Improve `doprnt' and its usage. (Bug#8545)
14277 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
14278 `format_end'. Remove support for %l as a conversion specifier.
14279 Don't use xrealloc. Improve diagnostics when the %l size modifier
14280 is used. Update the commentary.
14281
14282 * eval.c (verror): Simplify calculation of size_t.
14283
14284 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
14285 messages.
14286
14287 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
14288
14289 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
14290 change.
14291
14292 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
14293
14294 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
14295 This makes this file independent of the recent pseudovector change.
14296
14297 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
14298
14299 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
14300
14301 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
14302 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
14303 Remove unused local.
14304 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
14305
14306 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
14307 GCC 4.6.0 optimizes based on type-based alias analysis.
14308 For example, if b is of type struct buffer * and v of type struct
14309 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
14310 != &v->size, and therefore "v->size = 1; b->size = 2; return
14311 v->size;" must therefore return 1. This assumption is incorrect
14312 for Emacs, since it type-puns struct Lisp_Vector * with many other
14313 types. To fix this problem, this patch adds a new type struct
14314 vectorlike_header that documents the constraints on layout of vectors
14315 and pseudovectors, and helps optimizing compilers not get fooled
14316 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
14317 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
14318 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
14319 the size member.
14320 (XSETPVECTYPE): Rewrite in terms of new macro.
14321 (XSETPVECTYPESIZE): New macro, specifying both type and size.
14322 This is a bit clearer, and further avoids the possibility of
14323 undesirable aliasing.
14324 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
14325 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
14326 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
14327 since Lisp_Subr is a special case (no "next" field).
14328 (ASIZE): Now uses header.size rather than size.
14329 All previous uses of XVECTOR (foo)->size replaced to use this macro,
14330 to avoid the hassle of writing XVECTOR (foo)->header.size.
14331 (struct vectorlike_header): New type.
14332 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
14333 object, to help avoid aliasing.
14334 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
14335 (SUBRP): Likewise, since Lisp_Subr is a special case.
14336 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
14337 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
14338 (struct Lisp_Hash_Table): Combine first two members into a single
14339 struct vectorlike_header member. All uses of "size" and "next" members
14340 changed to be "header.size" and "header.next".
14341 * buffer.h (struct buffer): Likewise.
14342 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
14343 * frame.h (struct frame): Likewise.
14344 * process.h (struct Lisp_Process): Likewise.
14345 * termhooks.h (struct terminal): Likewise.
14346 * window.c (struct save_window_data, struct saved_window): Likewise.
14347 * window.h (struct window): Likewise.
14348 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
14349 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
14350 * buffer.c (init_buffer_once): Likewise.
14351 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
14352 special case.
14353 * process.c (Fformat_network_address): Use local var for size,
14354 for brevity.
14355
14356 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
14357
14358 Make the Lisp reader and string-to-float more consistent (Bug#8525)
14359 * data.c (atof): Remove decl; no longer used or needed.
14360 (digit_to_number): Move to lread.c.
14361 (Fstring_to_number): Use new string_to_number function, to be
14362 consistent with how the Lisp reader treats infinities and NaNs.
14363 Do not assume that floating-point numbers represent EMACS_INT
14364 without losing information; this is not true on most 64-bit hosts.
14365 Avoid double-rounding errors, by insisting on integers when
14366 parsing non-base-10 numbers, as the documentation specifies.
14367 * lisp.h (string_to_number): New decl, replacing ...
14368 (isfloat_string): Remove.
14369 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
14370 (read1): Do not accept +. and -. as integers; this
14371 appears to have been a coding error. Similarly, do not accept
14372 strings like +-1e0 as floating point numbers. Do not report
14373 overflow for integer overflows unless the base is not 10 which
14374 means we have no simple and reliable way to continue.
14375 Break out the floating-point parsing into a new
14376 function string_to_number, so that Fstring_to_number parses
14377 floating point numbers consistently with the Lisp reader.
14378 (digit_to_number): Move here from data.c. Make it static inline.
14379 (E_CHAR, EXP_INT): Remove, replacing with ...
14380 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
14381 (string_to_number): New function, replacing isfloat_string.
14382 This function checks for valid syntax and produces the resulting
14383 Lisp float number too. Rework it so that string-to-number
14384 no longer mishandles examples like "1.0e+". Use strtoumax,
14385 so that overflow for non-base-10 numbers is reported only when
14386 there's no portable and simple way to convert to floating point.
14387
14388 * textprop.c (set_text_properties_1): Rewrite for clarity,
14389 and to avoid GCC warning about integer overflow.
14390
14391 * intervals.h (struct interval): Use EMACS_INT for members
14392 where EMACS_UINT might cause problems. See
14393 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
14394 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
14395 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
14396 All uses changed.
14397 (offset_intervals): Tell GCC not to worry about length overflow
14398 when negating a negative length.
14399
14400 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
14401 (overrun_check_free): Likewise.
14402
14403 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
14404 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
14405 word size.
14406
14407 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
14408 (gnutls_make_error): Rename local to avoid shadowing.
14409 (gnutls_emacs_global_deinit): ifdef out; not used.
14410 (Fgnutls_boot): Use const for pointer to readonly storage.
14411 Comment out unused local. Fix pointer signedness problems.
14412
14413 * lread.c (openp): Don't stuff size_t into an 'int'.
14414 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
14415 about possible signed overflow.
14416
14417 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
14418 (GDK_KEY_g): Don't define if already defined.
14419 (xg_prepare_tooltip): Avoid pointer signedness problem.
14420 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
14421
14422 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
14423 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
14424
14425 * xfns.c (Fx_window_property): Simplify a bit,
14426 to make a bit faster and to avoid GCC 4.6.0 warning.
14427 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
14428
14429 * fns.c (internal_equal): Don't assume size_t fits in int.
14430
14431 * alloc.c (compact_small_strings): Tighten assertion a little.
14432
14433 Replace pEd with more-general pI, and fix some printf arg casts.
14434 * lisp.h (pI): New macro, generalizing old pEd macro to other
14435 conversion specifiers. For example, use "...%"pI"d..." rather
14436 than "...%"pEd"...".
14437 (pEd): Remove. All uses replaced with similar uses of pI.
14438 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
14439 * alloc.c (check_pure_size): Don't overflow by converting size to int.
14440 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
14441 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
14442 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
14443 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
14444 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
14445 64-bit hosts.
14446 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
14447 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
14448 * print.c (safe_debug_print, print_object): Likewise.
14449 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
14450 to int.
14451 Use pI instead of if-then-else-abort. Use %p to avoid casts,
14452 avoiding the 0 flag, which is not portable.
14453 * process.c (Fmake_network_process): Use pI to avoid cast.
14454 * region-cache.c (pp_cache): Likewise.
14455 * xdisp.c (decode_mode_spec): Likewise.
14456 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
14457 behavior on 64-bit hosts with printf arg.
14458 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
14459 (x_stop_queuing_selection_requests): Likewise.
14460 (x_get_window_property): Don't truncate byte count to an 'int'
14461 when tracing.
14462
14463 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
14464 here, since it parses constructs like leading '-' and spaces,
14465 which are not wanted; and it overflows with large numbers.
14466 Instead, simply match F[0-9]+, which is what is wanted anyway.
14467
14468 * alloc.c: Remove unportable assumptions about struct layout.
14469 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
14470 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
14471 (allocate_vectorlike, make_pure_vector): Use the new macros,
14472 plus offsetof, to remove unportable assumptions about struct layout.
14473 These assumptions hold on all porting targets that I know of, but
14474 they are not guaranteed, they're easy to remove, and removing them
14475 makes further changes easier.
14476
14477 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
14478 This doesn't fix a bug but makes the code clearer.
14479 (string_overrun_cookie): Now const. Use initializers that
14480 don't formally overflow signed char, to avoid warnings.
14481 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
14482 can cause Emacs to crash when string overrun checking is enabled.
14483 (allocate_buffer): Don't assume sizeof (struct buffer) is a
14484 multiple of sizeof (EMACS_INT); it need not be, if
14485 alignof(EMACS_INT) < sizeof (EMACS_INT).
14486 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
14487
14488 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
14489
14490 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
14491
14492 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
14493
14494 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
14495 supposed to be handshaking. (Bug#8556)
14496 Reported by Paul Eggert <eggert@cs.ucla.edu>.
14497
14498 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14499
14500 * lisp.h (Qdebug): List symbol.
14501 * eval.c (Qdebug): Restore global linkage.
14502 * keyboard.c (debug-on-event): New variable.
14503 (handle_user_signal): Break into debugger when debug-on-event
14504 matches the current signal symbol.
14505
14506 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
14507
14508 * alloc.c (check_sblock, check_string_bytes)
14509 (check_string_free_list): Convert to standard C.
14510
14511 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
14512
14513 * w32.c (emacs_gnutls_push): Fix typo.
14514
14515 2011-04-25 Eli Zaretskii <eliz@gnu.org>
14516
14517 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
14518 "cast to pointer from integer of different size".
14519
14520 Improve doprnt and its use in verror. (Bug#8545)
14521 * doprnt.c (doprnt): Document the set of format control sequences
14522 supported by the function. Use SAFE_ALLOCA instead of always
14523 using `alloca'.
14524
14525 * eval.c (verror): Don't limit the buffer size at size_max-1, that
14526 is one byte too soon. Don't use xrealloc; instead xfree and
14527 xmalloc anew.
14528
14529 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14530
14531 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
14532 callbacks stage.
14533
14534 * gnutls.c: Renamed global_initialized to
14535 gnutls_global_initialized. Added internals for the
14536 :verify-hostname-error, :verify-error, and :verify-flags
14537 parameters of `gnutls-boot' and documented those parameters in the
14538 docstring. Start callback support.
14539 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
14540 unless a fatal error occurred. Call gnutls_alert_send_appropriate
14541 on error. Return error code.
14542 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
14543 (emacs_gnutls_read): Likewise.
14544 (Fgnutls_boot): Return handshake error code.
14545 (emacs_gnutls_handle_error): New function.
14546 (wsaerror_to_errno): Likewise.
14547
14548 * w32.h (emacs_gnutls_pull): Add prototype.
14549 (emacs_gnutls_push): Likewise.
14550
14551 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
14552 (emacs_gnutls_push): Likewise.
14553
14554 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
14555
14556 * process.c (wait_reading_process_output): Check if GnuTLS
14557 buffered some data internally if no FDs are set for TLS
14558 connections.
14559
14560 * makefile.w32-in (OBJ2): Add gnutls.$(O).
14561 (LIBS): Link to USER_LIBS.
14562 ($(BLD)/gnutls.$(0)): New target.
14563
14564 2011-04-24 Eli Zaretskii <eliz@gnu.org>
14565
14566 * xdisp.c (handle_single_display_spec): Rename the
14567 display_replaced_before_p argument into display_replaced_p, to
14568 make it consistent with the commentary. Fix typos in the
14569 commentary.
14570
14571 * textprop.c (syms_of_textprop): Remove dead code.
14572 (copy_text_properties): Delete obsolete commentary about an
14573 interface that was deleted long ago. Fix typos in the description
14574 of arguments.
14575
14576 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
14577 to changes in oldXMenu/XMenu.h from 2011-04-16.
14578 <menu_help_message, prev_menu_help_message>: Constify.
14579 (IT_menu_make_room): menu->help_text is now `const char **';
14580 adjust.
14581
14582 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
14583 to changes in oldXMenu/XMenu.h from 2011-04-16.
14584 (struct XMenu): Declare `help_text' `const char **'.
14585
14586 * xfaces.c <Qunspecified>: Make extern again.
14587
14588 * syntax.c: Include sys/types.h before including regex.h, as
14589 required by POSIX.
14590
14591 * doc.c (get_doc_string): Improve the format passed to `error'.
14592
14593 * doprnt.c (doprnt): Improve commentary.
14594
14595 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
14596
14597 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
14598 them with etags.
14599
14600 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
14601 changes in globals.h immediately force recompilation.
14602 (TAGS): Depend on $(CURDIR)/m/intel386.h and
14603 $(CURDIR)/s/ms-w32.h.
14604 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
14605
14606 * character.c (Fchar_direction): Function deleted.
14607 (syms_of_character): Don't defsubr it.
14608 <char-direction-table>: Deleted.
14609
14610 2011-04-23 Eli Zaretskii <eliz@gnu.org>
14611
14612 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
14613 * doprnt.c: Include limits.h.
14614 (SIZE_MAX): New macro.
14615 (doprnt): Return a size_t value. 2nd arg is now size_t.
14616 Many local variables are now size_t instead of int or unsigned.
14617 Improve overflow protection. Support `l' modifier for integer
14618 conversions. Support %l conversion. Don't assume an EMACS_INT
14619 argument for integer conversions and for %c.
14620
14621 * lisp.h (doprnt): Restore prototype.
14622
14623 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
14624 $(SRC)/character.h.
14625
14626 * Makefile.in (base_obj): Add back doprnt.o.
14627
14628 * deps.mk (doprnt.o): Add back prerequisites.
14629 (callint.o): Depend on character.h.
14630
14631 * eval.c (internal_lisp_condition_case): Include the handler
14632 representation in the error message.
14633 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
14634 when breaking from the loop.
14635
14636 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
14637
14638 * callint.c (Fcall_interactively): When displaying error message
14639 about invalid control letter, pass the character's codepoint, not
14640 a pointer to its multibyte form. Improve display of the character
14641 in octal and display also its hex code.
14642
14643 * character.c (char_string): Use %x to display the (unsigned)
14644 codepoint of an invalid character, to avoid displaying a bogus
14645 negative value.
14646
14647 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
14648 `error', not SYMBOL_NAME itself.
14649
14650 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
14651 character arguments to `error'.
14652
14653 * charset.c (check_iso_charset_parameter): Fix incorrect argument
14654 to `error' in error message about FINAL_CHAR argument. Make sure
14655 FINAL_CHAR is a character, and use %c when it is passed as
14656 argument to `error'.
14657
14658 2011-04-23 Eli Zaretskii <eliz@gnu.org>
14659
14660 * s/ms-w32.h (localtime): Redirect to sys_localtime.
14661
14662 * w32.c: Include <time.h>.
14663 (sys_localtime): New function.
14664
14665 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
14666
14667 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
14668
14669 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
14670
14671 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
14672
14673 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
14674 zombies (Bug#8467).
14675
14676 2011-04-19 Eli Zaretskii <eliz@gnu.org>
14677
14678 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
14679 gl_state.e_property when gl_state.object is Qt.
14680
14681 * insdel.c (make_gap_larger): Remove limitation of buffer size
14682 to <= INT_MAX.
14683
14684 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
14685
14686 * xdisp.c (lookup_glyphless_char_display)
14687 (produce_glyphless_glyph): Handle cons cell entry in
14688 glyphless-char-display.
14689 (Vglyphless_char_display): Document it.
14690
14691 * term.c (produce_glyphless_glyph): Handle cons cell entry in
14692 glyphless-char-display.
14693
14694 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
14695
14696 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
14697
14698 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
14699
14700 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
14701 definition for no-X builds.
14702
14703 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
14704
14705 Static checks with GCC 4.6.0 and non-default toolkits.
14706
14707 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
14708
14709 * process.c (keyboard_bit_set): Define only if SIGIO.
14710 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
14711 (send_process): Repair possible setjmp clobbering.
14712
14713 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
14714
14715 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
14716
14717 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
14718
14719 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
14720 Define only if needed.
14721
14722 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
14723 by pacifying GCC about it. Maybe it's time to retire it?
14724 * xfaces.c (USG, __TIMEVAL__): Likewise.
14725
14726 * dispextern.h (struct redisplay_interface): Rename param
14727 to avoid shadowing.
14728 * termhooks.h (struct terminal): Likewise.
14729 * xterm.c (xembed_send_message): Likewise.
14730
14731 * insdel.c (make_gap_smaller): Define only if
14732 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
14733
14734 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
14735 it.
14736
14737 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
14738 so that we aren't warned about unused symbols.
14739
14740 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
14741
14742 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
14743
14744 * xfns.c (x_real_positions): Mark locals as initialized.
14745
14746 * xmenu.c (xmenu_show): Don't use uninitialized vars.
14747
14748 * xterm.c: Fix problems found by static analysis with other toolkits.
14749 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
14750 (x_dispatch_event): Declare static if USE_GTK, and
14751 define if USE_GTK || USE_X_TOOLKIT.
14752 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
14753 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
14754 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
14755 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
14756
14757 * xmenu.c (menu_help_callback): Pointer type fixes.
14758 Use const pointers when pointing at readonly data. Avoid pointer
14759 signedness clashes.
14760 (FALSE): Remove unused macro.
14761 (update_frame_menubar): Remove unused decl.
14762
14763 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
14764
14765 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
14766 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
14767 (single_menu_item): Rename local to avoid shadowing.
14768
14769 * keyboard.c (make_lispy_event): Remove unused local var.
14770
14771 * frame.c, frame.h (x_get_resource_string): Bring this back, but
14772 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
14773
14774 * bitmaps: Change bitmaps from unsigned char back to the X11
14775 compatible char. Avoid the old compiler warnings about
14776 out-of-range initializers by using, for example, '\xab' rather
14777 than 0xab.
14778
14779 * xgselect.c (xgselect_initialize): Check vs interface
14780 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
14781
14782 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
14783
14784 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
14785 to read-only memory.
14786
14787 * fns.c (vector): Remove; this old hack is no longer needed.
14788
14789 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
14790 Remove unused var.
14791 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
14792
14793 * xrdb.c (x_load_resources): Omit unused local.
14794
14795 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
14796 (x_window): Rename locals to avoid shadowing.
14797 (USG): Use the kludged USG macro, to pacify gcc.
14798
14799 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
14800 (x_term_init): Remove local to avoid shadowing.
14801
14802 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
14803
14804 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
14805 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
14806
14807 2011-04-16 Eli Zaretskii <eliz@gnu.org>
14808
14809 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
14810
14811 Fix regex.c, syntax.c and friends for buffers > 2GB.
14812 * syntax.h (struct gl_state_s): Declare character position members
14813 EMACS_INT.
14814
14815 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
14816
14817 * textprop.c (verify_interval_modification, interval_of):
14818 Declare arguments EMACS_INT.
14819
14820 * intervals.c (adjust_intervals_for_insertion): Declare arguments
14821 EMACS_INT.
14822
14823 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
14824
14825 * indent.c (Fvertical_motion): Local variable it_start is now
14826 EMACS_INT.
14827
14828 * regex.c (re_match, re_match_2, re_match_2_internal)
14829 (bcmp_translate, regcomp, regexec, print_double_string)
14830 (group_in_compile_stack, re_search, re_search_2, regex_compile)
14831 (re_compile_pattern, re_exec): Declare arguments and local
14832 variables `size_t' and `ssize_t' and return values `regoff_t', as
14833 appropriate.
14834 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
14835 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
14836 <compile_stack_type>: `size' and `avail' are now `size_t'.
14837
14838 * regex.h <regoff_t>: Use ssize_t, not int.
14839 (re_search, re_search_2, re_match, re_match_2): Arguments that
14840 specify buffer/string position and length are now ssize_t and
14841 size_t. Return type is regoff_t.
14842
14843 2011-04-16 Ben Key <bkey76@gmail.com>
14844
14845 * nsfont.m: Fixed bugs in ns_get_family and
14846 ns_descriptor_to_entity that were caused by using free to
14847 deallocate memory blocks that were allocated by xmalloc (via
14848 xstrdup). This caused Emacs to crash when compiled with
14849 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
14850 --enable-checking=xmallocoverrun). xfree is now used to
14851 deallocate these memory blocks.
14852
14853 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
14854
14855 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
14856
14857 emacs_write: Accept and return EMACS_INT for sizes.
14858 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
14859 et seq.
14860 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
14861 Accept and return EMACS_INT.
14862 (emacs_gnutls_write): Return the number of bytes written on
14863 partial writes.
14864 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
14865 (emacs_read, emacs_write): Remove check for negative size, as the
14866 Emacs source code has been audited now.
14867 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
14868 (emacs_read, emacs_write): Use it.
14869 * process.c (send_process): Adjust to the new signatures of
14870 emacs_write and emacs_gnutls_write. Do not attempt to store
14871 a byte offset into an 'int'; it might overflow.
14872 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
14873
14874 * sound.c: Don't assume sizes fit in 'int'.
14875 (struct sound_device.period_size, alsa_period_size):
14876 Return EMACS_INT, not int.
14877 (struct sound_device.write, vox_write, alsa_write):
14878 Accept EMACS_INT, not int.
14879 (wav_play, au_play): Use EMACS_INT to store sizes and to
14880 record read return values.
14881
14882 2011-04-15 Ben Key <bkey76@gmail.com>
14883
14884 * keyboard.c (Qundefined): Don't declare static since it is used
14885 in nsfns.m.
14886 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
14887 static since they are used in nsfont.m.
14888
14889 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14890
14891 * process.c (Qprocessp): Don't declare static.
14892 * lisp.h (Qprocessp): Declare again.
14893
14894 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
14895
14896 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
14897
14898 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
14899
14900 Improve C-level modularity by making more things 'static'.
14901
14902 Don't publish debugger-only interfaces to other modules.
14903 * lisp.h (safe_debug_print, debug_output_compilation_hack):
14904 (verify_bytepos, count_markers): Move decls to the only modules
14905 that need them.
14906 * region-cache.h (pp_cache): Likewise.
14907 * window.h (check_all_windows): Likewise.
14908 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
14909
14910 * sysdep.c (croak): Now static, if
14911 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
14912 * syssignal.h (croak): Declare only if not static.
14913
14914 * alloc.c (refill_memory_reserve): Now static if
14915 !defined REL_ALLOC || defined SYSTEM_MALLOC.
14916 * lisp.h (refill_memory_reserve): Declare only if not static.
14917
14918 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
14919 Define only if USE_LUCID.
14920
14921 * xrdb.c (x_customization_string, x_rm_string): Now static.
14922
14923 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
14924 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
14925
14926 * xdisp.c (draw_row_with_mouse_face): Now static.
14927 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
14928
14929 * window.h (check_all_windows): Mark externally visible.
14930
14931 * window.c (window_deletion_count): Now static.
14932
14933 * undo.c: Make symbols static if they're not exported.
14934 (last_undo_buffer, last_boundary_position, pending_boundary):
14935 Now static.
14936
14937 * textprop.c (interval_insert_behind_hooks): Now static.
14938 (interval_insert_in_front_hooks): Likewise.
14939
14940 * term.c: Make symbols static if they're not exported.
14941 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
14942 (max_frame_lines, tty_set_terminal_modes):
14943 (tty_reset_terminal_modes, tty_turn_off_highlight):
14944 (get_tty_terminal): Now static.
14945 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
14946 * termhooks.h (term_mouse_moveto): Do not declare if
14947 HAVE_WINDOW_SYSTEM.
14948 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
14949 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
14950
14951 * sysdep.c: Make symbols static if they're not exported.
14952 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
14953 Now static.
14954 (sigprocmask_set, full_mask): Remove; unused.
14955 (wait_debugging): Mark as visible.
14956 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
14957 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
14958
14959 * syntax.c (syntax_temp): Define only if !__GNUC__.
14960
14961 * sound.c (current_sound_device, current_sound): Now static.
14962
14963 * search.c (searchbufs, searchbuf_head): Now static.
14964
14965 * scroll.c (scroll_cost): Remove; unused.
14966 * dispextern.h (scroll_cost): Remove decl.
14967
14968 * region-cache.h (pp_cache): Mark as externally visible.
14969
14970 * process.c: Make symbols static if they're not exported.
14971 (process_tick, update_tick, create_process, chan_process):
14972 (Vprocess_alist, proc_buffered_char, datagram_access):
14973 (fd_callback_data, send_process_frame, process_sent_to): Now static.
14974 (deactivate_process): Mark defn as static, as well as decl.
14975 * lisp.h (create_process): Remove decl.
14976 * process.h (chan_process, Vprocess_alist): Remove decls.
14977
14978 * print.c: Make symbols static if they're not exported.
14979 (print_depth, new_backquote_output, being_printed, print_buffer):
14980 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
14981 (print_interval, print_number_index, initial_stderr_stream):
14982 Now static.
14983 * lisp.h (Fprinc): Remove decl.
14984 (debug_output_compilation_hack): Mark as externally visible.
14985
14986 * sysdep.c (croak): Move decl from here to syssignal.h.
14987 * syssignal.h (croak): Put it here, so the API can be checked when
14988 'croak' is called from dissociate_if_controlling_tty.
14989
14990 * minibuf.c: Make symbols static if they're not exported.
14991 (minibuf_save_list, choose_minibuf_frame): Now static.
14992 * lisp.h (choose_minibuf_frame): Remove decl.
14993
14994 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
14995
14996 * lread.c: Make symbols static if they're not exported.
14997 (read_objects, initial_obarray, oblookup_last_bucket_number):
14998 Now static.
14999 (make_symbol): Remove; unused.
15000 * lisp.h (initial_obarray, make_symbol): Remove decls.
15001
15002 * keyboard.c: Make symbols static if they're not exported.
15003 (single_kboard, recent_keys_index, total_keys, recent_keys):
15004 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
15005 (this_single_command_key_start, echoing, last_auto_save):
15006 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
15007 (command_loop, echo_now, keyboard_init_hook, help_char_p):
15008 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
15009 (Vlispy_mouse_stem, double_click_count):
15010 Now static.
15011 (force_auto_save_soon): Define only if SIGDANGER.
15012 (ignore_mouse_drag_p): Now static if
15013 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
15014 (print_help): Remove; unused.
15015 (stop_character, last_timer_event): Mark as externally visible.
15016 * keyboard.h (ignore_mouse_drag_p): Declare only if
15017 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
15018 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
15019 * lisp.h (echoing): Remove decl.
15020 (force_auto_save_soon): Declare only if SIGDANGER.
15021 * xdisp.c (redisplay_window): Simplify code, to make it more
15022 obvious that ignore_mouse_drag_p is not accessed if !defined
15023 USE_GTK && !defined HAVE_NS.
15024
15025 * intervals.c: Make symbols static if they're not exported.
15026 (merge_properties_sticky, merge_interval_right, delete_interval):
15027 Now static.
15028 * intervals.h (merge_interval_right, delete_interval): Remove decls.
15029
15030 * insdel.c: Make symbols static if they're not exported.
15031 However, leave prepare_to_modify_buffer alone. It's never
15032 called from outside this function, but that appears to be a bug.
15033 (combine_after_change_list, combine_after_change_buffer):
15034 (adjust_after_replace, signal_before_change): Now static.
15035 (adjust_after_replace_noundo): Remove; unused.
15036 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
15037 (signal_before_change): Remove decls.
15038
15039 * indent.c (val_compute_motion, val_vmotion): Now static.
15040
15041 * image.c: Make symbols static if they're not exported.
15042 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
15043 if USE_GTK.
15044 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
15045 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
15046
15047 * fringe.c (standard_bitmaps): Now static.
15048 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
15049
15050 * frame.c: Make symbols static if they're not exported.
15051 (x_report_frame_params, make_terminal_frame): Now static.
15052 (get_frame_param): Now static, unless HAVE_NS.
15053 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
15054 (x_get_resource_string): Remove; not used.
15055 * frame.h (make_terminal_frame, x_report_frame_params):
15056 (x_get_resource_string); Remove decls.
15057 (x_fullscreen_adjust): Declare only if WINDOWSNT.
15058 * lisp.h (get_frame_param): Declare only if HAVE_NS.
15059
15060 * font.c, fontset.c: Make symbols static if they're not exported.
15061 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
15062 (FACE_SUITABLE_FOR_CHAR_P): Use it.
15063 * font.c (font_close_object): Now static.
15064 * font.h (font_close_object): Remove.
15065 * fontset.c (FONTSET_OBJLIST): Remove.
15066 (free_realized_fontset) #if-0 the body, which does nothing.
15067 (face_suitable_for_char_p): #if-0, as it's never called.
15068 * fontset.h (face_suitable_for_char_p): Remove decl.
15069 * xfaces.c (face_at_string_position):
15070 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
15071 since 0 is always ASCII.
15072
15073 * fns.c (weak_hash_tables): Now static.
15074
15075 * fileio.c: Make symbols static if they're not exported.
15076 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
15077 (Vwrite_region_annotation_buffers): Now static.
15078
15079 * eval.c: Make symbols static if they're not exported.
15080 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
15081 * lisp.h (backtrace_list): Remove decl.
15082
15083 * emacs.c: Make symbols static if they're not exported.
15084 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
15085 (fatal_error_code, fatal_error_signal_hook, standard_args):
15086 Now static.
15087 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
15088 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
15089 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
15090 * lisp.h (fatal_error_signal_hook): Remove decl.
15091 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
15092
15093 * editfns.c: Move a (normally-unused) function to its only use.
15094 * editfns.c, lisp.h (get_operating_system_release): Remove.
15095 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
15096 worth the hassle of breaking this out.
15097
15098 * xterm.c: Make symbols static if they're not exported.
15099 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
15100 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
15101 (x_destroy_window, x_delete_display):
15102 Now static.
15103 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
15104 (x_mouse_leave): Remove; unused.
15105 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
15106 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
15107 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
15108 Remove decls.
15109 (x_mouse_leave): Declare only if WINDOWSNT.
15110 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
15111 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
15112 USE_X_TOOLKIT.
15113
15114 * ftxfont.c: Make symbols static if they're not exported.
15115 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
15116 HAVE_FREETYPE.
15117 * font.h (ftxfont_driver): Likewise.
15118
15119 * xfns.c: Make symbols static if they're not exported.
15120 (x_last_font_name, x_display_info_for_name):
15121 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
15122 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
15123 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
15124 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
15125 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
15126 (last_show_tip_args): Now static.
15127 (xic_defaut_fontset, xic_create_fontsetname): Define only if
15128 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
15129 (x_screen_planes): Remove; unused.
15130 * dispextern.h (x_screen_planes): Remove decl.
15131
15132 * dispnew.c: Make symbols static if they're not exported.
15133 * dispextern.h (redraw_garbaged_frames, scrolling):
15134 (increment_row_positions): Remove.
15135 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
15136 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
15137 Now static.
15138 (redraw_garbaged_frames): Remove; unused.
15139
15140 * xfaces.c: Make symbols static if they're not exported.
15141 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
15142 Remove decls.
15143 * xterm.h (defined_color): Remove decls.
15144 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
15145 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
15146 (menu_face_changed_default, defined_color, free_realized_face):
15147 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
15148 (ascii_face_of_lisp_face): Remove; unused.
15149
15150 * xdisp.c: Make symbols static if they're not exported.
15151 * dispextern.h (scratch_glyph_row, window_box_edges):
15152 (glyph_to_pixel_coords, set_cursor_from_row):
15153 (get_next_display_element, set_iterator_to_next):
15154 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
15155 (show_mouse_face): Remove decls
15156 * frame.h (message_buf_print): Likewise.
15157 * lisp.h (pop_message, set_message, check_point_in_composition):
15158 Likewise.
15159 * xterm.h (set_vertical_scroll_bar): Likewise.
15160 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
15161 (message_buf_print, scratch_glyph_row, displayed_buffer):
15162 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
15163 (get_next_display_element, show_mouse_face, window_box_edges):
15164 (frame_to_window_pixel_xy, check_point_in_composition):
15165 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
15166 (glyph_to_pixel_coords): Remove; unused.
15167
15168 * dired.c (file_name_completion): Now static.
15169
15170 * dbusbind.c (xd_in_read_queued_messages): Now static.
15171
15172 * lisp.h (circular_list_error, FOREACH): Remove; unused.
15173 * data.c (circular_list_error): Remove.
15174
15175 * commands.h (last_point_position, last_point_position_buffer):
15176 (last_point_position_window): Remove decls.
15177 * keyboard.c: Make these variables static.
15178
15179 * coding.h (coding, code_convert_region, encode_coding_gap):
15180 Remove decls.
15181 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
15182 (iso_code_class, detect_coding, code_convert_region): Now static.
15183 (encode_coding_gap): Remove; unused.
15184
15185 * chartab.c (chartab_chars, chartab_bits): Now static.
15186
15187 * charset.h (charset_iso_8859_1): Remove decl.
15188 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
15189 Now static.
15190
15191 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
15192 * ccl.c (Vccl_program_table): Now static.
15193 (check_ccl_update): Remove; unused.
15194
15195 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
15196 * category.h: ... from here.
15197 * category.c (check_category_table, set_category_set): Now static.
15198
15199 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
15200 * lisp.h: Remove these decls.
15201
15202 * buffer.c (buffer_count): Remove unused var.
15203
15204 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
15205 so that it's not optimized away.
15206 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
15207 * dispextern.h (bidi_dump_cached_states): Remove, since it's
15208 exported only to the debugger.
15209
15210 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
15211 * atimer.h (run_all_atimers): Remove; not exported.
15212
15213 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
15214 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
15215 was inaccessible from Lisp.
15216 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
15217 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
15218
15219 alloc.c: Import and export fewer symbols, and remove unused items.
15220 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
15221 is defined.
15222 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
15223 it's not optimized away by whole-program optimization.
15224 (message_enable_multibyte, free_misc): Remove.
15225 (catchlist, handlerlist, mark_backtrace):
15226 Declare only if BYTE_MARK_STACK.
15227 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
15228 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
15229 (message_enable_multibyte): Remove decl.
15230 (free_misc, interval_free_list, float_block, float_block_index):
15231 (n_float_blocks, float_free_list, cons_block, cons_block_index):
15232 (cons_free_list, last_marked_index):
15233 Now static.
15234 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
15235 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
15236 (mark_backtrace): Define only if BYTE_MARK_STACK.
15237 * xdisp.c (message_enable_multibyte): Now static.
15238
15239 Declare Lisp_Object Q* variables to be 'static' if not exported.
15240 This makes it easier for human readers (and static analyzers)
15241 to see whether these variables are used from other modules.
15242 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
15243 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
15244 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
15245 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
15246 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
15247 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
15248 * xmenu.c, xselect.c:
15249 Declare Q* vars static if they are not used in other modules.
15250 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
15251 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
15252 Remove decls of unexported vars.
15253 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
15254
15255 * lisp.h (DEFINE_FUNC): Make sname 'static'.
15256
15257 Make Emacs functions such as Fatom 'static' by default.
15258 This makes it easier for human readers (and static analyzers)
15259 to see whether these functions can be called from other modules.
15260 DEFUN now defines a static function. To make the function external
15261 so that it can be used in other C modules, use the new macro DEFUE.
15262 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
15263 (Finit_image_library):
15264 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
15265 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
15266 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
15267 Remove decls, since these functions are now static.
15268 (Funintern, Fget_internal_run_time): New decls, since these functions
15269 were already external.
15270
15271 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
15272 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
15273 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
15274 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
15275 * keyboard.c, keymap.c, lread.c:
15276 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
15277 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
15278 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
15279 Mark functions with DEFUE instead of DEFUN,
15280 if they are used in other modules.
15281 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
15282 decls for now-static functions.
15283 * buffer.h (Fdelete_overlay): Remove decl.
15284 * callproc.c (Fgetenv_internal): Mark as internal.
15285 * composite.c (Fremove_list_of_text_properties): Remove decl.
15286 (Fcomposition_get_gstring): New forward static decl.
15287 * composite.h (Fcomposite_get_gstring): Remove decl.
15288 * dired.c (Ffile_attributes): New forward static decl.
15289 * doc.c (Fdocumntation_property): New forward static decl.
15290 * eval.c (Ffetch_bytecode): New forward static decl.
15291 (Funintern): Remove extern decl; now in .h file where it belongs.
15292 * fileio.c (Fmake_symbolic_link): New forward static decl.
15293 * image.c (Finit_image_library): New forward static decl.
15294 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
15295 * intervals.h (Fprevious_property_change):
15296 (Fremove_list_of_text_properties): Remove decls.
15297 * keyboard.c (Fthis_command_keys): Remove decl.
15298 (Fcommand_execute): New forward static decl.
15299 * keymap.c (Flookup_key): New forward static decl.
15300 (Fcopy_keymap): Now static.
15301 * keymap.h (Flookup_key): Remove decl.
15302 * process.c (Fget_process): New forward static decl.
15303 (Fprocess_datagram_address): Mark as internal.
15304 * syntax.c (Fsyntax_table_p): New forward static decl.
15305 (skip_chars): Remove duplicate decl.
15306 * textprop.c (Fprevious_property_change): New forward static decl.
15307 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
15308 Now internal.
15309 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
15310 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
15311
15312 * editfns.c (Fformat): Remove unreachable code.
15313
15314 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
15315
15316 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
15317 change. (Bug#8496)
15318
15319 2011-04-13 Eli Zaretskii <eliz@gnu.org>
15320
15321 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
15322 when at ZV. (Bug#8487)
15323
15324 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
15325
15326 * charset.c (Fclear_charset_maps): Use xfree instead of free.
15327 (Bug#8437)
15328 * keyboard.c (parse_tool_bar_item): Likewise.
15329 * sound.c (sound_cleanup, alsa_close): Likewise.
15330 * termcap.c (tgetent): Likewise.
15331 * xfns.c (x_default_font_parameter): Likewise.
15332 * xsettings.c (read_and_apply_settings): Likewise.
15333
15334 * alloc.c (overrun_check_malloc, overrun_check_realloc)
15335 (overrun_check_free): Protoize.
15336
15337 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
15338
15339 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
15340 since callers should never pass a negative size.
15341 Change the signature to match that of plain 'read' and 'write'; see
15342 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
15343 * lisp.h: Update prototypes of emacs_write and emacs_read.
15344
15345 2011-04-11 Eli Zaretskii <eliz@gnu.org>
15346
15347 * xdisp.c (redisplay_window): Don't try to determine the character
15348 position of the scroll margin if the window start point w->startp
15349 is outside the buffer's accessible region. (Bug#8468)
15350
15351 2011-04-10 Eli Zaretskii <eliz@gnu.org>
15352
15353 Fix write-region and its subroutines for buffers > 2GB.
15354 * fileio.c (a_write, e_write): Modify declaration of arguments and
15355 local variables to support buffers larger than 2GB.
15356 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
15357
15358 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
15359 argument, local variables, and return value.
15360
15361 * lisp.h: Update prototypes of emacs_write and emacs_read.
15362
15363 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
15364
15365 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
15366
15367 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
15368
15369 Fix more problems found by GCC 4.6.0's static checks.
15370
15371 * xdisp.c (vmessage): Use a better test for character truncation.
15372
15373 * charset.c (load_charset_map): <, not <=, for optimization,
15374 and to avoid potential problems with integer overflow.
15375 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
15376 * casetab.c (set_identity, shuffle): Likewise.
15377 * editfns.c (Fformat): Likewise.
15378 * syntax.c (skip_chars): Likewise.
15379
15380 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
15381 This also lets GCC 4.6.0 generate slightly better loop code.
15382
15383 * callint.c (Fcall_interactively): <, not <=, for optimization.
15384 (Fcall_interactively): Count the number of arguments produced,
15385 not the number of arguments given. This is simpler and lets GCC
15386 4.6.0 generate slightly better code.
15387
15388 * ftfont.c: Distingish more carefully between FcChar8 and char.
15389 The previous code passed unsigned char * to a functions like
15390 strlen and xstrcasecmp that expect char *, which does not
15391 conform to the C standard.
15392 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
15393 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
15394 char * when the C standard requires it.
15395
15396 * keyboard.c (read_char): Remove unused var.
15397
15398 * eval.c: Port to Windows vsnprintf (Bug#8435).
15399 Include <limits.h>.
15400 (SIZE_MAX): Define if the headers do not.
15401 (verror): Do not give up if vsnprintf returns a negative count.
15402 Instead, grow the buffer. This ports to Windows vsnprintf, which
15403 does not conform to C99. Problem reported by Eli Zaretskii.
15404 Also, simplify the allocation scheme, by avoiding the need for
15405 calling realloc, and removing the ALLOCATED variable.
15406
15407 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
15408
15409 Remove invocations of doprnt, as Emacs now uses vsnprintf.
15410 But keep the doprint source code for now, as we might revamp it
15411 and use it again (Bug#8435).
15412 * lisp.h (doprnt): Remove.
15413 * Makefile.in (base_obj): Remove doprnt.o.
15414 * deps.mk (doprnt.o): Remove.
15415
15416 error: Print 32- and 64-bit integers portably (Bug#8435).
15417 Without this change, on typical 64-bit hosts error ("...%d...", N)
15418 was used to print both 32- and 64-bit integers N, which relied on
15419 undefined behavior.
15420 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
15421 * lisp.h (error, verror): Mark as printf-like functions.
15422 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
15423 Report overflow in size calculations when allocating printf buffer.
15424 Do not truncate output string at its first null byte.
15425 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
15426 Truncate the output at a character boundary, since vsnprintf does not
15427 do that.
15428 * charset.c (check_iso_charset_parameter): Convert internal
15429 character to string before calling 'error', since %c now has the
15430 printf meaning.
15431 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
15432 overflow when computing char to be passed to 'error'. Do not
15433 pass Lisp_Object to 'error'; pass the integer instead.
15434 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
15435 formatted with plain %d.
15436
15437 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
15438
15439 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
15440
15441 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
15442
15443 * xterm.c (x_catch_errors): Remove duplicate declaration.
15444
15445 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
15446
15447 * xdisp.c, lisp.h (message_nolog): Remove; unused.
15448
15449 2011-04-10 Jim Meyering <meyering@redhat.com>
15450
15451 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
15452 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
15453 return ssize_t not "int", and use size_t as the buffer length.
15454 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
15455 * gnutls.h: Update declarations.
15456 * process.c (read_process_output): Use ssize_t, to match.
15457 (send_process): Likewise.
15458
15459 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
15460
15461 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
15462
15463 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
15464
15465 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
15466 Use unsigned char, to match FcChar8 type definition.
15467
15468 * xterm.c (handle_one_xevent):
15469 * xmenu.c (create_and_show_popup_menu):
15470 * xselect.c (x_decline_selection_request)
15471 (x_reply_selection_request): Avoid type-punned deref of X events.
15472
15473 2011-04-09 Eli Zaretskii <eliz@gnu.org>
15474
15475 Fix some uses of `int' instead of EMACS_INT.
15476 * search.c (string_match_1, fast_string_match)
15477 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
15478 (scan_buffer, find_next_newline_no_quit)
15479 (find_before_next_newline, search_command, Freplace_match)
15480 (Fmatch_data): Make some `int' variables be EMACS_INT.
15481
15482 * xdisp.c (display_count_lines): 3rd argument and return value now
15483 EMACS_INT. All callers changed.
15484 (pint2hrstr): Last argument is now EMACS_INT.
15485
15486 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
15487 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
15488 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
15489 (decode_coding_utf_16, decode_coding_emacs_mule)
15490 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15491 (decode_coding_ccl, decode_coding_charset)
15492 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
15493 (decode_coding_iso_2022, decode_coding_emacs_mule)
15494 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
15495 <char_offset, last_offset>: Declare EMACS_INT.
15496 (encode_coding_utf_8, encode_coding_utf_16)
15497 (encode_coding_emacs_mule, encode_invocation_designation)
15498 (encode_designation_at_bol, encode_coding_iso_2022)
15499 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
15500 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
15501 Declare EMACS_INT.
15502 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
15503 (encode_invocation_designation): Last argument P_NCHARS is now
15504 EMACS_INT.
15505 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
15506 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
15507
15508 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
15509 All users changed.
15510
15511 * ccl.c (Fccl_execute_on_string): Declare some variables
15512 EMACS_INT.
15513
15514 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
15515
15516 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
15517
15518 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
15519
15520 * process.c (Fformat_network_address): Doc fix.
15521
15522 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
15523
15524 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
15525
15526 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
15527
15528 * keyboard.c (read_char): Call Lisp function help-form-show,
15529 instead of using internal_with_output_to_temp_buffer.
15530 (Qhelp_form_show): New var.
15531 (syms_of_keyboard): Use DEFSYM macro.
15532
15533 * print.c (internal_with_output_to_temp_buffer): Function deleted.
15534
15535 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
15536
15537 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15538
15539 * process.c (Flist_processes): Remove to Lisp.
15540 (list_processes_1): Delete.
15541
15542 2011-04-06 Eli Zaretskii <eliz@gnu.org>
15543
15544 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
15545
15546 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
15547
15548 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
15549
15550 Fix more problems found by GCC 4.6.0's static checks.
15551
15552 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
15553
15554 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
15555
15556 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
15557
15558 * xdisp.c (vmessage): Mark as a printf-like function.
15559
15560 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
15561
15562 * sound.c (sound_warning): Don't crash if arg contains a printf format.
15563
15564 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
15565 printf-like functions.
15566 (tiff_load): Add casts to remove these marks before passing them
15567 to system-supplied API.
15568
15569 * eval.c (Fsignal): Remove excess argument to 'fatal'.
15570
15571 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
15572 This avoids several warnings with gcc -Wstrict-overflow.
15573 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
15574 directly, rather than having caller test rule sign. This avoids
15575 some unnecessary tests.
15576 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
15577 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
15578 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
15579
15580 * xfont.c (xfont_text_extents): Remove var that was set but not used.
15581 (xfont_open): Avoid unnecessary tests.
15582
15583 * composite.c (composition_gstring_put_cache): Use unsigned integer.
15584
15585 * composite.h, composite.c (composition_gstring_put_cache):
15586 Use EMACS_INT, not int, for length.
15587
15588 * composite.h (COMPOSITION_DECODE_REFS): New macro,
15589 breaking out part of COMPOSITION_DECODE_RULE.
15590 (COMPOSITION_DECODE_RULE): Use it.
15591 * composite.c (get_composition_id): Remove unused local vars,
15592 by using the new macro.
15593
15594 * textprop.c (set_text_properties_1): Change while to do-while,
15595 since the condition is always true at first.
15596
15597 * intervals.c (graft_intervals_into_buffer): Mark var as used.
15598 (interval_deletion_adjustment): Return unsigned value.
15599 All uses changed.
15600
15601 * process.c (list_processes_1, create_pty, read_process_output):
15602 (exec_sentinel): Remove vars that were set but not used.
15603 (create_pty): Remove unnecessary "volatile"s.
15604 (Fnetwork_interface_info): Avoid possibility of int overflow.
15605 (read_process_output): Do adaptive read buffering even if carryover.
15606 (read_process_output): Simplify nbytes computation if buffered.
15607
15608 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
15609
15610 * syntax.c (scan_words): Remove var that was set but not used.
15611 (update_syntax_table): Use unsigned instead of int.
15612
15613 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
15614 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
15615 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
15616
15617 * print.c (print_error_message): Avoid int overflow.
15618
15619 * font.c (font_list_entities): Redo for clarity,
15620 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
15621
15622 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
15623 (font_score): Avoid potential overflow in diff calculation.
15624
15625 * fns.c (substring_both): Remove var that is set but not used.
15626 (sxhash): Redo loop for clarity and to avoid wraparound warning.
15627
15628 * eval.c (funcall_lambda): Rename local to avoid shadowing.
15629
15630 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
15631 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
15632 can always succeed if overflow has undefined behavior.
15633
15634 * search.c (boyer_moore, wordify): Remove vars set but not used.
15635 (wordify): Omit three unnecessary tests.
15636
15637 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
15638 All callers changed. This avoids the need for an unused var.
15639
15640 * casefiddle.c (casify_region): Remove var that is set but not used.
15641
15642 * dired.c (file_name_completion): Remove var that is set but not used.
15643
15644 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
15645
15646 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
15647 (Finsert_file_contents): Remove unnecessary code checking fd.
15648
15649 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
15650 Check for integer overflow on size calculations.
15651
15652 * buffer.c (Fprevious_overlay_change): Remove var that is set
15653 but not used.
15654
15655 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
15656 Remove vars that are set but not used.
15657 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
15658 (timer_check_2): Mark vars as initialized.
15659
15660 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
15661
15662 * image.c (lookup_image): Remove var that is set but not used.
15663 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
15664
15665 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
15666 that are set but not used.
15667
15668 * xfns.c (make_invisible_cursor): Don't return garbage
15669 if XCreateBitmapFromData fails (Bug#8410).
15670
15671 * xselect.c (x_get_local_selection, x_handle_property_notify):
15672 Remove vars that are set but not used.
15673
15674 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
15675 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
15676
15677 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
15678 Remove var that is set but not used.
15679 (scroll_bar_windows_size): Now size_t, not int.
15680 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
15681 Check for overflow.
15682
15683 * xfaces.c (realize_named_face): Remove vars that are set but not used.
15684 (map_tty_color) [!defined MSDOS]: Likewise.
15685
15686 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
15687
15688 * coding.c: Remove vars that are set but not used.
15689 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
15690 All callers changed.
15691 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
15692 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
15693 (decode_coding_charset): Remove vars that are set but not used.
15694
15695 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
15696 that is set but not used.
15697
15698 * print.c (print_object): Remove var that is set but not used.
15699
15700 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
15701 The gnulib version avoids calling malloc in the usual case,
15702 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
15703 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
15704 * filelock.c (current_lock_owner): Likewise.
15705 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
15706 * sysdep.c: Include allocator.h, careadlinkat.h.
15707 (emacs_no_realloc_allocator): New static constant.
15708 (emacs_readlink): New function.
15709 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
15710 ../lib/careadlinkat.h.
15711
15712 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
15713
15714 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
15715 first non-nil return value).
15716
15717 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
15718
15719 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
15720 if not defined (Bug#8403).
15721
15722 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
15723
15724 * xdisp.c (display_count_lines): Remove parameter `start',
15725 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
15726 (get_char_face_and_encoding): Remove parameter `multibyte_p',
15727 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
15728 (fill_stretch_glyph_string): Remove parameters `row' and `area',
15729 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
15730 and thereabouts. All callers changed.
15731 (get_per_char_metric): Remove parameter `f', unused since
15732 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
15733
15734 2011-04-02 Jim Meyering <meyering@redhat.com>
15735
15736 do not dereference NULL upon failed strdup
15737 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
15738 (ns_get_family): Likewise.
15739
15740 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
15741
15742 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
15743
15744 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
15745
15746 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
15747 later (Bug#8403).
15748
15749 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15750
15751 Add lexical binding.
15752
15753 * window.c (Ftemp_output_buffer_show): New fun.
15754 (Fsave_window_excursion):
15755 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
15756
15757 * lread.c (lisp_file_lexically_bound_p): New function.
15758 (Fload): Bind Qlexical_binding.
15759 (readevalloop): Remove `evalfun' arg.
15760 Bind Qinternal_interpreter_environment.
15761 (Feval_buffer): Bind Qlexical_binding.
15762 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
15763 Mark as dynamic.
15764 (syms_of_lread): Declare `lexical-binding'.
15765
15766 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
15767
15768 * keyboard.c (eval_dyn): New fun.
15769 (menu_item_eval_property): Use it.
15770
15771 * image.c (parse_image_spec): Use Ffunctionp.
15772
15773 * fns.c (concat, mapcar1): Accept byte-code-functions.
15774
15775 * eval.c (Fsetq): Handle lexical vars.
15776 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
15777 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
15778 (FletX, Flet): Obey lexical binding.
15779 (Fcommandp): Handle closures.
15780 (Feval): New `lexical' arg.
15781 (eval_sub): New function extracted from Feval. Use it almost
15782 everywhere where Feval was used. Look up vars in lexical env.
15783 Handle closures.
15784 (Ffunctionp): Move from subr.el.
15785 (Ffuncall): Handle closures.
15786 (apply_lambda): Remove `eval_flags'.
15787 (funcall_lambda): Handle closures and new byte-code-functions.
15788 (Fspecial_variable_p): New function.
15789 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
15790 but without exporting it to Lisp.
15791
15792 * doc.c (Fdocumentation, store_function_docstring):
15793 * data.c (Finteractive_form): Handle closures.
15794
15795 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
15796 interactive spec.
15797
15798 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
15799 New byte-codes.
15800 (exec_byte_code): New function extracted from Fbyte_code to handle new
15801 calling convention for byte-code-functions. Add new byte-codes.
15802
15803 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
15804
15805 * alloc.c (Fmake_symbol): Init new `declared_special' field.
15806
15807 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
15808
15809 * xdisp.c (redisplay_internal): Fix prototype.
15810
15811 2011-03-31 Eli Zaretskii <eliz@gnu.org>
15812
15813 * xdisp.c (SCROLL_LIMIT): New macro.
15814 (try_scrolling): Use it when setting scroll_limit.
15815 Limit scrolling to 100 screen lines.
15816 (redisplay_window): Even when falling back on "recentering",
15817 position point in the window according to scroll-conservatively,
15818 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
15819
15820 (try_scrolling): When point is above the window, allow searching
15821 as far as scroll_max, or one screenful, to compute vertical
15822 distance from PT to the scroll margin position. This prevents
15823 try_scrolling from unnecessarily failing when
15824 scroll-conservatively is set to a value slightly larger than the
15825 window height. Clean up the case of PT below the margin at bottom
15826 of window: scroll_max can no longer be INT_MAX. When aggressive
15827 scrolling is in use, don't let point enter the opposite scroll
15828 margin as result of the scroll.
15829 (syms_of_xdisp) <scroll-conservatively>: Document the
15830 threshold of 100 lines for never-recentering scrolling.
15831
15832 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
15833
15834 * dispextern.h (move_it_by_lines):
15835 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
15836 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
15837 (message_log_check_duplicate): Remove parameters `prev_bol' and
15838 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
15839 (redisplay_internal): Remove parameter `preserve_echo_area',
15840 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
15841
15842 * indent.c (Fvertical_motion):
15843 * window.c (window_scroll_pixel_based, Frecenter):
15844 Don't pass `need_y_p' to `move_it_by_lines'.
15845
15846 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15847
15848 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
15849 steal a few bits to be more compact.
15850 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
15851 Remove unneeded casts.
15852
15853 * bytecode.c (Fbyte_code): CAR and CDR can GC.
15854
15855 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
15856
15857 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
15858 binding" message (bug#7967).
15859
15860 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
15861
15862 Fix more problems found by GCC 4.6.0's static checks.
15863
15864 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
15865 Remove unused local var.
15866
15867 * editfns.c (Fmessage_box): Remove unused local var.
15868
15869 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
15870 (note_mode_line_or_margin_highlight, note_mouse_highlight):
15871 Omit unused local vars.
15872 * window.c (shrink_windows): Omit unused local var.
15873 * menu.c (digest_single_submenu): Omit unused local var.
15874 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
15875 Omit unused local var.
15876
15877 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
15878 Don't assume string length fits in int.
15879 (keyremap_step, read_key_sequence): Use size_t for sizes.
15880 (read_key_sequence): Don't check last_real_key_start redundantly.
15881
15882 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
15883 instead of alloca (Bug#8344).
15884
15885 * eval.c (Fbacktrace): Don't assume nargs fits in int.
15886 (Fbacktrace_frame): Don't assume nframes fits in int.
15887
15888 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
15889
15890 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
15891 concerns.
15892
15893 * term.c (produce_glyphless_glyph): Remove unnecessary test.
15894
15895 * cm.c (calccost): Turn while-do into do-while, for clarity.
15896
15897 * keyboard.c (syms_of_keyboard): Use the same style as later
15898 in this function when indexing through an array. This also
15899 works around GCC bug 48267.
15900
15901 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
15902
15903 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
15904
15905 * chartab.c (sub_char_table_ref_and_range): Redo for slight
15906 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
15907
15908 * keyboard.c, keyboard.h (num_input_events): Now size_t.
15909 This avoids undefined behavior on integer overflow, and is a bit
15910 more convenient anyway since it is compared to a size_t variable.
15911
15912 Variadic C functions now count arguments with size_t, not int.
15913 This avoids an unnecessary limitation on 64-bit machines, which
15914 caused (substring ...) to crash on large vectors (Bug#8344).
15915 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
15916 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
15917 All variadic functions and their callers changed accordingly.
15918 (struct gcpro.nvars): Now size_t, not int. All uses changed.
15919 * data.c (arith_driver, float_arith_driver): Likewise.
15920 * editfns.c (general_insert_function): Likewise.
15921 * eval.c (struct backtrace.nargs, interactive_p)
15922 (internal_condition_case_n, run_hook_with_args, apply_lambda)
15923 (funcall_lambda, mark_backtrace): Likewise.
15924 * fns.c (concat): Likewise.
15925 * frame.c (x_set_frame_parameters): Likewise.
15926 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
15927 0 if not found, not -1. All callers changed.
15928
15929 * alloc.c (garbage_collect): Don't assume stack size fits in int.
15930 (stack_copy_size): Now size_t, not int.
15931 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
15932
15933 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
15934
15935 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
15936 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
15937 All callers changed.
15938
15939 * lisp.h (multibyte_char_to_unibyte):
15940 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
15941 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
15942 * character.h (CHAR_TO_BYTE8):
15943 * cmds.c (internal_self_insert):
15944 * editfns.c (general_insert_function):
15945 * keymap.c (push_key_description):
15946 * search.c (Freplace_match):
15947 * xdisp.c (message_dolog, set_message_1): All callers changed.
15948
15949 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
15950
15951 * keyboard.c (safe_run_hook_funcall): New function.
15952 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
15953 don't set the hook to nil, but remove the offending function instead.
15954 (Qcommand_hook_internal): Remove, unused.
15955 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
15956 Vcommand_hook_internal.
15957
15958 * eval.c (enum run_hooks_condition): Remove.
15959 (funcall_nil, funcall_not): New functions.
15960 (run_hook_with_args): Call each function through a `funcall' argument.
15961 Remove `cond' argument, now redundant.
15962 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
15963 (Frun_hook_with_args_until_failure): Adjust accordingly.
15964 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
15965
15966 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
15967
15968 * dispextern.h (string_buffer_position): Remove declaration.
15969
15970 * print.c (strout): Remove parameter `multibyte', unused since
15971 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
15972
15973 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
15974 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
15975 All callers changed.
15976
15977 * w32.c (_wsa_errlist): Use braces for struct initializers.
15978
15979 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
15980 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
15981 All callers changed.
15982 (string_buffer_position): Likewise. Also, make static (it's never
15983 used outside xdisp.c).
15984 (cursor_row_p): Remove parameter `w', unused since
15985 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
15986 (decode_mode_spec): Remove parameter `precision', introduced during
15987 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
15988 All callers changed.
15989
15990 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15991
15992 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
15993
15994 2011-03-27 Anders Lindgren <andlind@gmail.com>
15995
15996 * nsterm.m (ns_menu_bar_is_hidden): New variable.
15997 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
15998 (ns_update_auto_hide_menu_bar): New functions.
15999 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
16000 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
16001 ns_constrain_all_frames.
16002 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
16003 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
16004
16005 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16006
16007 * nsmenu.m (runDialogAt): Remove argument to timer_check.
16008
16009 2011-03-27 Glenn Morris <rgm@gnu.org>
16010
16011 * syssignal.h: Replace RETSIGTYPE with void.
16012 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
16013 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
16014 Replace SIGTYPE with void everywhere.
16015 * s/usg5-4-common.h (SIGTYPE): Remove definition.
16016 * s/template.h (SIGTYPE): Remove commented out definition.
16017
16018 2011-03-26 Eli Zaretskii <eliz@gnu.org>
16019
16020 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
16021 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
16022
16023 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
16024
16025 * w32.c (read_unc_volume): Use parameter `henum', instead of
16026 global variable `wget_enum_handle'.
16027
16028 * keymap.c (describe_vector): Remove parameters `indices' and
16029 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
16030 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
16031
16032 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
16033
16034 * keyboard.c (timer_check): Remove parameter `do_it_now',
16035 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
16036 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
16037 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
16038
16039 * keyboard.c (read_char):
16040 * w32menu.c (w32_menu_display_help):
16041 * xmenu.c (show_help_event, menu_help_callback):
16042 Adjust calls to `show_help_echo'.
16043
16044 * gtkutil.c (xg_maybe_add_timer):
16045 * keyboard.c (readable_events):
16046 * process.c (wait_reading_process_output):
16047 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
16048
16049 * insdel.c (adjust_markers_gap_motion):
16050 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
16051 (gap_left, gap_right): Don't call it.
16052
16053 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
16054
16055 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
16056 incurred during fontification.
16057
16058 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
16059
16060 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
16061 (DEFVAR_PER_BUFFER): Don't pass it.
16062
16063 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
16064 (scrolling_window): Don't pass it.
16065
16066 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
16067
16068 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
16069
16070 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
16071 and `suffix'.
16072 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
16073 of variables specific to SELinux and computation of `encoded_absname'.
16074
16075 * image.c (XPutPixel): Remove unused variable `height'.
16076
16077 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
16078
16079 * unexw32.c (get_section_info): Remove unused variable `section'.
16080
16081 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
16082 (system_process_attributes): Remove unused variable `sess'.
16083 (sys_read): Remove unused variable `err'.
16084
16085 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
16086 (w32_wnd_proc): Remove unused variable `isdead'.
16087 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
16088 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
16089 (x_create_tip_frame): Remove unused variable `tem'.
16090
16091 * w32inevt.c (w32_console_read_socket):
16092 Remove unused variable `no_events'.
16093
16094 * w32term.c (x_draw_composite_glyph_string_foreground):
16095 Remove unused variable `width'.
16096
16097 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
16098
16099 * w32term.c (x_set_glyph_string_clipping):
16100 Don't pass uninitialized region to CombineRgn.
16101
16102 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
16103
16104 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
16105 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
16106 (Fx_close_connection): Remove unused variable `i'.
16107
16108 * w32font.c (w32font_draw): Return number of glyphs.
16109 (w32font_open_internal): Remove unused variable `i'.
16110 (w32font_driver): Add missing initializer.
16111
16112 * w32menu.c (utf8to16): Remove unused variable `utf16'.
16113 (fill_in_menu): Remove unused variable `items_added'.
16114
16115 * w32term.c (last_mouse_press_frame): Remove static global variable.
16116 (w32_clip_to_row): Remove unused variable `f'.
16117 (x_delete_terminal): Remove unused variable `i'.
16118
16119 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
16120 (NOTHING): Remove unused static global variable.
16121 (uniscribe_check_otf): Remove unused variable `table'.
16122 (uniscribe_font_driver): Add missing initializers.
16123
16124 2011-03-23 Julien Danjou <julien@danjou.info>
16125
16126 * term.c (Fsuspend_tty, Fresume_tty):
16127 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
16128 * window.c (temp_output_buffer_show):
16129 * insdel.c (signal_before_change):
16130 * frame.c (Fhandle_switch_frame):
16131 * fileio.c (Fdo_auto_save):
16132 * emacs.c (Fkill_emacs):
16133 * editfns.c (save_excursion_restore):
16134 * cmds.c (internal_self_insert):
16135 * callint.c (Fcall_interactively):
16136 * buffer.c (Fkill_all_local_variables):
16137 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
16138 Use Frun_hooks.
16139 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
16140 unconditionally since it does the check itself.
16141
16142 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
16143
16144 Fix more problems found by GCC 4.5.2's static checks.
16145
16146 * coding.c (encode_coding_raw_text): Avoid unnecessary test
16147 the first time through the loop, since we know p0 < p1 then.
16148 This also avoids a gcc -Wstrict-overflow warning.
16149
16150 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
16151 leading to a memory leak, possible in functions like
16152 load_charset_map_from_file that can allocate an unbounded number
16153 of objects (Bug#8318).
16154
16155 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
16156 that could (at least in theory) be that large.
16157
16158 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
16159 This is less likely to overflow, and avoids undefined behavior if
16160 overflow does occur. All callers changed. Use strtoul to scan
16161 for the unsigned long integer.
16162 (pint2hrstr): Simplify and tune code slightly.
16163 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
16164
16165 * scroll.c (do_scrolling): Work around GCC bug 48228.
16166 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
16167
16168 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
16169 This also avoids a warning with gcc -Wstrict-overflow.
16170 (validate_x_resource_name): Simplify count usage.
16171 This also avoids a warning with gcc -Wstrict-overflow.
16172
16173 * fileio.c (Fcopy_file): Report error if fchown or fchmod
16174 fail (Bug#8306).
16175
16176 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
16177
16178 * process.c (Fmake_network_process): Use socklen_t, not int,
16179 where POSIX says socklen_t is required in portable programs.
16180 This fixes a porting bug on hosts like 64-bit HP-UX, where
16181 socklen_t is wider than int (Bug#8277).
16182 (Fmake_network_process, server_accept_connection):
16183 (wait_reading_process_output, read_process_output):
16184 Likewise.
16185
16186 * process.c: Rename or move locals to avoid shadowing.
16187 (list_processes_1, Fmake_network_process):
16188 (read_process_output_error_handler, exec_sentinel_error_handler):
16189 Rename or move locals.
16190 (Fmake_network_process): Define label "retry_connect" only if needed.
16191 (Fnetwork_interface_info): Fix pointer signedness.
16192 (process_send_signal): Add cast to avoid pointer signedness problem.
16193 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
16194 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
16195
16196 Make tparam.h and terminfo.c consistent.
16197 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
16198 Include tparam.h instead, since it declares them.
16199 * cm.h (PC): Remove extern decl; tparam.h now does this.
16200 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
16201 * terminfo.c: Include tparam.h, to check interfaces.
16202 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
16203 (tparam): Adjust signature to match interface in tparam.h;
16204 this removes some undefined behavior. Check that outstring and len
16205 are zero, which they always are with Emacs.
16206 * tparam.h (PC, BC, UP): New extern decls.
16207
16208 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
16209 (xftfont_open): Rename locals to avoid shadowing.
16210
16211 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
16212 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
16213 (OTF_TAG_SYM): Omit macro if not needed.
16214 (ftfont_list): Remove unused local.
16215 (get_adstyle_property, ftfont_pattern_entity):
16216 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
16217 Rename locals to avoid shadowing.
16218
16219 * xfont.c (xfont_list_family): Mark var as initialized.
16220
16221 * xml.c (make_dom): Now static.
16222
16223 * composite.c (composition_compute_stop_pos): Rename local to
16224 avoid shadowing.
16225 (composition_reseat_it): Remove unused locals.
16226 (find_automatic_composition, composition_adjust_point): Likewise.
16227 (composition_update_it): Mark var as initialized.
16228 (find_automatic_composition): Mark vars as initialized,
16229 with a FIXME (Bug#8290).
16230
16231 character.h: Rename locals to avoid shadowing.
16232 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
16233 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
16234 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
16235 (BUF_DEC_POS): Be more systematic about renaming local temporaries
16236 to avoid shadowing.
16237
16238 * textprop.c (property_change_between_p): Remove; unused.
16239
16240 * intervals.c (interval_start_pos): Now static.
16241
16242 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
16243
16244 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
16245 Rename locals to avoid shadowing.
16246
16247 * sound.c (wav_play, au_play, Fplay_sound_internal):
16248 Fix pointer signedness.
16249 (alsa_choose_format): Remove unused local var.
16250 (wav_play): Initialize a variable to 0, to prevent undefined
16251 behavior (Bug#8278).
16252
16253 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
16254
16255 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
16256
16257 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
16258 clobbering (Bug#8298).
16259 * sysdep.c (sys_subshell): Likewise.
16260 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
16261
16262 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
16263 This should get cleaned up, so that child_setup has the
16264 same signature on all platforms.
16265
16266 * callproc.c (call_process_cleanup): Now static.
16267 (relocate_fd): Rename locals to avoid shadowing.
16268
16269 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
16270
16271 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
16272 not to be necessary, and produces flickering.
16273
16274 2011-03-20 Glenn Morris <rgm@gnu.org>
16275
16276 * config.in: Remove file.
16277
16278 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
16279
16280 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
16281 are now in src/globals.h.
16282 (syms_of_minibuf): Remove spurious & from previous change.
16283
16284 2011-03-20 Leo Liu <sdl.web@gmail.com>
16285
16286 * minibuf.c (completing-read-function): New variable.
16287 (completing-read-default): Rename from completing-read.
16288 (completing-read): Call completing-read-function.
16289
16290 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
16291
16292 * xfaces.c (Fx_load_color_file):
16293 Read color file from absolute filename (bug#8250).
16294
16295 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
16296
16297 * makefile.w32-in: Update dependencies.
16298
16299 2011-03-17 Eli Zaretskii <eliz@gnu.org>
16300
16301 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
16302
16303 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
16304
16305 Fix more problems found by GCC 4.5.2's static checks.
16306
16307 * process.c (make_serial_process_unwind, send_process_trap):
16308 (sigchld_handler): Now static.
16309
16310 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
16311 That way, the code declares only the vars that it needs.
16312 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
16313 * s/cygwin.h (PTY_ITERATION): Likewise.
16314 * s/darwin.h (PTY_ITERATION): Likewise.
16315 * s/gnu-linux.h (PTY_ITERATION): Likewise.
16316
16317 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
16318 * process.c (allocate_pty): Don't declare stb unless it's needed.
16319
16320 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
16321 (CONSTANTLIM): Remove; unused.
16322 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
16323 Define only if needed.
16324
16325 * unexelf.c (unexec): Name an expression,
16326 to avoid gcc -Wbad-function-cast warning.
16327 Use a different way to cause a compilation error if anyone uses
16328 n rather than nn, a way that does not involve shadowing.
16329 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
16330
16331 * deps.mk (unexalpha.o): Remove; unused.
16332
16333 New file unexec.h, the (simple) interface for unexec (Bug#8267).
16334 * unexec.h: New file.
16335 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
16336 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
16337 Depend on unexec.h.
16338 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
16339 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
16340 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
16341 Change as necessary to match prototype in unexec.h.
16342
16343 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
16344 shadowing.
16345 (back_comment, skip_chars): Mark vars as initialized.
16346
16347 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
16348 Rename locals to avoid shadowing.
16349
16350 * lread.c (read1): Rewrite so as not to use empty "else".
16351 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
16352
16353 * print.c (Fredirect_debugging_output): Fix pointer signedess.
16354
16355 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
16356 warning when compiling print.c.
16357
16358 * font.c (font_unparse_fcname): Abort in an "impossible" situation
16359 instead of using an uninitialized var.
16360 (font_sort_entities): Mark var as initialized.
16361
16362 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
16363
16364 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
16365 pointers to constants.
16366 (font_parse_fcname): Remove unused vars.
16367 (font_delete_unmatched): Now static.
16368 (font_get_spec): Remove; unused.
16369 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
16370 (font_update_drivers, Ffont_get_glyphs, font_add_log):
16371 Rename or move locals to avoid shadowing.
16372
16373 * fns.c (require_nesting_list, require_unwind): Now static.
16374 (Ffillarray): Rename locals to avoid shadowing.
16375
16376 * floatfns.c (domain_error2): Define only if needed.
16377 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
16378
16379 * alloc.c (mark_backtrace): Move decl from here ...
16380 * lisp.h: ... to here, so that it can be checked.
16381
16382 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
16383 (Fdefvar): Rewrite so as not to use empty "else".
16384 (lisp_indirect_variable): Name an expression,
16385 to avoid gcc -Wbad-function-cast warning.
16386 (Fdefvar): Rename locals to avoid shadowing.
16387
16388 * callint.c (quotify_arg, quotify_args): Now static.
16389 (Fcall_interactively): Rename locals to avoid shadowing.
16390 Use const pointer when appropriate.
16391
16392 * lisp.h (get_system_name, get_operating_system_release):
16393 Move decls here, to check interfaces.
16394 * process.c (get_operating_system_release): Move decl to lisp.h.
16395 * xrdb.c (get_system_name): Likewise.
16396 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
16397 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
16398 some of which prompt warnings from gcc -Wbad-function-cast.
16399 (Fformat_time_string, Fencode_time, Finsert_char):
16400 (Ftranslate_region_internal, Fformat):
16401 Rename or remove local vars to avoid shadowing.
16402 (Ftranslate_region_internal): Mark var as initialized.
16403
16404 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
16405 avoid shadowing.
16406
16407 * lisp.h (eassert): Check that the argument compiles, even if
16408 ENABLE_CHECKING is not defined.
16409
16410 * data.c (Findirect_variable): Name an expression, to avoid
16411 gcc -Wbad-function-cast warning.
16412 (default_value, arithcompare, arith_driver, arith_error): Now static.
16413 (store_symval_forwarding): Rename local to avoid shadowing.
16414 (Fmake_variable_buffer_local, Fmake_local_variable):
16415 Mark variables as initialized.
16416 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
16417
16418 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
16419 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
16420 Rename locals to avoid shadowing.
16421 (mark_stack): Move local variables into the #ifdef region where
16422 they're used.
16423 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
16424 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
16425 needed otherwise.
16426 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
16427 (GC_STRING_CHARS): Remove; not used.
16428 (Fmemory_limit): Cast sbrk's returned value to char *.
16429
16430 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
16431 avoids undefined behavior in theory.
16432
16433 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
16434
16435 Use functions, not macros, for up- and down-casing (Bug#8254).
16436 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
16437 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
16438 to use the following functions instead of these macros.
16439 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
16440 EMACS_INT, since callers assume the returned value fits in int.
16441 (upcase1): Likewise, for UPCASE_TABLE.
16442 (uppercasep, lowercasep, upcase): New static inline functions.
16443 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
16444 the race-condition problem in the old DOWNCASE.
16445
16446 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
16447 Rename locals to avoid shadowing.
16448 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
16449 (regex_compile, re_search_2, re_match_2_internal):
16450 Remove unused local vars.
16451 (FREE_VAR): Rewrite so as not to use empty "else",
16452 which gcc can warn about.
16453 (regex_compile, re_match_2_internal): Mark locals as initialized.
16454 (RETALLOC_IF): Define only if needed.
16455 (WORDCHAR_P): Likewise. This one is never needed, but is used
16456 only in a comment talking about a compiler bug, so put inside
16457 the #if 0 of that comment.
16458 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
16459 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
16460 Remove; unused.
16461
16462 * search.c (boyer_moore): Rename locals to avoid shadowing.
16463 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
16464 (PREV_CHAR_BOUNDARY): Likewise.
16465
16466 * search.c (simple_search): Remove unused var.
16467
16468 * dired.c (compile_pattern): Move decl from here ...
16469 * lisp.h: ... to here, so that it can be checked.
16470 (struct re_registers): New forward decl.
16471
16472 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
16473
16474 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
16475 All uses changed.
16476 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
16477 Rename locals to avoid shadowing.
16478 (Fvertical_motion): Mark locals as initialized.
16479
16480 * casefiddle.c (casify_object, casify_region): Now static.
16481 (casify_region): Mark local as initialized.
16482
16483 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
16484
16485 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
16486 New macros, so that the caller can use some names other than
16487 gcpro1, gcpro2, etc.
16488 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
16489 of the new macros.
16490 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
16491 argument, for consistency with GCPRO2_VAR, etc: it is now the
16492 prefix of the variable, not the variable itself. All uses
16493 changed.
16494 * dired.c (directory_files_internal, file_name_completion):
16495 Rename locals to avoid shadowing.
16496
16497 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
16498 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
16499 dired.c's scmp function, had undefined behavior.
16500 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
16501 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
16502 * buffer.h: ... to here, because these macros use current_buffer,
16503 and the new implementation with inline functions needs to have
16504 current_buffer in scope now, rather than later when the macros
16505 are used.
16506 (downcase, upcase1): New static inline functions.
16507 (DOWNCASE, UPCASE1): Reimplement using these functions.
16508 This avoids undefined behavior in expressions like
16509 DOWNCASE (x) == DOWNCASE (y), which previously suffered
16510 from race conditions in accessing the global variables
16511 case_temp1 and case_temp2.
16512 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
16513 * lisp.h (case_temp1, case_temp2): Remove their decls.
16514 * character.h (ASCII_CHAR_P): Move from here ...
16515 * lisp.h: ... to here, so that the inline functions mentioned
16516 above can use them.
16517
16518 * dired.c (directory_files_internal_unwind): Now static.
16519
16520 * fileio.c (file_name_as_directory, directory_file_name):
16521 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
16522 Now static.
16523 (file_name_as_directory): Use const pointers when appropriate.
16524 (Fexpand_file_name): Likewise. In particular, newdir might
16525 point at constant storage, so make it a const pointer.
16526 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
16527 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
16528 signedness issues.
16529 (Fset_file_times, Finsert_file_contents, auto_save_error):
16530 Rename locals to avoid shadowing.
16531
16532 * minibuf.c (choose_minibuf_frame_1): Now static.
16533 (Ftry_completion, Fall_completions): Rename or remove locals
16534 to avoid shadowing.
16535
16536 * marker.c (bytepos_to_charpos): Remove; unused.
16537
16538 * lisp.h (verify_bytepos, count_markers): New decls,
16539 so that gcc does not warn that these functions aren't declared.
16540
16541 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
16542 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
16543 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
16544 (copy_text): Remove unused local var.
16545
16546 * filelock.c (within_one_second): Now static.
16547 (lock_file_1): Rename local to avoid shadowing.
16548
16549 * buffer.c (fix_overlays_before): Mark locals as initialized.
16550 (fix_start_end_in_overlays): Likewise. This function should be
16551 simplified by using pointers-to-pointers, but that's a different
16552 matter.
16553 (switch_to_buffer_1): Now static.
16554 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
16555 (report_overlay_modification): Rename locals to avoid shadowing.
16556
16557 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
16558 Fix pointer signedness issue.
16559 (sys_subshell): Mark local as volatile if checking for lint,
16560 to suppress a gcc -Wclobbered warning that does not seem to be right.
16561 (MAXPATHLEN): Define only if needed.
16562
16563 * process.c (serial_open, serial_configure): Move decls from here ...
16564 * systty.h: ... to here, so that they can be checked.
16565
16566 * fns.c (get_random, seed_random): Move extern decls from here ...
16567 * lisp.h: ... to here, so that they can be checked.
16568
16569 * sysdep.c (reset_io): Now static.
16570 (wait_for_termination_signal): Remove; unused.
16571
16572 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
16573 (copy_keymap_item, append_key, push_text_char_description):
16574 Now static.
16575 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
16576 (DENSE_TABLE_SIZE): Remove; unused.
16577 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
16578 (describe_map_tree):
16579 Rename locals to avoid shadowing.
16580
16581 * keyboard.c: Declare functions static if they are not used elsewhere.
16582 (echo_char, echo_dash, cmd_error, top_level_2):
16583 (poll_for_input, handle_async_input): Now static.
16584 (read_char, kbd_buffer_get_event, make_lispy_position):
16585 (make_lispy_event, make_lispy_movement, apply_modifiers):
16586 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
16587 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
16588 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
16589 (read_key_sequence, read_char): Mark locals as initialized.
16590 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
16591
16592 * keyboard.h (make_ctrl_char): New decl.
16593 (mark_kboards): Move decl here ...
16594 * alloc.c (mark_kboards): ... from here.
16595
16596 * lisp.h (force_auto_save_soon): New decl.
16597
16598 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
16599 (DEFINE_DUMMY_FUNCTION): New macro.
16600 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
16601 Use it.
16602 (main): Add casts to avoid warnings
16603 if GCC considers string literals to be constants.
16604
16605 * lisp.h (fatal_error_signal): Add decl, since it's exported.
16606
16607 * dbusbind.c: Pointer signedness fixes.
16608 (xd_signature, xd_append_arg, xd_initialize):
16609 (Fdbus_call_method, Fdbus_call_method_asynchronously):
16610 (Fdbus_method_return_internal, Fdbus_method_error_internal):
16611 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
16612 (Fdbus_register_signal): Use SSDATA when the context wants char *.
16613
16614 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
16615 if GCC considers string literals to be constants.
16616 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
16617
16618 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16619
16620 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
16621 (print_preprocess, print_object): New macro to fix last change.
16622
16623 * print.c (print_preprocess): Don't forget font objects.
16624
16625 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
16626
16627 * emacs.c (USAGE3): Doc fixes.
16628
16629 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
16630
16631 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
16632 structure.
16633
16634 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
16635
16636 * lisp.h (VWindow_system, Qfile_name_history):
16637 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
16638 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
16639 (w32_system_caret_x, w32_system_caret_y): Declare extern.
16640
16641 * w32select.c: Don't #include "keyboard.h".
16642 (run_protected): Add extern declaration for waiting_for_input.
16643
16644 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
16645 * w32console.c (detect_input_pending, read_input_pending)
16646 (encode_terminal_code):
16647 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
16648 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
16649 (w32_system_caret_y, Qfile_name_history):
16650 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
16651 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
16652 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
16653 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
16654 * w32proc.c (Qlocal, report_file_error):
16655 * w32term.c (Vwindow_system, updating_frame):
16656 * w32uniscribe.c (initialized, uniscribe_font_driver):
16657 Remove unneeded extern declarations.
16658
16659 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
16660
16661 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
16662
16663 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
16664
16665 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
16666 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
16667 These macros can no longer be used for assignment.
16668
16669 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
16670 Assign struct members directly, instead of using BUF_BEGV etc.
16671 (record_buffer_markers, fetch_buffer_markers): New functions for
16672 recording and fetching special buffer markers.
16673 (set_buffer_internal_1, set_buffer_temp): Use them.
16674
16675 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
16676
16677 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
16678
16679 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
16680 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
16681
16682 * xdisp.c (hscroll_window_tree):
16683 (reconsider_clip_changes): Use PT instead of BUF_PT.
16684
16685 2011-03-13 Eli Zaretskii <eliz@gnu.org>
16686
16687 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
16688 $(EMACS_ROOT)/lib/intprops.h.
16689
16690 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
16691
16692 Fix more problems found by GCC 4.5.2's static checks.
16693
16694 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
16695 to unsigned char * to avoid compiler diagnostic.
16696 (xg_free_frame_widgets): Make it clear that a local variable is
16697 needed only if USE_GTK_TOOLTIP.
16698 (gdk_window_get_screen): Make it clear that this macro is needed
16699 only if USE_GTK_TOOLTIP.
16700 (int_gtk_range_get_value): New function, which avoids a diagnostic
16701 from gcc -Wbad-function-cast.
16702 (xg_set_toolkit_scroll_bar_thumb): Use it.
16703 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
16704 diagnostic from gcc -Wbad-function-cast.
16705 (get_utf8_string, xg_get_file_with_chooser):
16706 Rename locals to avoid shadowing.
16707 (create_dialog): Move locals to avoid shadowing.
16708
16709 * xgselect.c (xg_select): Remove unused var.
16710
16711 * image.c (four_corners_best): Mark locals as initialized.
16712 (gif_load): Initialize transparent_p to zero (Bug#8238).
16713 Mark another local as initialized.
16714 (my_png_error, my_error_exit): Mark with NO_RETURN.
16715
16716 * image.c (clear_image_cache): Now static.
16717 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
16718 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
16719 (x_edge_detection): Remove unnecessary cast that
16720 gcc -Wbad-function-cast diagnoses.
16721 (gif_load): Fix pointer signedness.
16722 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
16723 (jpeg_load, gif_load): Rename locals to avoid shadowing.
16724
16725 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
16726
16727 Improve quality of tests for time stamp overflow.
16728 For example, without this patch (encode-time 0 0 0 1 1
16729 1152921504606846976) returns the obviously-bogus value (-948597
16730 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
16731 reports time overflow. See
16732 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
16733 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
16734 * editfns.c: Include limits.h and intprops.h.
16735 (TIME_T_MIN, TIME_T_MAX): New macros.
16736 (time_overflow): Move earlier, to before first use.
16737 (hi_time, lo_time): New functions, for an accurate test for
16738 out-of-range times.
16739 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
16740 (Fget_internal_run_time): Don't assume time_t fits in int.
16741 (make_time): Use list2 instead of Fcons twice.
16742 (Fdecode_time): More accurate test for out-of-range times.
16743 (check_tm_member): New function.
16744 (Fencode_time): Use it, to test for out-of-range times.
16745 (lisp_time_argument): Don't rely on undefined left-shift and
16746 right-shift behavior when checking for time stamp overflow.
16747
16748 * editfns.c (time_overflow): New function, refactoring common code.
16749 (Fformat_time_string, Fdecode_time, Fencode_time):
16750 (Fcurrent_time_string): Use it.
16751
16752 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
16753 * dired.c (make_time): Move to ...
16754 * editfns.c (make_time): ... here.
16755 * systime.h: Note the move.
16756
16757 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16758
16759 * fringe.c (update_window_fringes): Remove unused variables.
16760
16761 * unexmacosx.c (copy_data_segment): Also copy __got section.
16762 (Bug#8223)
16763
16764 2011-03-12 Eli Zaretskii <eliz@gnu.org>
16765
16766 * termcap.c [MSDOS]: Include "msdos.h".
16767 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
16768 Constify `char *' arguments and their references according to
16769 prototypes in tparam.h.
16770
16771 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
16772
16773 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
16774 Adapt all references accordingly.
16775
16776 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
16777
16778 2011-03-11 Tom Tromey <tromey@redhat.com>
16779
16780 * buffer.c (syms_of_buffer): Remove obsolete comment.
16781
16782 2011-03-11 Eli Zaretskii <eliz@gnu.org>
16783
16784 * termhooks.h (encode_terminal_code): Declare prototype.
16785
16786 * msdos.c (encode_terminal_code): Don't declare prototype.
16787
16788 * term.c (encode_terminal_code): Now external again, used by
16789 w32console.c and msdos.c.
16790
16791 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
16792 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
16793
16794 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
16795
16796 Fix some minor problems found by GCC 4.5.2's static checks.
16797
16798 * fringe.c (update_window_fringes): Mark locals as initialized
16799 (Bug#8227).
16800 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
16801
16802 * alloc.c (mark_fringe_data): Move decl from here ...
16803 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
16804 to check its interface.
16805 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
16806
16807 * fontset.c (free_realized_fontset): Now static.
16808 (Fset_fontset_font): Rename local to avoid shadowing.
16809 (fontset_font): Mark local as initialized.
16810 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
16811
16812 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
16813
16814 * xselect.c (x_disown_buffer_selections): Remove; not used.
16815 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
16816 (x_own_selection, Fx_disown_selection_internal): Rename locals
16817 to avoid shadowing.
16818 (x_handle_dnd_message): Remove local to avoid shadowing.
16819
16820 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
16821 so that the caller can use some name other than gcpro1.
16822 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
16823 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
16824 (Fx_backspace_delete_keys_p):
16825 Use them to avoid shadowing, and rename vars to avoid shadowing.
16826 (x_decode_color, x_set_name, x_window): Now static.
16827 (Fx_create_frame): Add braces to silence GCC warning.
16828 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
16829 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
16830 Remove unused locals.
16831 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
16832 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
16833 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
16834 macros.
16835
16836 * xterm.h (x_mouse_leave): New decl.
16837
16838 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
16839 Remove unused functions.
16840 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
16841 (x_calc_absolute_position): Now static.
16842 (XTread_socket): Don't define label "out" unless it's used.
16843 Don't declare local "event" unless it's used.
16844 (x_iconify_frame, x_free_frame_resources): Don't declare locals
16845 unless they are used.
16846 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
16847 (x_fatal_error_signal): Remove; not used.
16848 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
16849 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
16850 (x_error_catcher, x_connection_closed, x_error_handler):
16851 (x_error_quitter, xembed_send_message, x_iconify_frame):
16852 (my_log_handler): Rename locals to avoid shadowing.
16853 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
16854 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
16855
16856 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
16857 Rename or move locals to avoid shadowing.
16858 (tty_defined_color, merge_face_heights): Now static.
16859 (free_realized_faces_for_fontset): Remove; not used.
16860 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
16861 does not deduce is never used uninitialized.
16862 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
16863 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
16864
16865 * terminal.c (store_terminal_param): Now static.
16866
16867 * xmenu.c (menu_highlight_callback): Now static.
16868 (set_frame_menubar): Remove unused local.
16869 (xmenu_show): Rename parameter to avoid shadowing.
16870 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
16871 since they might point to immutable storage.
16872 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
16873 since it's unused otherwise.
16874
16875 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
16876 Add a FIXME, since the code still doesn't look right. (Bug#8215)
16877 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
16878 avoids a gcc -Wuninitialized diagnostic.
16879 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
16880 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
16881 does not deduce are never used uninitialized.
16882
16883 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
16884
16885 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
16886 * window.c (window_loop, size_window):
16887 (run_window_configuration_change_hook, enlarge_window): Likewise.
16888
16889 * window.c (display_buffer): Now static.
16890 (size_window): Mark variables that gcc -Wuninitialized
16891 does not deduce are never used uninitialized.
16892 * window.h (check_all_windows): New decl, to forestall
16893 gcc -Wmissing-prototypes diagnostic.
16894 * dispextern.h (bidi_dump_cached_states): Likewise.
16895
16896 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
16897 shadowing.
16898 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
16899 Include <limits.h>.
16900 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
16901 and to avoid gcc -Wuninitialized warning.
16902 (load_charset_map): Mark variables that gcc -Wuninitialized
16903 does not deduce are never used uninitialized.
16904 (load_charset): Abort instead of using uninitialized var (Bug#8229).
16905
16906 * coding.c (coding_set_source, coding_set_destination):
16907 Use "else { /* comment */ }" rather than "else /* comment */;"
16908 for clarity, and to avoid gcc -Wempty-body warning.
16909 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
16910 a block, when the outer 'i' will do.
16911 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
16912 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
16913 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
16914 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
16915 (Fdecode_sjis_char, Fdefine_coding_system_internal):
16916 Rename locals to avoid shadowing.
16917 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
16918 * coding.c (emacs_mule_char, encode_invocation_designation):
16919 Now static, since they're not used elsewhere.
16920 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
16921 (decode_coding_object, encode_coding_object, detect_coding_system):
16922 (decode_coding_emacs_mule): Mark variables that gcc
16923 -Wuninitialized does not deduce are never used uninitialized.
16924 (detect_coding_iso_2022): Initialize a local variable that might
16925 be used uninitialized. Leave a FIXME because it's not clear that
16926 this initialization is needed. (Bug#8211)
16927 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
16928 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
16929 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
16930 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
16931 Remove unused macros.
16932
16933 * category.c (hash_get_category_set): Remove unused local var.
16934 (copy_category_table): Now static, since it's not used elsewhere.
16935 * character.c (string_count_byte8): Likewise.
16936
16937 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
16938 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
16939
16940 * chartab.c (copy_sub_char_table): Now static, since it's not used
16941 elsewhere.
16942 (sub_char_table_ref_and_range, char_table_ref_and_range):
16943 Rename locals to avoid shadowing.
16944 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
16945
16946 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
16947 (BIDI_BOB): Remove unused macro.
16948
16949 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
16950 deduce are never used uninitialized.
16951 * term.c (encode_terminal_code): Likewise.
16952
16953 * term.c (encode_terminal_code): Now static. Remove unused local.
16954
16955 * tparam.h: New file.
16956 * term.c, tparam.h: Include it.
16957 * deps.mk (term.o, tparam.o): Depend on tparam.h.
16958 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
16959 Move these decls to tparam.h, and make them agree with what
16960 is actually in tparam.c. The previous trick of using incompatible
16961 decls in different modules does not conform to the C standard.
16962 All callers of tparam changed to use tparam's actual API.
16963 * tparam.c (tparam1, tparam, tgoto):
16964 Use const pointers where appropriate.
16965
16966 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
16967 * cm.h (struct cm): Likewise.
16968 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
16969 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
16970 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
16971 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
16972 (turn_on_face, init_tty): Likewise.
16973 * termchar.h (struct tty_display_info): Likewise.
16974
16975 * term.c (term_mouse_position): Rename local to avoid shadowing.
16976
16977 * alloc.c (mark_ttys): Move decl from here ...
16978 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
16979
16980 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
16981
16982 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
16983
16984 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
16985
16986 * search.c (compile_pattern_1): Remove argument regp, unused since
16987 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
16988 (compile_pattern): Don't pass it.
16989
16990 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
16991
16992 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
16993 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
16994 for ! HAVE_GTK3.
16995 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
16996
16997 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
16998
16999 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
17000 gdk_window_get_screen, gdk_window_get_geometry,
17001 gdk_x11_window_lookup_for_display and GDK_KEY_g.
17002 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
17003 (xg_get_pixbuf_from_pixmap): New function.
17004 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
17005 to Pixmap, take frame as parameter, remove GdkColormap parameter.
17006 Call xg_get_pixbuf_from_pixmap instead of
17007 gdk_pixbuf_get_from_drawable.
17008 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
17009 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
17010 (xg_check_special_colors): Use GtkStyleContext and its functions
17011 for HAVE_GTK3.
17012 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
17013 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
17014 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
17015 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
17016 Call gtk_widget_get_preferred_size.
17017 (xg_frame_resized): gdk_window_get_geometry only takes 5
17018 parameters.
17019 (xg_win_to_widget, xg_event_is_for_menubar):
17020 Call gdk_x11_window_lookup_for_display.
17021 (xg_set_widget_bg): New function.
17022 (delete_cb): New function.
17023 (xg_create_frame_widgets): Connect delete-event to delete_cb.
17024 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
17025 (xg_set_background_color): Call xg_set_widget_bg.
17026 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
17027 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
17028 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
17029 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
17030 if ! HAVE_GTK3.
17031 (update_frame_tool_bar): Call gtk_widget_hide.
17032 (xg_initialize): Use GDK_KEY_g.
17033
17034 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
17035 if ! HAVE_GTK3
17036 (x_session_initialize): Call gdk_x11_set_sm_client_id.
17037
17038 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
17039 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
17040 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
17041
17042 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
17043
17044 * w32xfns.c (select_palette): Check success of RealizePalette against
17045 GDI_ERROR, not zero.
17046
17047 See ChangeLog.11 for earlier changes.
17048
17049 ;; Local Variables:
17050 ;; coding: utf-8
17051 ;; End:
17052
17053 Copyright (C) 2011-2012 Free Software Foundation, Inc.
17054
17055 This file is part of GNU Emacs.
17056
17057 GNU Emacs is free software: you can redistribute it and/or modify
17058 it under the terms of the GNU General Public License as published by
17059 the Free Software Foundation, either version 3 of the License, or
17060 (at your option) any later version.
17061
17062 GNU Emacs is distributed in the hope that it will be useful,
17063 but WITHOUT ANY WARRANTY; without even the implied warranty of
17064 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17065 GNU General Public License for more details.
17066
17067 You should have received a copy of the GNU General Public License
17068 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.