* buffer.c (tab-width): Mention that it doesn't control indentation.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
e0c9d565
PE
12013-05-07 Paul Eggert <eggert@cs.ucla.edu>
2
3 Static checking by GCC 4.8.0.
4 * xfns.c (x_get_net_workarea, struct MonitorInfo, free_monitors)
5 (x_get_monitor_for_frame, x_make_monitor_attribute_list)
6 (x_get_monitor_attributes_fallback)
7 (x_get_monitor_attributes_xinerama)
8 (x_get_monitor_attributes_xrandr, x_get_monitor_attributes):
9 Define only if USE_GTK.
10 (free_monitors): Define only if HAVE_XINERAMA || HAVE_XRANDR.
11 (x_get_monitor_attributes_fallback): Omit unused locals.
12 (x_get_monitor_attributes_xinerama, Fx_display_monitor_attributes_list):
13 Use double, not float, to avoid mixed-mode floating point arithmetic.
14
4e3f9230
YM
152013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16 Jan Djärv <jan.h.d@swipnet.se>
17
18 * Makefile.in (XRANDR_LIBS, XRANDR_CFLAGS, XINERAMA_LIBS)
19 (XINERAMA_CFLAGS): New macros.
20 (ALL_CFLAGS, LIBES): Use them.
21
22 * xfns.c: Include <X11/extensions/Xrandr.h> if HAVE_XRANDR, and
23 include <X11/extensions/Xinerama.h> if HAVE_XINERAMA.
24 (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): New variables.
25 (syms_of_xfns): DEFSYM them.
26 (struct MonitorInfo): New struct.
27 (x_get_net_workarea, free_monitors, x_get_monitor_for_frame)
28 (x_make_monitor_attribute_list, x_get_monitor_attributes_fallback)
29 (x_get_monitor_attributes_xrandr, x_get_monitor_attributes)
30 (x_get_monitor_attributes_xinerama): New functions.
31 (Fx_display_monitor_attributes_list): New primitive.
32 (syms_of_xfns): Defsubr it.
33
34 * xterm.h (x_display_info): Add Xatom_net_workarea and
35 Xatom_net_current_desktop.
36
37 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_net_workarea
38 and dpyinfo->Xatom_net_current_desktop.
39
05839b6a
EZ
402013-05-06 Eli Zaretskii <eliz@gnu.org>
41
42 * xdisp.c (pos_visible_p): Use the special code for finding the
43 beginning of a display property or overlay for any "replacing"
44 display property, not just for display strings. This solves
45 incorrect reporting of position by posn-at-point. (Bug#14241)
46
dc4a2ee0
PE
472013-05-06 Paul Eggert <eggert@cs.ucla.edu>
48
5ee94506
PE
49 * unexelf.c: Fix some 32-bit integer problems, notably when debugging.
50 Include <limits.h>, <stdbool.h>, <intprops.h>, <verify.h>.
51 Verify that ElfW (Half) fits in int.
52 (fatal): Use same signature as lisp.h.
53 (UNEXELF_DEBUG): New macro, replacing DEBUG, so that people can
54 configure and build with -DUNEXELF_DEBUG without worrying about
55 other modules that use DEBUG.
56 (DEBUG_LOG) [UNEXELF_DEBUG]: New macro. All debug code that prints
57 possibly-wide integers now uses it instead of plain fprintf.
58 (entry_address): New function, which avoids problems with 32-bit
59 overflow on 64-bit hosts.
60 (OLD_SECTION_H, NEW_SECTION_H, NEW_PROGRAM_H): Use it.
61 (round_up): Don't assume the remainder fits in int.
62 (find_section): Use bool for boolean. Simplify debug code.
63 (unexec): Don't assume file sizes fit in int or size_t.
64 Omit unnecessary trailing newline in 'fatal' format.
65 Use strerror rather than outputting decimal error number.
66 Remove unused code when emacs is not defined;
67 this file relies on Emacs now.
68 Don't assume e_phnum and e_shnum are positive.
69
dc4a2ee0
PE
70 * regex.c: Fix problems when DEBUG is defined.
71 (extract_number, extract_number_and_incr): Define regardless of
72 whether DEBUG is defined; that's simpler and makes the code less
73 likely to go stale in the normal case when DEBUG is not defined.
74 Return int rather than taking an int * arg. All callers changed.
75 (DEBUG_PRINT1, DEBUG_PRINT2, DEBUG_PRINT3, DEBUG_PRINT4):
76 Remove, replacing with ...
77 (DEBUG_PRINT): New macro. All callers changed.
78 (DEBUG_COMPILES_ARGUMENTS): New macro.
79 (print_fastmap, print_partial_compiled_pattern) [DEBUG]:
80 (print_compiled_pattern, print_double_string) [DEBUG]:
81 Use prototype rather than old-style definition.
82 (print_partial_compiled_pattern, print_compiled_pattern) [DEBUG]:
83 (ENSURE_FAIL_STACK, PUSH_FAILURE_REG) [DEBUG]:
84 (POP_FAILURE_REG_OR_COUNT, PUSH_FAILURE_POINT) [DEBUG]:
85 (POP_FAILURE_POINT, re_match_2_internal) [DEBUG]:
86 Don't assume ptrdiff_t, size_t, and long are the same width as int.
87 (POINTER_TO_OFFSET): Return ptrdiff_t, not regoff_t.
88 This matters only when DEBUG is defined.
89
14c7ed05
EZ
902013-05-05 Eli Zaretskii <eliz@gnu.org>
91
92 * xdisp.c (set_iterator_to_next): Set the
93 ignore_overlay_strings_at_pos_p flag only if we are _really_
94 iterating over an overlay string, as indicated by the
95 current.overlay_string_index member. (Bug#14306)
96
e6076b1b
JD
972013-05-05 Jan Djärv <jan.h.d@swipnet.se>
98
99 * nsmenu.m (ns_update_menubar): Move initialization of submenuTitle
100 to where it is used, to avoid autorelease issues (Bug#14050).
101
cbee2131
PE
1022013-05-05 Paul Eggert <eggert@cs.ucla.edu>
103
104 `write-region-inhibit-fsync' defaults to noninteractive (Bug#14273).
105 * fileio.c (syms_of_fileio): Implement this.
106 * filelock.c (create_lock_file): If symbolic links don't work, so
107 we use a regular file as a lock file, do not fsync the lock file;
108 it's not needed.
109
30c7e542
SM
1102013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
111
112 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Move to Elisp.
113 (syms_of_minibuf): Adjust accodingly.
114 * lread.c (Fread):
115 * callint.c (Fcall_interactively): Adjust calls accordingly.
116
5bebd186
EZ
1172013-05-04 Eli Zaretskii <eliz@gnu.org>
118
119 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P): Verify that
30c7e542
SM
120 w->contents is a buffer before computing everything else.
121 Use parentheses to disambiguate last part of the condition.
5bebd186
EZ
122
123 * w32fns.c (w32_wnd_proc): Remove temporary code used to trap
124 assertion violations. (Bug#14062)
125
0fb0a4f3
DR
1262013-05-01 David Reitter <david.reitter@gmail.com>
127
128 * nsfns.m (ns_tooltip): Initialize.
129
9e63b4a5
EZ
1302013-04-28 Eli Zaretskii <eliz@gnu.org>
131
132 * coding.c (decode_coding_gap): Don't remove the character before
133 a newline unless it's a CR character. (Bug#14287)
134
ad60824e
DN
1352013-04-28 Dan Nicolaescu <dann@gnu.org>
136
137 * dispextern.h (struct face): Move enum face_underline_type
138 earlier so that bitfields can be in the same word.
139
edbdcec0
JD
1402013-04-28 Jan Djärv <jan.h.d@swipnet.se>
141
142 * nsfns.m (handlePanelKeys): New function.
143 (EmacsOpenPanel:performKeyEquivalent:)
144 (EmacsSavePanel:performKeyEquivalent:): Call handlePanelKeys to handle
145 arrows/function/control and copy/paste keys (Bug#14296).
146
0208ede7
JL
1472013-04-27 Juri Linkov <juri@jurta.org>
148
149 * callint.c (Fcall_interactively): Call `Qread_number' for
150 interactive code letter `n' instead of using duplicate code.
151 (Bug#14254)
152
b8dd59f7
PE
1532013-04-27 Paul Eggert <eggert@cs.ucla.edu>
154
155 * systime.h (make_timeval): Declare as 'const'.
156
8bd722db
KH
1572013-04-27 Kenichi Handa <handa@gnu.org>
158
159 * font.c (font_open_entity): Always open a font of manageable
160 size.
161
13d0e56f 1622013-04-26 Paul Eggert <eggert@cs.ucla.edu>
cbee2131 163
f780d632
PE
164 Port better to AIX (Bug#14258).
165 * lisp.h (ENUM_BF) [__IBMC__]: Make it 'unsigned int' here, too,
166 to pacify AIX xlc.
167
ec509856
KH
1682013-04-24 Kenichi Handa <handa@gnu.org>
169
170 * coding.c (decode_coding_iso_2022): When an invalid escape
171 sequence is encountered, reset the invocation and designation
172 status to the safest one.
173
84fc48e5
PE
1742013-04-22 Paul Eggert <eggert@cs.ucla.edu>
175
176 * Makefile.in (bootstrap-clean): Remove stamp-h1 too.
177 Without this fix, "make distclean" leaves stamp-h1 behind.
178
806bda47
EC
1792013-04-20 Erik Charlebois <erikcharlebois@gmail.com>
180
181 * w32fns.c (w32_fullscreen_rect): New function to compute the
182 window rectangle for the given fullscreen mode.
183 (w32_wnd_proc): When in a fullscreen mode, WM_WINDOWPOSCHANGING no
184 longer tunes the window size. This keeps the window's edges flush
185 with the screen and allows the taskbar to hide itself in fullboth.
186
187 * w32term.c (w32fullscreen_hook): 'fullboth' now shows without
188 window decorations and uses the entire screen.
189
190 * w32term.h (w32_fullscreen_rect) Add prototype.
191 (struct w32_output): Replace normal_width, normal_height,
192 normal_top, and normal_left members with a single normal_placement
193 struct.
194 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP):
195 Remove macros.
196 (FRAME_NORMAL_PLACEMENT): New macro.
197
9cc2810b
JB
1982013-04-16 Juanma Barranquero <lekktu@gmail.com>
199
200 * minibuf.c (Ftest_completion): Silence compiler warning.
201
fd16b54c
EZ
2022013-04-15 Eli Zaretskii <eliz@gnu.org>
203
204 * w32fns.c (w32_wnd_proc): Add more assertions to investigate
5fbcd237 205 bug#14062.
fd16b54c
EZ
206
207 * frame.h (WINDOW_FRAME): Protect macro and its argument with
208 parentheses.
209
210 * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
211 (CURRENT_HEADER_LINE_HEIGHT, WINDOW_WANTS_MODELINE_P)
212 (WINDOW_WANTS_HEADER_LINE_P): Protect macro arguments with
213 parentheses where appropriate.
214
9e3379a0
PE
2152013-04-14 Paul Eggert <eggert@cs.ucla.edu>
216
217 * keyboard.c (timer_start_idle): Remove no-longer-used local.
218
ddd6b685
EZ
2192013-04-14 Eli Zaretskii <eliz@gnu.org>
220
221 * buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>
222 <left-fringe-width, right-fringe-width, fringes-outside-margins>:
223 Mention in the doc string that setting these variables takes
224 effect only after a call to set-window-buffer. (Bug#14200)
225
29b79ba1
EZ
2262013-04-13 Eli Zaretskii <eliz@gnu.org>
227
228 * indent.c (Fvertical_motion): Don't consider display strings on
229 overlay strings as display strings on the buffer position we
230 started from. This prevents vertical cursor motion from jumping
231 more than one line when there's an overlay string with a display
232 property at end of line.
233 Reported by Karl Chen <Karl.Chen@quarl.org> in
234 http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00362.html.
235
562c6ee9
SM
2362013-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
237
238 * window.c (select_window): `record_buffer' even if window is
239 already selected (bug#14191).
240
fcc1fe85
EZ
2412013-04-11 Eli Zaretskii <eliz@gnu.org>
242
243 * window.c (Fwindow_end): Test more flags, including the buffer's
244 last_overlay_modified flag, to determine whether the window's
245 display is really up-to-date. Prevents the function from
246 returning a stale value. (Bug#14170)
247 (Fwindow_line_height): Fix the test for up-to-date-ness of the
248 current matrix.
249
f009190a
EZ
2502013-04-10 Eli Zaretskii <eliz@gnu.org>
251
252 * frame.c (do_switch_frame): Mark the TTY frame we switch to as
562c6ee9
SM
253 garbaged only if it is not already the top frame on its TTY.
254 This prevents flickering due to constant redrawing of TTY frames when
f009190a
EZ
255 there are GUI frames open in the same session. (Bug#13864)
256
78ce603d
SM
2572013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
258
259 * keyboard.c (timer_start_idle): Call internal-timer-start-idle instead
260 of marking the idle timers directly.
261
a8036e40
SM
2622013-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
263
264 * minibuf.c (Ftest_completion): Ignore non-string/symbol keys in hash
265 tables (bug#14054).
266
7ffe7ef6
SM
2672013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
268
269 * window.c (select_window): Don't record_buffer while the invariant is
270 temporarily broken (bug#14161).
271
272 * fns.c (Fdelq): Don't assume !NILP => CONSP.
273
7d9f6883
EZ
2742013-04-07 Eli Zaretskii <eliz@gnu.org>
275
276 * fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
277
5406cfd9
RF
2782013-04-07 Romain Francoise <romain@orebokech.com>
279
280 Ignore additional platform-specific ACL errors (Bug#13702).
281 * fileio.c (ACL_NOT_WELL_SUPPORTED): New macro copied from gnulib.
282 (Fcopy_file, Fset_file_acl) [HAVE_POSIX_ACL]: Use it.
283
95c0e83b
JD
2842013-03-31 Jan Djärv <jan.h.d@swipnet.se>
285
286 * nsterm.m (ns_mouse_position): Use NS_FRAME_P instead of checking
287 f->output_data.ns.
288
876da980
PE
2892013-04-07 Paul Eggert <eggert@cs.ucla.edu>
290
291 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
292 This bug was introduced by my 2013-02-25 change that simplified
293 data_start configuration. Without this change, on GNU/Linux
294 an Emacs configured with --enable-profiling fails immediately
295 due to a profiler signal.
296 * Makefile.in: Compile with $(PROFILING_CFLAGS), but do not link
297 with these flags. On platforms where special flags are needed
298 when linking temacs, the flags are now in LD_SWITCH_SYSTEM_TEMACS.
299 (ALL_CFLAGS): Remove $(PROFILING_CFLAGS).
300 (.c.o, .m.o): Compile with $(PROFILING_CFLAGS).
301
7452b7bd
DA
3022013-04-07 Dmitry Antipov <dmantipov@yandex.ru>
303
304 Get rid of some platform-specific functions examining window
305 system and its capabilities. This is a partial rework of the
306 2013-04-05 change.
307 * lisp.h (have_menus_p): Remove prototype. This function is
308 replaced with platform-independent window_system_available.
309 (check_window_system): Move to...
310 * frame.h (decode_window_system_frame, window_system_available):
311 ...here, add new prototypes.
312 * frame.c (window_system_available, decode_window_system_frame):
313 New functions.
314 (check_window_system): Platform-independent now.
315 * xterm.h (x_in_use): Remove declaration.
316 (check_x_frame):
317 * w32term.h (check_x_frame):
318 * nsterm.h (check_x_frame): Remove prototypes. This function
319 is replaced with platform-independent decode_window_system_frame.
320 * msdos.c (have_menus_p): Remove.
321 * nsfns.m (check_window_system, have_menus_p, check_ns_frame):
322 Remove platform-specific functions. Use check_window_system,
323 decode_window_system_frame and check_ns_display_info where
324 appropriate. Minor style and comment tweaks.
325 * w32fns.c (w32_in_use, check_window_system, have_menus_p)
326 (check_x_frame): Likewise.
327 * xfns.c (x_in_use, check_window_system, have_menus_p, check_x_frame):
328 Likewise.
329 * fileio.c, fns.c, font.c, fontset.c, image.c, menu.c, nsmenu.m:
330 * nsselect.m, nsterm.m, w32font.c, w32menu.c, xfaces.c, xgselect.c:
331 * xmenu.c, xselect.c: All related users changed.
332
251e9147
KH
3332013-04-03 Kenichi Handa <handa@gnu.org>
334
335 The following changes is to optimize the code for reading UTF-8
336 files.
337
562c6ee9 338 * coding.c (check_ascii): Rename from detect_ascii. Return value
251e9147
KH
339 changed. Check EOL format. Do not call adjust_coding_eol_type
340 here.
341 (check_utf_8): New function.
342 (adjust_coding_eol_type): Do nothing if already adjusted.
343 (detect_coding): Compare the return value of check_ascii with
344 coding->src_bytes. Call adjust_coding_eol_type if necessary.
345 (decode_coding_gap): Optimize for valid UTF-8.
346
8bc369d4
KH
3472013-03-21 Kenichi Handa <handa@gnu.org>
348
349 * coding.c (syms_of_coding): Cancel previous change.
350
351 * insdel.c (insert_from_gap): Fix previous change.
352
73931ad1
DA
3532013-04-05 Dmitry Antipov <dmantipov@yandex.ru>
354
355 Consistently use platform-specific function to detect window system.
356 * lisp.h (check_window_system): New prototype. This function is
357 going to replace check_x, check_w32 and check_ns.
358 (have_menus_p): Mention msdos.c in comment.
359 * fontset.c (check_window_system_func): Remove. Adjust all users.
360 * fontset.h (check_window_system_func): Remove prototype.
361 * nsterm.h (check_ns):
362 * xterm.h (check_x):
363 * w32term.h (check_w32): Likewise.
364 * menu.c (Fx_popup_menu): Use check_window_system.
365 * msdos.c (check_window_system): Define for MS-DOS.
366 * nsfns.m (check_window_system): Define for NS. Adjust all users.
367 * w32fns.c (check_window_system): Likewise for MS-Windows.
368 * xfns.c (check_window_system): Likewise for X.
369 * font.c, frame.c, nsmenu.m, nsselect.m, nsterm.m, w32menu.c:
370 * xfaces.c, xmenu.c: Use check_window_system where appropriate.
371
7216e43b
PE
3722013-04-02 Paul Eggert <eggert@cs.ucla.edu>
373
374 Prefer < to > in range checks such as 0 <= i && i < N.
375 This makes it easier to visualize quantities on a number line.
376 This patch doesn't apply to all such range checks,
377 only to the range checks affected by the 2013-03-24 change.
378 This patch reverts most of the 2013-03-24 change.
379 * alloc.c (xpalloc, Fgarbage_collect):
380 * ccl.c (ccl_driver, resolve_symbol_ccl_program):
381 * character.c (string_escape_byte8):
382 * charset.c (read_hex):
383 * data.c (cons_to_unsigned):
384 * dispnew.c (update_frame_1):
385 * doc.c (Fsubstitute_command_keys):
386 * doprnt.c (doprnt):
387 * editfns.c (hi_time, decode_time_components):
388 * fileio.c (file_offset):
389 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
390 * font.c (font_intern_prop):
391 * frame.c (x_set_alpha):
392 * gtkutil.c (get_utf8_string):
393 * indent.c (check_display_width):
394 * keymap.c (Fkey_description):
395 * lisp.h (FIXNUM_OVERFLOW_P, vcopy):
396 * lread.c (read1):
397 * minibuf.c (read_minibuf_noninteractive):
398 * process.c (wait_reading_process_output):
399 * search.c (Freplace_match):
400 * window.c (get_phys_cursor_glyph):
401 * xdisp.c (redisplay_internal):
402 * xsmfns.c (smc_save_yourself_CB):
403 Prefer < to > for range checks.
404 * dispnew.c (sit_for): Don't mishandle NaNs.
405 This fixes a bug introduced in the 2013-03-24 change.
406 * editfns.c (decode_time_components): Don't hoist comparison.
407 This fixes another bug introduced in the 2013-03-24 change.
408
92759988
DA
4092013-03-31 Dmitry Antipov <dmantipov@yandex.ru>
410
411 * frame.h (struct frame): Drop scroll_bottom_vpos
412 member becaue all real users are dead long ago.
413 (FRAME_SCROLL_BOTTOM_VPOS): Remove.
414 * xdisp.c (redisplay_internal): Adjust user.
415
9a1971bb
GM
4162013-03-30 Darren Ho <darren.hoo@gmail.com> (tiny change)
417
f38ab167
JD
418 * nsmenu.m (showAtX:Y:for:): setLevel to
419 NSPopUpMenuWindowLevel (Bug#13998).
420
6d01f1fe
JD
4212013-03-30 Jan Djärv <jan.h.d@swipnet.se>
422
423 * nsterm.h (ns_get_pending_menu_title, ns_check_menu_open)
424 (ns_check_pending_open_menu): Declare.
425
426 * nsmenu.m (ns_update_menubar): Correct NSTRACE.
427 (x_activate_menubar): Update the menu with title that matches
428 ns_get_pending_menu_title, and call
429 ns_check_pending_openmenu (Bug#12698).
430 (menuWillOpen:): New method.
431 (menuNeedsUpdate:): Add check for ! COCOA || OSX < 10.5 (Bug#12698).
432
433 * nsterm.m (menu_will_open_state, menu_mouse_point)
434 (menu_pending_title): New varaibles.
435 (ns_get_pending_menu_title, ns_check_menu_open)
436 (ns_check_pending_open_menu): New functions.
437
781f4782
DA
4382013-03-29 Dmitry Antipov <dmantipov@yandex.ru>
439
440 * indent.c (current_column_bol_cache): Remove leftover which is not
441 used in Fmove_to_column any more.
442 (current_column, scan_for_column): Adjust users.
443 * keyboard.c (last_point_position_buffer, last_point_position_window):
444 Remove leftovers which are not used for recording undo any more.
445 (command_loop_1, syms_of_keyboard): Adjust users.
446 * xdisp.c (last_max_ascent): Remove leftover which is not used in
447 redisplay_window any more.
448 (move_it_to): Adjust user.
449
1921c31b
JB
4502013-03-29 Juanma Barranquero <lekktu@gmail.com>
451
452 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/filelock.$(O)):
453 Update dependencies.
454
717b8bcd
SM
4552013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
456
457 * lisp.h (save_type, XSAVE_POINTER, set_save_pointer, XSAVE_INTEGER)
458 (set_save_integer, XSAVE_OBJECT, XSAVE_VALUE): Move to avoid
459 forward references.
460
e74aeda8
DA
4612013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
462
463 * window.h (struct window): Replace hchild, vchild and buffer slots
464 with the only contents slot. This is possible because each valid
465 window may have either the child window (in vertical or horizontal
466 combination) or buffer to display (for the leaf window). Using that,
467 a lof of operations to traverse and/or change window hierarchies may
468 be simplified. New member horizontal is used to distinguish between
469 horizontal and vertical combinations of internal windows.
470 (WINDOW_LEAF_P, WINDOW_HORIZONTAL_COMBINATION_P)
471 (WINDOW_VERTICAL_COMBINATION_P): New macros.
472 (WINDOW_VALID_P, WINDOW_LIVE_P): Adjust to match struct window changes.
473 * window.c (wset_hchild, wset_vchild): Remove. Adjust all users.
474 Use contents slot, not buffer, where appropriate.
475 (wset_combination): New function.
476 (wset_buffer): Add eassert.
477 (Fframe_first_window): Simplify the loop reaching first window.
478 (Fwindow_buffer): Use WINDOW_LEAF_P.
479 (Fwindow_top_child): Use WINDOW_VERTICAL_COMBINATION_P.
480 (Fwindow_left_child): Use WINDOW_HORIZONTAL_COMBINATION_P.
481 (unshow_buffer): Convert initial debugging check to eassert.
482 (replace_window, recombine_windows, Fdelete_other_windows_internal)
483 (make_parent_window, window_resize_check, window_resize_apply)
484 (resize_frame_windows, Fsplit_window_internal, Fdelete_window_internal)
485 (Fset_window_configuration, delete_all_child_windows, save_window_save):
486 Adjust to match struct window changes.
487 (window_loop): Check for broken markers in CHECK_ALL_WINDOWS.
488 (mark_window_cursors_off, count_windows, get_leaf_windows)
489 (foreach_window_1): Simplify the loop.
490 * alloc.c (mark_object): Do not check for the leaf window because
491 internal windows has no glyph matrices anyway.
492 * dispnew.c (clear_window_matrices, showing_window_margins_p)
493 (allocate_matrices_for_window_redisplay, fake_current_matrices)
494 (allocate_matrices_for_frame_redisplay, free_window_matrices)
495 (build_frame_matrix_from_window_tree, mirror_make_current)
496 (frame_row_to_window, mirror_line_dance, check_window_matrix_pointers)
497 (update_window_tree, set_window_update_flags): Simplify the loop.
498 (sync_window_with_frame_matrix_rows): Enforce live window.
499 Use contents slot, not buffer, where appropriate.
500 * frame.c (set_menu_bar_lines_1): Use WINDOW_VERTICAL_COMBINATION_P
501 and WINDOW_HORIZONTAL_COMBINATION_P.
502 (make_frame_visible_1): Simplify the loop.
503 Use contents slot, not buffer, where appropriate.
504 * xdisp.c (hscroll_window_tree, mark_window_display_accurate)
505 (redisplay_windows, redisplay_mode_lines, update_cursor_in_window_tree)
506 (expose_window_tree): Likewise.
507 Use contents slot, not buffer, where appropriate.
508 * textprop.c (get_char_property_and_overlay): Add CHECK_LIVE_WINDOW
509 to avoid deleted windows. Use contents slot instead of buffer.
510 * buffer.c, dispextern.h, editfns.c, fileio.c, font.c, fringe.c:
511 * indent.c, insdel.c, keyboard.c, keymap.c, minibuf.c, msdos.c:
512 * nsfns.m, nsmenu.m, nsterm.m, print.c, w32fns.c, w32menu.c, xfaces.c:
513 * xfns.c, xmenu.c: Use contents slot, not buffer, where appropriate.
514
121ab1cd
EZ
5152013-03-28 Eli Zaretskii <eliz@gnu.org>
516
ef454cf7
EZ
517 * w32fns.c (w32_wnd_proc) [ENABLE_CHECKING]: Add code to help
518 identify the reasons for assertion violations in bug#14062 and
519 similar ones.
21e930f8
EZ
520 (Fx_show_tip): Fix compilation error under
521 "--enable-check-lisp-object-type". (Bug#14073)
ef454cf7 522
121ab1cd
EZ
523 * image.c (g_error_free) [WINDOWSNT]: Add DEF_IMGLIB_FN.
524 Reported by <rzl24ozi@gmail.com>.
525
5c89ca24
DA
5262013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
527
528 * xdisp.c (with_echo_area_buffer_unwind_data): Save window
529 start marker...
562c6ee9
SM
530 (unwind_with_echo_area_buffer): ...to restore it here.
531 This is needed to ensure that...
5c89ca24
DA
532 (redisplay_window): ...both window markers are valid here,
533 which is verified by eassert.
534 * editfns.c (save_excursion_save): Do not assume that
535 selected_window always displays the buffer.
c7f53895
DA
536 * buffer.c (Fbuffer_swap_text): Adjust window start markers.
537 Fix comment.
5c89ca24 538
f557c1b1
SM
5392013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
540
541 * casetab.c (init_casetab_once): Don't abuse the ascii eqv table for
542 the upcase table.
543
40693bba 5442013-03-27 rzl24ozi <rzl24ozi@gmail.com> (tiny changes)
545
546 * image.c [WINDOWSNT]: Fix calls to DEF_IMGLIB_FN for SVG function.
547
c86f791f
EZ
5482013-03-27 Eli Zaretskii <eliz@gnu.org>
549
550 * w32proc.c (IsValidLocale) [__GNUC__]: Don't declare prototype,
551 since MinGW's w32api headers do. This avoids compiler warnings.
552
553 * w32.c (FSCTL_GET_REPARSE_POINT) [_MSC_VER || _W64]: Don't define
554 if already defined.
555
c6e72e17
EZ
5562013-03-26 Eli Zaretskii <eliz@gnu.org>
557
558 * w32.c (_REPARSE_DATA_BUFFER): Condition by _MSVC and _W64.
559
54e95010
JD
5602013-03-26 Jan Djärv <jan.h.d@swipnet.se>
561
562 * gtkutil.c (style_changed_cb): Check if frame is live and an
563 X frame (Bug#14038).
564
b88b62de
EZ
5652013-03-26 Eli Zaretskii <eliz@gnu.org>
566
a18d7de6
EZ
567 * w32.c (_PROCESS_MEMORY_COUNTERS_EX) [_WIN32_WINNT < 0x0500]:
568 Define only for _WIN32_WINNT less than 0x0500.
da9dcbb8
EZ
569 (_ANONYMOUS_UNION, _ANONYMOUS_STRUCT) [!_W64]: Don't define for
570 MinGW64.
8f5e14c8
EZ
571 Move inclusion of time.h before sys/time.h, so that MinGW64 could
572 see its own definitions of 'struct timeval' and 'struct timezone'.
a18d7de6 573
b88b62de
EZ
574 Fix incompatibilities between MinGW.org and MinGW64 headers.
575 * w32term.c (WCRANGE, GLYPHSET): Don't define if _W64 is defined.
576
577 * w32.c (REPARSE_DATA_BUFFER): Guard with
578 MAXIMUM_REPARSE_DATA_BUFFER_SIZE being defined.
579
c074e458
JD
5802013-03-25 Jan Djärv <jan.h.d@swipnet.se>
581
582 * xterm.c: Include X11/XKBlib.h
583 (XTring_bell): Use XkbBell if HAVE_XKB (Bug#14041).
584
908589fd
AS
5852013-03-24 Andreas Schwab <schwab@linux-m68k.org>
586
587 * alloc.c (xpalloc, Fgarbage_collect): Reorder conditions that are
588 written backwards.
589 * blockinput.h (input_blocked_p): Likewise.
590 * bytecode.c (exec_byte_code): Likewise.
591 * callproc.c (call_process_kill, call_process_cleanup)
592 (Fcall_process): Likewise.
593 * ccl.c (ccl_driver, resolve_symbol_ccl_program)
594 (Fccl_execute_on_string): Likewise.
595 * character.c (string_escape_byte8): Likewise.
596 * charset.c (read_hex): Likewise.
597 * cm.c (calccost): Likewise.
598 * data.c (cons_to_unsigned): Likewise.
599 * dired.c (directory_files_internal, file_name_completion):
600 Likewise.
601 * dispnew.c (scrolling_window, update_frame_1, Fsleep_for)
602 (sit_for): Likewise.
603 * doc.c (Fsubstitute_command_keys): Likewise.
604 * doprnt.c (doprnt): Likewise.
605 * editfns.c (hi_time, decode_time_components, Fformat): Likewise.
606 * emacsgtkfixed.c: Likewise.
607 * fileio.c (file_offset, Fwrite_region): Likewise.
608 * floatfns.c (Fexpt, fmod_float): Likewise.
609 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
610 Likewise.
611 * font.c (font_intern_prop): Likewise.
612 * frame.c (x_set_alpha): Likewise.
613 * gtkutil.c (get_utf8_string): Likewise.
614 * indent.c (check_display_width): Likewise.
615 * intervals.c (create_root_interval, rotate_right, rotate_left)
616 (split_interval_right, split_interval_left)
617 (adjust_intervals_for_insertion, delete_node)
618 (interval_deletion_adjustment, adjust_intervals_for_deletion)
619 (merge_interval_right, merge_interval_left, copy_intervals)
620 (set_intervals_multibyte_1): Likewise.
621 * keyboard.c (gobble_input, append_tool_bar_item): Likewise.
622 * keymap.c (Fkey_description): Likewise.
623 * lisp.h (FIXNUM_OVERFLOW_P, vcopy): Likewise.
624 * lread.c (openp, read_integer, read1, string_to_number):
625 Likewise.
626 * menu.c (ensure_menu_items): Likewise.
627 * minibuf.c (read_minibuf_noninteractive): Likewise.
628 * print.c (printchar, strout): Likewise.
629 * process.c (create_process, Faccept_process_output)
630 (wait_reading_process_output, read_process_output, send_process)
631 (wait_reading_process_output): Likewise.
632 * profiler.c (make_log, handle_profiler_signal): Likewise.
633 * regex.c (re_exec): Likewise.
634 * regex.h: Likewise.
635 * search.c (looking_at_1, Freplace_match): Likewise.
636 * sysdep.c (get_child_status, procfs_ttyname)
637 (procfs_get_total_memory): Likewise.
638 * systime.h (EMACS_TIME_VALID_P): Likewise.
639 * term.c (dissociate_if_controlling_tty): Likewise.
640 * window.c (get_phys_cursor_glyph): Likewise.
641 * xdisp.c (init_iterator, redisplay_internal, redisplay_window)
642 (try_window_reusing_current_matrix, try_window_id, pint2hrstr):
643 Likewise.
644 * xfns.c (Fx_window_property): Likewise.
645 * xmenu.c (set_frame_menubar): Likewise.
646 * xselect.c (x_get_window_property, x_handle_dnd_message):
647 Likewise.
648 * xsmfns.c (smc_save_yourself_CB): Likewise.
649 * xterm.c (x_scroll_bar_set_handle): Likewise.
650
2bf7d27a
DA
6512013-03-24 Dmitry Antipov <dmantipov@yandex.ru>
652
653 * xfaces.c (Finternal_face_x_get_resource): Allow 3rd (frame) argument
654 to be optional or nil. Adjust comment and convert it to docstring.
655 * xselect.c (Fx_send_client_event): Rename to Fx_send_client_message.
656 * frame.c (display_x_get_resource, Fx_get_resource): Break long line.
657
a9ebfa0b
PE
6582013-03-24 Paul Eggert <eggert@cs.ucla.edu>
659
660 Static checking by GCC 4.8-20130319.
661 * image.c (gif_load): Assume pass < 3 to pacify GCC.
662 * process.c (Fset_process_datagram_address)
663 (Fmake_network_process): Check get_lisp_to_sockaddr_size return value.
664 * xdisp.c (get_char_face_and_encoding):
665 (get_glyph_face_and_encoding): Ensure that *CHAR2B is initialized.
666 (get_glyph_face_and_encoding): Prepare face before possibly using it.
667 (get_per_char_metric): Don't use CHAR2B if it might not be initialized.
668
4f3576ee
KB
6692013-03-24 Ken Brown <kbrown@cornell.edu>
670
789b5e9a
KB
671 * w32fns.c (emacs_abort) [CYGWIN]: Define `_open' as a macro to
672 fix compilation on 64-bit Cygwin, where underscores are not
673 automatically prepended.
674
4f3576ee
KB
675 * w32term.c (w32_initialize): Silence compiler warning.
676
b5b7745f
EZ
6772013-03-23 Eli Zaretskii <eliz@gnu.org>
678
cdc0d0bd
EZ
679 * w32term.c (w32fullscreen_hook): Use FRAME_NORMAL_WIDTH,
680 FRAME_NORMAL_HEIGHT, and FRAME_PREV_FSMODE, instead of static
562c6ee9
SM
681 variables, to save and restore frame dimensions.
682 Use FRAME_NORMAL_LEFT and FRAME_NORMAL_TOP to restore frame position
683 after returning from a 'fullscreen' configuration.
684 use SendMessage instead of PostMessage to send the SC_RESTORE message,
cdc0d0bd
EZ
685 to avoid races between the main thread and the input thread.
686
687 * w32term.h (struct w32_output): New members normal_width,
688 normal_height, normal_top, normal_left, and prev_fsmode.
689 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP)
690 (FRAME_NORMAL_LEFT, FRAME_PREV_FSMODE): New macros to access these
691 members of a frame.
692
b5b7745f
EZ
693 * w32term.c (w32fullscreen_hook): Record last value of the frame's
694 'fullscreen' parameter. Always record previous width and height
695 of the frame, except when switching out of maximized modes, so
696 that they could be restored correctly, instead of resetting to the
697 default frame dimensions. Send SC_RESTORE command to the frame,
698 unless we are going to send SC_MAXIMIZE, to restore the frame
699 resize hints in the mouse pointer shown by the window manager.
700 (Bug#14032)
701
702 * frame.c (get_frame_param): Now extern for WINDOWSNT as well.
703
704 * lisp.h (get_frame_param): Adjust conditions for prototype
705 declaration.
706
a3454eed
KB
7072013-03-22 Ken Brown <kbrown@cornell.edu>
708
709 * unexcw.c: Drop unneeded inclusion of w32common.h.
710 (report_sheap_usage): Declare.
711 (read_exe_header): Add magic numbers for x86_64.
712 (fixup_executable): Fix printf format specifier for unsigned long
713 argument.
714
5a49b79c
DA
7152013-03-22 Dmitry Antipov <dmantipov@yandex.ru>
716
717 * frame.h (struct frame): Put menu_bar_window under #ifdef
718 because this member is not needed when X toolkit is in use.
719 (fset_menu_bar_window):
720 * dispnew.c (clear_current_matrices, clear_desired_matrices)
721 (free_glyphs, update_frame):
722 * xdisp.c (expose_frame): Likewise.
723 (display_menu_bar): Likewise. Remove redundant eassert.
724 * window.h (WINDOW_MENU_BAR_P): Always define to 0 if X
725 toolkit is in use.
726
d6723bf7
PE
7272013-03-21 Paul Eggert <eggert@cs.ucla.edu>
728
7b1123d8
PE
729 Use functions and constants to manipulate Lisp_Save_Value objects.
730 This replaces code that used macros and strings and token-pasting.
731 The change makes the C source a bit easier to follow,
732 and shrinks the Emacs executable a bit.
733 * alloc.c: Verify some properties of Lisp_Save_Value's representation.
734 (make_save_value): Change 1st arg from string to enum. All callers
735 changed.
736 (INTX): Remove.
737 (mark_object): Use if, not #if, for GC_MARK_STACK.
738 * lisp.h (SAVE_VALUEP, XSAVE_VALUE, XSAVE_POINTER, XSAVE_INTEGER)
739 (XSAVE_OBJECT): Now functions, not macros.
740 (STRING_BYTES_BOUND): Now just a macro, not a constant too;
741 the constant was never used.
742 (SAVE_SLOT_BITS, SAVE_VALUE_SLOTS, SAVE_TYPE_BITS, SAVE_TYPE_INT_INT)
743 (SAVE_TYPE_INT_INT_INT, SAVE_TYPE_OBJ_OBJ, SAVE_TYPE_OBJ_OBJ_OBJ)
744 (SAVE_TYPE_OBJ_OBJ_OBJ_OBJ, SAVE_TYPE_PTR_INT, SAVE_TYPE_PTR_OBJ)
745 (SAVE_TYPE_PTR_PTR, SAVE_TYPE_PTR_PTR_OBJ, SAVE_TYPE_MEMORY):
746 New constants.
747 (struct Lisp_Save_Value): Replace members area, type0, type1, type2,
748 type3 with a single member save_type. All uses changed.
749 (save_type, set_save_pointer, set_save_integer): New functions.
750 * print.c (PRINTX): Remove.
751
d6723bf7
PE
752 * alloc.c: Remove redundant static declarations.
753
5f24fa51
DA
7542013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
755
756 * window.h (struct window): Convert left_col, top_line, total_lines
757 and total_cols from Lisp_Objects to integers. Adjust comments.
758 (wset_left_col, wset_top_line, wset_total_cols, wset_total_lines):
759 Remove.
760 (WINDOW_TOTAL_COLS, WINDOW_TOTAL_LINES, WINDOW_LEFT_EDGE_COL)
761 (WINDOW_TOP_EDGE_LINE): Drop Lisp_Object to integer conversion.
762 * dispnew.c, frame.c, w32fns.c, window.c, xdisp.c, xfns.c:
763 Adjust users where appropriate.
764
42143acd
DA
7652013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
766
767 * frame.h (struct frame): Drop resx and resy because the same data is
768 available from window system-specific output context. Adjust users.
562c6ee9
SM
769 (default_pixels_per_inch_x, default_pixels_per_inch_y):
770 New functions to provide defaults when no window system available.
42143acd 771 (FRAME_RES_X, FRAME_RES_Y): New macros.
562c6ee9 772 (NUMVAL): Move from xdisp.c.
42143acd
DA
773 * font.c (font_pixel_size, font_find_for_lface, font_open_for_lface)
774 (Ffont_face_attributes, Fopen_font):
775 * image.c (gs_load):
776 * w32font.c (fill_in_logfont):
777 * xdisp.c (calc_pixel_width_or_height):
778 * xfaces.c (Fx_family_fonts, set_lface_from_font): Use them.
779 * xsettings.c (apply_xft_settings): Drop frame loop and adjust comment.
780
c0a17406
KH
7812013-03-20 Kenichi Handa <handa@gnu.org>
782
783 * coding.c (syms_of_coding): Initialize disable_ascii_optimization
784 to 1 (temporary workaround until a bug related to ASCII
785 optimization is fixed).
786
095d384d
DA
7872013-03-19 Dmitry Antipov <dmantipov@yandex.ru>
788
789 * window.c (Fwindow_combination_limit, Fset_window_combination_limit):
790 Signal error if window is not internal. Adjust docstring.
791 (delete_all_child_windows): Use combination_limit to save the buffer.
792 (Fset_window_configuration): Adjust accordingly.
cf4bb06d
DA
793 * print.c (syms_of_print): Initialize debugging output not here...
794 (init_print_once): ...but in a new function here.
795 * lisp.h (init_print_once): Add prototype.
796 * emacs.c (main): Add call to init_print_once. Adjust comments.
095d384d 797
748fa866
DA
7982013-03-18 Dmitry Antipov <dmantipov@yandex.ru>
799
800 * window.c (window_resize_check, window_resize_apply)
801 (window_from_coordinates, recombine_windows, set_window_buffer)
802 (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
803 (Fsplit_window_internal, Fdelete_window_internal)
804 (freeze_window_starts): Use bool for booleans.
805 * window.h (window_frame_coordinates, resize_frame_windows)
806 (freeze_window_starts, set_window_buffer): Adjust prototypes.
807
81519fd2
SM
8082013-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
809
810 * dispnew.c (bitch_at_user): Use `user-error'.
811
6db423a9
KB
8122013-03-17 Ken Brown <kbrown@cornell.edu>
813
814 * dispextern.h (RGB_PIXEL_COLOR): Move here from image.c. Use it
815 as return type of image_background. (Bug#13981)
816 * image.c (RGB_PIXEL_COLOR): Move to dispextern.h.
817
8f2906f5
JD
8182013-03-16 Jan Djärv <jan.h.d@swipnet.se>
819
960ce480 820 * nsterm.m (updateFrameSize:): Change resize increments if needed.
6615748a 821 (ns_select): Don't return with result uninitialized.
960ce480 822
8f2906f5
JD
823 * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
824 and getDirectory.
825
81519fd2
SM
826 * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
827 New functions.
8f2906f5
JD
828 (Fns_read_file_name): ret is BOOL. If ! dir_only_p, don't choose
829 directories. If filename is nil, get directory name (Bug#13932).
830 Use getFilename and getDirectory.
831 (getFilename, getDirectory): New methods for EmacsSavePanel and
832 EmacsOpenPanel.
833 (ok:): In EmacsOpenPanel, if we can't choose directories, just return.
834
cded56c1
PE
8352013-03-15 Paul Eggert <eggert@cs.ucla.edu>
836
837 * coding.c (decode_coding_gap): Fix typo caught by static checking.
838
251e9147 8392013-03-15 Kenichi Handa <handa@gnu.org>
8a44e6d1
KH
840
841 * insdel.c (insert_from_gap): New arg text_at_gap_tail.
842 (adjust_after_replace): Make it back to static. Delete the third
843 arg text_at_gap_tail. Cancel the code for handling it.
844
845 * coding.h (struct coding_system): New member eol_seen.
846
847 * coding.c (detect_ascii): New function.
848 (detect_coding): Set coding->head_ascii and coding->eol_seen only
849 when the source bytes are actually scanned. On detecting for
850 coding_category_utf_8_auto, call detect_ascii instead of scanning
851 source bytes directly.
852 (produce_chars): Call insert_from_gap with the new arg 0.
853 (encode_coding): Likewise.
854 (decode_coding_gap): Control ASCII optimization by the variable
855 disable_ascii_optimization instead of #ifndef .. #endif.
856 Deccode EOL format according to coding->eol_seen.
857 (syms_of_coding): Declare disable-ascii-optimization as a Lisp
858 variable.
859
8a44e6d1
KH
860 * lisp.h (adjust_after_replace): Cancel externing it.
861 (insert_from_gap): Adjust prototype.
862
5f795e34
EZ
8632013-03-15 Eli Zaretskii <eliz@gnu.org>
864
865 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
866 FULLSCREEN_MAXIMIZED. (Bug#13935)
867
f258b4be
DA
8682013-03-15 Dmitry Antipov <dmantipov@yandex.ru>
869
870 * region-cache.c (find_cache_boundary, move_cache_gap)
871 (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
872 Simplify debugging check and convert to eassert. Adjust comment.
873 (pp_cache): Put under ENABLE_CHECKING.
874
a5cc4dde
EZ
8752013-03-14 Eli Zaretskii <eliz@gnu.org>
876
877 * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
878 and incorrect code. Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
879 and WM_ACTIVATEAPP.
880 (w32fullscreen_hook): If the frame is visible, reset
881 f->want_fullscreen flag after changing the frame size. If the
882 frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
883 (Bug#13953)
884
3fc5e44a
DC
8852013-03-13 Daniel Colascione <dancol@dancol.org>
886
887 * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
888 too so that these builds can use Cygwin's file conversion
889 functions. (We've been building and linking cygw32.o all along
890 and just not using it.)
891
47d7532e
PE
8922013-03-13 Paul Eggert <eggert@cs.ucla.edu>
893
894 File synchronization fixes (Bug#13944).
895 * Makefile.in (LIB_FDATASYNC): New macro.
896 (LIBES): Use it.
897 * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
898 * fileio.c (Fwrite_region, write_region_inhibit_fsync):
899 Don't worry about HAVE_FSYNC, since a substitute fsync is
900 available if the system lacks one.
901 (Fwrite_regin): Retry fsync if interrupted.
902
c7ffccaf
EZ
9032013-03-13 Eli Zaretskii <eliz@gnu.org>
904
4e2df81d 905 * w32term.c (w32_read_socket): If the Emacs frame is being
c7ffccaf
EZ
906 activated, call w32fullscreen_hook, to make sure the new frame
907 dimensions are in effect. (Bug#13937)
908
8a7debc1
DA
9092013-03-13 Dmitry Antipov <dmantipov@yandex.ru>
910
911 * xdisp.c (init_iterator): Simplify because both character and byte
912 positions are either specified or -1. Add eassert. Adjust comment.
ffcd945e
DA
913 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
914 character and byte positions can be obtained from marker.
8a7debc1 915
7fd8c501
PE
9162013-03-13 Paul Eggert <eggert@cs.ucla.edu>
917
d9df6f40
PE
918 Static checking by Sun C 5.12.
919 * alloc.c (buffer_memory_full) [REL_ALLOC]:
920 * bytecode.c (exec_byte_code):
921 * dispnew.c (init_display):
922 * eval.c (error):
923 * fileio.c (Fsubstitute_in_file_name):
924 * keyboard.c (Fevent_convert_list):
925 * keymap.c (Fsingle_key_description):
926 * term.c (maybe_fatal, fatal):
927 * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
928 * xsmfns.c (Fhandle_save_session):
929 Omit unreachable code.
930 * keymap.c (map_keymap_char_table_item): Cast void * to
931 a function pointer type; the C Standard requires this.
932
7fd8c501
PE
933 * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
934 Include <sys/param.h> unconditionally, as that works elsewhere and
935 is simpler here. Include <sys/sysctl.h> if DARWIN_OS ||
936 __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
937 and FreeBSD now.
938
cb0290df
PE
9392013-03-11 Paul Eggert <eggert@cs.ucla.edu>
940
941 * insdel.c (adjust_after_replace): Use bool for boolean.
942
cbae07d5
SM
9432013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
944
945 * keyboard.c: Move keyboard decoding to read_key_sequence.
946 (decode_keyboard_code): Remove.
947 (tty_read_avail_input): Don't try to decode input.
948 (read_decoded_char): New function.
949 (read_key_sequence): Use it.
950
819e2da9
DC
9512013-03-10 Daniel Colascione <dancol@dancol.org>
952
953 * w32term.h (GUISTR, GUI_ENCODE_FILE, GUI_ENCODE_SYSTEM, GUI_FN)
954 (GUI_SDATA, guichar_t): Macros to abstract out differences between
955 NTGUI_UNICODE and !NTGUI_UNICODE builds, some moved out of
956 w32fns.c.
957
958 * w32term.c (construct_drag_n_drop): Use the above macros to make
959 drag-and-drop work for non-ASCII filenames in cygw32 builds.
960
961 * w32fns.c (x_set_name, x_set_title): Use the above macros to
962 properly display non-ASCII frame titles in cygw32 builds.
963
964 * w32fns.c (Fw32_shell_execute): Use the above macros to properly
965 call ShellExecute in cygw32 builds.
966
967 * w32fn.c (Fx_file_dialog): Use the above macros to simplify the
968 common file dialog code.
969
970 * w32fns.c (Ffile_system_info): Remove from cygw32 builds, which
971 can just use du like other systems.
972
973 * coding.c (from_unicode_buffer): Declare.
974 * coding.c (from_unicode_buffer): Implement.
975
99ec1647
SM
9762013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
977
d2e24f92
SM
978 * lread.c: Minor cleanup.
979 (FROM_FILE_P): New macro.
980 (skip_dyn_bytes, unreadchar, read1): Use it.
981 (read_list): Consolidate duplicated code.
982
99ec1647
SM
983 * bytecode.c (struct byte_stack): Remove `constants' when unused.
984
138c0ae8
EZ
9852013-03-10 Eli Zaretskii <eliz@gnu.org>
986
987 * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
988 (redisplay_internal, set_cursor_from_row, try_window)
989 (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
990 (display_line, notice_overwritten_cursor)
99ec1647
SM
991 (mouse_face_from_buffer_pos, note_mouse_highlight):
992 Use MATRIX_ROW_DISPLAYS_TEXT_P.
138c0ae8 993 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
99ec1647
SM
994 (mouse_face_from_string_pos, fast_find_string_pos):
995 Use MATRIX_ROW_VPOS.
138c0ae8
EZ
996
997 * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
998
999 * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
1000
1001 * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
1002 MATRIX_MODE_LINE_ROW.
1003
1004 * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
1005
c230dd7d
KH
10062013-03-10 handa <handa@gnu.org>
1007
1008 * lisp.h (adjust_after_replace): Extern it.
1009
1010 * coding.c (detect_coding): Cound the heading ASCII bytes in the
1011 case of detection for coding_category_utf_8_auto.
99ec1647
SM
1012 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
1013 Skip decoding if all bytes are ASCII.
c230dd7d
KH
1014
1015 * insdel.c (adjust_after_replace): Make it public. New arg
1016 text_at_gap_tail.
1017 (adjust_after_insert): Call adjust_after_replace with the new arg
1018 value 0.
1019
27a98a62
SM
10202013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
1021
1022 * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
1023 (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
1024 from Elisp via unread-command-events.
1025
1026 * keyboard.c (access_keymap_keyremap): Accept nil return value from
1027 functions to mean "no change".
1028
457882c2
PE
10292013-03-08 Paul Eggert <eggert@cs.ucla.edu>
1030
1031 region-cache.c, scroll.c, search.c: Use bool for booleans.
1032 * lisp.h (compile_pattern):
1033 * scroll.c (do_scrolling, do_direct_scrolling):
1034 * search.c (struct regexp_cache, compile_pattern_1)
1035 (compile_pattern, string_match_1, search_command)
1036 (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
1037 (search_regs_saved, Fregexp_quote):
1038 Use bool for boolean.
1039 * region-cache.c (region_cache_forward, region_cache_backward):
1040 Fix comments to match code: these functions return int, not boolean.
1041
b5426561
DA
10422013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
1043
1044 * search.c (find_newline): Accept start and end byte positions
1045 as arguments and allow -1 if not known.
1046 (find_newline_no_quit): Likewise for start position.
1047 * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
1048 * bidi.c (bidi_find_paragraph_start): Pass byte position to
1049 find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
27a98a62
SM
1050 * editfns.c (Fconstrain_to_field): Break long line.
1051 Adjust call to find_newline.
b5426561
DA
1052 * indent.c (vmotion): Adjust calls to find_newline_no_quit.
1053 Use DEC_BOTH to start next search from the previous buffer
1054 position, where appropriate.
1055 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
1056 (get_visually_first_element, move_it_vertically_backward): Likewise.
1057 Obtain byte position from the display iterator, where appropriate.
1058
0bce5d9e
PE
10592013-03-08 Paul Eggert <eggert@cs.ucla.edu>
1060
1061 print.c, process.c: Use bool for booleans.
1062 * lisp.h (wait_reading_process_output):
1063 * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
1064 (strout, debug_output_compilation_hack, float_to_string, print)
1065 (print_object):
1066 * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
1067 (decode_status, status_message, create_process, create_pty)
1068 (Fmake_network_process, Fnetwork_interface_info)
1069 (wait_reading_process_output, read_process_output)
1070 (write_queue_push, write_queue_pop, process_send_signal)
1071 (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
1072 * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
1073 Use bool for booleans.
1074 * process.c (Fnetwork_interface_list): Remove unused local.
1075 (connect_counter): Now EMACS_INT, not int.
1076
36075a19
DA
10772013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
1078
1079 * bidi.c (bidi_fetch_char): Swap first and second arguments
1080 to match other functions accepting character and byte positions.
1081 Adjust comment.
1082 (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
1083 (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster
1084 when you need just to move to the previous buffer position.
1085 * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
1086
4aae1914
EZ
10872013-03-07 Eli Zaretskii <eliz@gnu.org>
1088
1089 * .gdbinit (prowlims): Display the enabled_p flag of the row.
1090
c54aa166
DA
10912013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
1092
1093 Avoid character to byte conversions in motion subroutines.
1094 * indent.h (compute_motion, vmotion): Add byte position argument.
1095 * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
1096 Add eassert.
1097 (Fcompute_motion): Break long line. Adjust call to compute_motion.
1098 Use list5 for return value.
1099 (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
1100 Adjust comments, style and calls to compute_motion.
1101 (Fvertical_motion): Adjust call to vmotion.
1102 * window.c (Fdelete_other_windows_internal): Record window start
1103 byte position and adjust call to vmotion.
1104 (window_scroll_line_based): Likewise with call to compute_motion.
1105 Use SET_PT_BOTH.
1106 (Frecenter): Adjust calls to vmotion.
1107
3de717bd
DA
11082013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
1109
1110 * lisp.h (list2i, list3i): New functions.
1111 (list4i): Move from window.c and make LISP_INLINE.
1112 * editfns.c (make_lisp_time):
1113 * fns.c (Flocale_info):
1114 * keyboard.c (parse_modifiers):
1115 * xterm.c (x_ewmh_activate_frame): Use list2i.
1116 * instel.c (signal_after_change):
1117 * nsfns.m (Fx_server_version, Fxw_color_values):
1118 * w32fns.c (Fxw_color_values, Fx_server_version):
1119 * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
1120 * fileio.c (Fvisited_file_modtime):
1121 * nsfns.m (Fns_display_usable_bounds):
1122 * w32.c (ltime): Use list4i.
1123
d26e478e
EZ
11242013-03-06 Eli Zaretskii <eliz@gnu.org>
1125
a611149e
EZ
1126 * search.c (find_newline_no_quit): Rename from find_next_newline.
1127 Add commentary.
1128
1129 * lisp.h (find_newline_no_quit): Rename prototype.
1130
1131 * xdisp.c (back_to_previous_line_start)
1132 (forward_to_next_line_start, get_visually_first_element)
1133 (move_it_vertically_backward): Callers of find_newline_no_quit changed.
1134 * indent.c (vmotion): Callers of find_newline_no_quit changed.
1135 * bidi.c (bidi_find_paragraph_start): Callers of
1136 find_newline_no_quit changed.
1137
d26e478e
EZ
1138 * msdos.c: Change encoding to cp850. (Bug#13879)
1139 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
1140
1af1a51a
DA
11412013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
1142
1143 Coding system support cleanup and minor refactoring.
1144 * coding.h (enum coding_result_code): Remove
1145 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
1146 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
1147 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
1148 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
1149 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
1150 (decode_coding_region, encode_coding_region, decode_coding_string):
1151 Remove unused compatibility macros.
1152 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
1153 (record_conversion_result): Adjust user.
1154 (syms_of_coding): Likewise.
1155 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
1156 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
1157 (decode_coding_object): Simplify since xrealloc never returns NULL.
1158 Add eassert.
1159
0bafabe7 11602013-03-06 Paul Eggert <eggert@cs.ucla.edu>
725eb027 1161
9b1c3271 1162 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
0845a75c
PE
1163 * sysdep.c (list_system_processes)
1164 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
9b1c3271 1165 Make it a stub in this case; otherwise the build might fail,
0845a75c 1166 and this code hasn't been tested on such hosts anyway.
725eb027 1167 Problem reported by Nelson H. F. Beebe in
9b1c3271
PE
1168 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
1169 and analyzed by Jérémie Courrèges-Anglas in
1170 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
725eb027 1171
ffc65bee
DA
11722013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
1173
1174 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
1175 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
1176 (get_visually_first_element, move_it_vertically_backward): Ajust users.
1177 * bidi.c (bidi_find_paragraph_start): Likewise.
1178 * indent.c (vmotion): Likewise.
1179
70743157
PE
11802013-03-05 Paul Eggert <eggert@cs.ucla.edu>
1181
1182 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
1183 * filelock.c: Include <c-ctype.h>.
1184 (MAX_LFINFO): New top-level constant.
1185 (lock_info_type): Remove members pid, boot_time. Add members at,
1186 dot, colon. Change user member to be the entire buffer, not a
1187 pointer. This allows us to handle the case where a foreign
1188 pid or boot time exceeds the local range. All uses changed.
1189 (LINKS_MIGHT_NOT_WORK): New constant.
1190 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
1191 (defined_WINDOWSNT): Remove.
1192 (MAKE_LOCK_NAME, file_in_lock_file_name):
1193 Always use .#FILE (not .#-FILE) for the file lock,
1194 even if it is a regular file.
1195 (rename_lock_file): New function.
1196 (create_lock_file): Use it.
1197 (create_lock_file, read_lock_data):
1198 Prefer a symbolic link for the lock file, falling back on a
1199 regular file if symlinks don't work. Do not try to create
1200 symlinks on MS-Windows, due to security hassles. Stick with
1201 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
1202 link, rename, unlink, mkstemp) when creating locks, as a GNUish
1203 host may be using a Windowsish file system, and cannot use
1204 MS-Windows-only system calls. Fall back on mktemp if mkstemp
1205 doesn't work. Don't fail merely because of a symlink-contents
1206 length limit in the current file system; fall back on regular
1207 files. Increase the symlink contents length limit to 8 KiB, this
1208 should be big enough for any real use and doesn't crunch the
1209 stack.
1210 (create_lock_file, lock_file_1, read_lock_data):
1211 Simplify allocation of lock file buffers now that they fit in 8 KiB.
1212 (lock_file_1): Return error number, not bool. All callers changed.
1213 (ELOOP): New macro, if not already defined.
1214 (read_lock_data): Return size of lock file contents, not Lisp object.
1215 All callers changed. Handle a race condition if some other process
1216 replaces a regular-file lock with a symlink lock or vice versa,
1217 while we're trying to read the lock.
1218 (current_lock_owner): Parse contents more carefully, to help avoid
1219 confusing a regular-file lock with some other application's use
1220 of the file. Check for lock file contents being too long, or
1221 not parsing correctly.
1222 (current_lock_owner, lock_file):
1223 Allow foreign pid and boot times that exceed the local range.
1224 (current_lock_owner, lock_if_free, lock_file):
1225 Simplify allocation of lock file contents.
1226 * w32.c (sys_rename_replace): New function, containing most of
1227 the contents of the old sys_rename.
1228 (sys_rename): Use it.
1229 (fchmod): New dummy function.
1230 * w32.h (sys_rename_replace, fchmod): New decls.
1231
05e193f1
EZ
12322013-03-05 Eli Zaretskii <eliz@gnu.org>
1233
1234 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
1235 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
1236 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
1237 <dmantipov@yandex.ru>.
1238
3bfc46eb
DA
12392013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
1240
1241 * composite.c (get_composition_id, fill_gstring_header):
1242 Use make_uninit_vector where appropriate.
1243 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
1244 * xselect.c (clean_local_selection_data): Likewise.
1245
84ac6f9d
PE
12462013-03-04 Paul Eggert <eggert@cs.ucla.edu>
1247
1248 Fix misuse of ImageMagick that caused core dump (Bug#13846).
1249 * image.c (imagemagick_load_image): Calculate height and width
1250 after flattening the image, not before.
1251
42926ec8
DA
12522013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
1253
1254 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
1255 * ftfont.c (ftfont_shape_by_flt): Likewise.
1256 * w32uniscribe.c (uniscribe_shape): Likewise.
1257
b5029e23
PE
12582013-03-02 Paul Eggert <eggert@cs.ucla.edu>
1259
1260 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
1261 The old approach, which fell back on DIR/.#FILE.0 through
1262 DIR/.#FILE.9, had race conditions that could not be easily fixed.
1263 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
1264 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
1265 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
1266 because the locking mechanism was never reliable in that case).
1267 This patch fixes this and other bugs discovered by a code
1268 inspection that was prompted by
1269 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
1270 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
1271 to avoid interoperability problems between the MS-Windows and
1272 non-MS-Windows implementations. MS-Windows and non-MS-Windows
1273 instances of Emacs now ignore each others' locks.
1274 * filelock.c (defined_WINDOWSNT): New constant.
1275 (MAKE_LOCK_NAME, fill_in_lock_file_name):
1276 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
1277 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
1278 regular files on MS-Windows hosts.
1279 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
1280 Use SAFE_ALLOCA to avoid problems with long file names.
1281 (MAX_LFINFO): Now a local constant, not a global macro.
1282 (IS_LOCK_FILE): Remove.
1283 (lock_file_1): Don't inspect errno if symlink call succeeds;
1284 that's not portable.
1285 (lock_file): Document that this function can return if lock
1286 creation fails.
2db41375 1287 (lock_file): Don't access freed storage.
b5029e23 1288
b270d116
AS
12892013-03-02 Andreas Schwab <schwab@linux-m68k.org>
1290
1291 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
1292
81c23309
PE
12932013-03-02 Paul Eggert <eggert@cs.ucla.edu>
1294
1295 * textprop.c: Use bool for booleans.
1296 (validate_interval_range, Fadd_text_properties)
1297 (Fremove_text_properties): Prefer bool to int when either works.
1298
18f2ac09
EZ
12992013-03-02 Eli Zaretskii <eliz@gnu.org>
1300
27a98a62
SM
1301 * textprop.c (Fadd_text_properties, Fremove_text_properties):
1302 If the interval tree changes as a side effect of calling
18f2ac09
EZ
1303 modify_region, re-do processing starting from the call to
1304 validate_interval_range. (Bug#13743)
1305
929aeac6 13062013-02-28 Eli Zaretskii <eliz@gnu.org>
c49e2256
EZ
1307
1308 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
1309 (Bug#13546).
1310
531e70ec
EZ
13112013-02-27 Eli Zaretskii <eliz@gnu.org>
1312
1313 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
1314 _SH_DENYRW flag, instead of emacs_open, to deny any other process
1315 access to the lock file until it is written and closed.
1316 (Bug#13807)
1317
6e65b9cc
PE
13182013-02-27 Paul Eggert <eggert@cs.ucla.edu>
1319
1320 * callint.c (Qcall_interactively):
1321 * macros.c (Qexecute_kbd_macro):
1322 Now static.
1323
3b166f09
BG
13242013-02-26 Bastien Guerry <bzg@gnu.org>
1325
1326 * window.c (Frecenter): Tiny docstring enhancement.
1327
ecc0fdd4
PE
13282013-02-26 Paul Eggert <eggert@cs.ucla.edu>
1329
1330 Minor textprop integer cleanup.
1331 * intervals.h, textprop.c (add_text_properties_from_list):
1332 Return void, not int, since nobody uses the return value.
1333 * textprop.c (validate_plist, add_properties, remove_properties)
1334 (Fadd_text_properties):
1335 Don't assume list length fits in int.
1336 (interval_has_all_properties, interval_has_some_properties)
1337 (interval_has_some_properties_list, add_properties, remove_properties)
1338 (Fadd_text_properties, Fremove_text_properties)
1339 (Fremove_list_of_text_properties, text_property_stickiness):
1340 Use bool for booleans.
1341 (Fadd_text_properties, Fremove_text_properties):
1342 (Fremove_list_of_text_properties):
1343 Reindent do-while as per GNU style.
1344
0248b0d7
EZ
13452013-02-25 Eli Zaretskii <eliz@gnu.org>
1346
343a2aef
EZ
1347 Implement CLASH_DETECTION for MS-Windows.
1348
1349 * filelock.c [WINDOWSNT]: Include w32.h.
1350 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
1351 function of that name. Up-case the macro arguments.
1352 (IS_LOCK_FILE): New macro.
1353 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
1354 (create_lock_file): New function, with body extracted from
1355 lock_file_1.
1356 [WINDOWSNT]: Implement lock files by writing a regular file with
1357 the lock information as its contents.
1358 (read_lock_data): New function, on Posix platforms just calls
1359 emacs_readlinkat.
1360 [WINDOWSNT]: Read the lock info from the file.
1361 (current_lock_owner): Call read_lock_data instead of calling
1362 emacs_readlinkat directly.
1363 (lock_file) [WINDOWSNT]: Run the file name through
1364 dostounix_filename.
1365
1366 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
1367 just check if the process by that PID exists.
1368
1369 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
1370 also present, as doing so will fail to error out if the file
1371 already exists.
1372
1373 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
1374
0248b0d7
EZ
1375 * textprop.c (Fadd_text_properties, Fremove_text_properties)
1376 (Fremove_list_of_text_properties): Skip all of the intervals in
1377 the region between START and END that already have resp. don't
27a98a62
SM
1378 have the requested properties, not just the first one.
1379 Add assertions that the loop afterwards always modifies the
0248b0d7
EZ
1380 properties. (Bug#13743)
1381
b5071fc7
SM
13822013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
1383
1384 * callint.c (Fcall_interactively): Use the right lexical environment
1385 for `interactive' specs (bug#13811).
1386 * eval.c (Feval): Accept a lexical environment.
1387
1ddc2bd6
PE
13882013-02-25 Paul Eggert <eggert@cs.ucla.edu>
1389
1390 Simplify data_start configuration (Bug#13783).
1391 This is a followon simplification to the fix for Bug#13650.
1392 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
1393 (START_FILES): Remove. All uses removed.
1394 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
1395 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
1396 (buildobj.h): Use it.
1397 ($(ALLOBJS)): Depend on globals.h.
1398 (temacs$(EXEEXT)): Use $(ALLOBJS).
1399 * autodeps.mk (ALLOBJS): Move to Makefile.in.
1400 * deps.mk (vm-limit.o):
1401 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
1402 Do not depend on mem-limits.h.
1403 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
1404 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
1405 [__GNUC__ && !ORDINARY_LINK]: Remove.
1406 * mem-limits.h, pre-crt0.c: Remove.
1407 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
1408 * unexcoff.c (etext): New decl.
1409 (make_hdr): Use DATA_START instead of start_of_data.
1410 * vm-limit.c: Move most of mem-limits.h's contents here.
1411 (data_start): New decl. It's OK if this is approximate,
1412 so simplify-away some unnecessary exactness.
1413 (POINTER): Remove; all uses removed.
1414 (data_space_start): Now char *, to avoid casts.
1415 (exceeds_lisp_ptr): New function, replacing the old
1416 EXCEEDS_LISP_PTR macro. All uses changed.
1417 (check_memory_limits): Simplify and remove casts.
1418 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
1419 (memory_warnings): Use data_start instead of start_of_data.
1420
51aa2a8b
AS
14212013-02-24 Andreas Schwab <schwab@linux-m68k.org>
1422
1423 * xdisp.c (set_message): Only check for debug-on-message if STRING
1424 is a string. (Bug#13797)
1425
1938d88c
PE
14262013-02-24 Paul Eggert <eggert@cs.ucla.edu>
1427
1428 Fix regression introduced by July 10 filelock.c patch.
1429 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
1430 2012-07-10 patch to this file. Reported by Eli Zaretskii in
1431 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
1432 and diagnosed by Andreas Schwab in
1433 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
1434
fcee5028
PE
14352013-02-22 Paul Eggert <eggert@cs.ucla.edu>
1436
1437 Assume C89 or better.
1438 * ralloc.c (SIZE, POINTER, NIL):
1439 * vm-limit.c (POINTER):
1440 Remove, replacing all uses with C89 equivalents. These old
1441 symbols were present only for porting to pre-C89 platforms.
1442
d78cf5ed
CB
14432013-02-22 Claudio Bley <claudio.bley@gmail.com>
1444
1445 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
1446 This avoids warning messages reported as part of Bug#13546.
1447
6bcd97a4
KB
14482013-02-21 Ken Brown <kbrown@cornell.edu>
1449
1450 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
1451
b6c2bfff
SM
14522013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
1453
e11dacb5
SM
1454 * sheap.c (report_sheap_usage): Prefer message1_nolog.
1455
b6c2bfff
SM
1456 * keyboard.c (Qcommand_execute): New var.
1457 (command_loop_1, read_char): Use it.
1458 (Fcommand_execute): Remove, replace by an Elisp implementation.
1459 (syms_of_keyboard): Adjust accordingly.
1460
f4ad7ea1 14612013-02-19 Daniel Colascione <dancol@dancol.org>
b6c2bfff 1462
d69f1120
DC
1463 * sheap.c (report_sheap_usage): Use message, not message1, so
1464 that we don't try to create a buffer while we're in the middle
1465 of dumping Emacs. Explain why.
b6c2bfff 1466
2a14a4f1 14672013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
42926ec8 1468
2a14a4f1
DA
1469 * search.c (find_newline): Return byte position in bytepos.
1470 Adjust comment.
b6c2bfff
SM
1471 (find_next_newline_no_quit, find_before_next_newline):
1472 Add bytepos argument.
2a14a4f1
DA
1473 * lisp.h (find_newline, find_next_newline_no_quit)
1474 (find_before_next_newline): Adjust prototypes.
1475 * bidi.c (bidi_find_paragraph_start):
1476 * editfns.c (Fconstrain_to_field, Fline_end_position):
1477 * indent.c (compute_motion, vmotion):
1478 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
1479 (get_visually_first_element, move_it_vertically_backward):
1480 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
1481
872faefb 14822013-02-19 Eli Zaretskii <eliz@gnu.org>
17ddfd15
EZ
1483
1484 * w32proc.c (new_child): Avoid leaking handles if the subprocess
1485 resources were not orderly released.
1486
fd80c659
EZ
14872013-02-17 Eli Zaretskii <eliz@gnu.org>
1488
1489 * xdisp.c (x_draw_vertical_border): For a window that is neither
1490 the leftmost nor the rightmost, redraw both the left and the right
1491 vertical borders. (Bug#13723)
1492
2f73da9c
SM
14932013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1494
1495 * xml.c (init_libxml2_functions):
1496 * sound.c (sound_warning):
1497 * sheap.c (report_sheap_usage):
1498 * process.c (wait_reading_process_output):
1499 * msdos.c (XMenuActivate):
1500 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
1501 * keyboard.c (top_level_1):
1502 * editfns.c (Fmessage, Fmessage_box):
1503 * callint.c (Fcall_interactively):
1504 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
1505
fd9547e8
JD
15062013-02-17 Jan Djärv <jan.h.d@swipnet.se>
1507
1508 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
fd9547e8
JD
1509 * frame.c (syms_of_frame): ... to here.
1510
f277993b
EZ
15112013-02-16 Eli Zaretskii <eliz@gnu.org>
1512
c7939585
EZ
1513 * w32.c (sys_chown): Remove unused function.
1514
cd91fb4b
EZ
1515 * w32term.c <input_signal_count>: Declare 'volatile'
1516 unconditionally. (Bug#9066)
1517
f277993b
EZ
1518 * w32.c (set_errno): Reset h_errno and don't set it to any other
1519 value. Set errno instead.
1520 (check_errno): Reset h_errno.
1521 (sys_socket, socket_to_fd, sys_bind, sys_connect)
1522 (sys_gethostname, sys_getservbyname, sys_getpeername)
1523 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
1524 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
1525 h_errno.
1526 (sys_gethostbyname): Set h_errno only errors detected.
1527
e454145b
PE
15282013-02-15 Paul Eggert <eggert@cs.ucla.edu>
1529
1530 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
1531
bcf7fe2a
EZ
15322013-02-15 Eli Zaretskii <eliz@gnu.org>
1533
ef9c57e2
EZ
1534 * keyboard.c (read_char): Fix calculation of auto-save time out
1535 when auto-save-timeout is less than 4. (Bug#13720)
1536
ef862e20 1537 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
b2af991a 1538 time. Improve diagnostics in DebPrint. (Bug#13546)
ef862e20 1539
bcf7fe2a
EZ
1540 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
1541 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
1542 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
1543 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
1544 make sure errno is set to an appropriate value. (Bug#13546)
1545 (socket_to_fd): Add assertion against indexing fd_info[] with a
1546 value that is out of bounds.
1547 (sys_accept): If fd is negative, do not set up the child_process
1548 structure for reading.
1549
0063fdb1
DA
15502013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
1551
1552 * composite.c (fill_gstring_header): Remove useless prototype.
1553 Break long line.
1554 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
1555 * print.c (PRINTDECLARE, print_object):
1556 * search.c (compile_pattern, fast_looking_at, search_buffer):
1557 (simple_search, boyer_moore, Freplace_match):
1558 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
1559 (get_overlay_arrow_glyph_row, display_mode_element):
1560 (decode_mode_spec_coding, message3):
1561 * xfaces.c (face_at_string_position): Use bool for booleans.
1562 Adjust comments.
1563
648e5523 15642013-02-15 Paul Eggert <eggert@cs.ucla.edu>
974c7646 1565
35b3a27e
PE
1566 Fix AIX port (Bug#13650).
1567 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
1568 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
1569 was #undeffed earlier, so it cannot be used as a macro here.
1570 Use the constant and not the macro.
35b3a27e 1571
648e5523 15722013-02-15 Eli Zaretskii <eliz@gnu.org>
6e432f0c 1573
0e4e7b74
EZ
1574 * w32proc.c (new_child): If no vacant slots are found in
1575 child_procs[], make another pass looking for slots whose process
1576 has exited or died. (Bug#13546)
1577
6e432f0c
EZ
1578 * w32.c (sys_pipe): When failing due to file descriptors above
1579 MAXDESC, set errno to EMFILE.
1580 (_sys_read_ahead): Update cp->status when failing to read serial
1581 communications input, so that the status doesn't stay at
1582 STATUS_READ_IN_PROGRESS. (Bug#13546)
1583
51b3a99c
JD
15842013-02-14 Jan Djärv <jan.h.d@swipnet.se>
1585
1586 * gtkutil.c (tb_size_cb): New function.
1587 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
1588
e31560a7
SM
15892013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
1590
1591 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
1592 an event.
1593
fe336261
SM
15942013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1595
1596 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
1597
5a655b9f
DA
15982013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
1599
1600 * font.c (font_range): Add pos_byte argument. Adjust comment
1601 and break long line.
1602 * font.h (font_range): Adjust prototype.
1603 * composite.c (autocmp_chars): Pass byte position to font_range.
1604 Break long line. Remove useless prototype and format comment.
1605
1a359750
GM
16062013-02-13 Glenn Morris <rgm@gnu.org>
1607
1608 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
1609
01fcc3a5 16102013-02-13 Paul Eggert <eggert@cs.ucla.edu>
4458c255 1611
f53f992a
PE
1612 Improve AIX port some more (Bug#13650).
1613 With this, it should be as good as it was in 23.3, though it's
1614 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
1615 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
1616 * unexaix.c (start_of_text): Remove.
1617 (_data, _text): Declare as char[], not int, as AIX manual suggests.
1618 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
1619 (orig_load_scnptr, orig_data_scnptr):
1620 Now off_t, not long, since they are file offsets.
1621 (make_hdr): Use _data, not start_of_data ().
1622 This is the key part of the fix.
1623 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
1624 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
1625
4458c255
PE
1626 * pre-crt0.c (data_start): Initialize to 1.
1627 This ports to compilers that optimize the external declaration
1628 'int x = 0;' as if it were 'int x;' to shrink the executable.
1629
227be86d
PE
1630 Improve AIX port (Bug#13650).
1631 This doesn't fix the bug, but it makes progress: Emacs builds now.
1632 * unexaix.c: Include inttypes.h, stdarg.h.
1633 (report_error, report_error_1): Mark as _Noreturn.
1634 (report_error): Don't report the wrong errno.
1635 (report_error_1): Now varargs. All callers changed.
1636 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
1637 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
1638 (write_ptr): Use %p to print address rather than %lx and a cast
1639 to unsigned long. Grow buffer a bit, to be safer.
1640
01fcc3a5 16412013-02-13 Eli Zaretskii <eliz@gnu.org>
713bfeaa
EZ
1642
1643 * bidi.c (bidi_resolve_neutral): After finding the next
1644 non-neutral character, accept NEUTRAL_ON type as well, because
1645 directional control characters, such as LRE and RLE, have their
1646 type converted to that by bidi_resolve_weak. This avoids aborts
1647 when LRE/RLE follows a run of neutrals.
1648 (bidi_move_to_visually_next): Assert that return value of
1649 bidi_peek_at_next_level is non-negative. Negative values will
1650 cause an infloop.
1651
83be8524
PE
16522013-02-13 Paul Eggert <eggert@cs.ucla.edu>
1653
1654 Minor getenv-related fixes.
1655 * callproc.c (Fcall_process_region) [!DOS_NT]:
1656 Avoid unnecessary duplicate call to getenv.
1657 * callproc.c (init_callproc):
1658 * dispnew.c (init_display):
1659 * sysdep.c (sys_subshell):
1660 Omit unnecessary cast of getenv or egetenv.
1661
45b2b768
JB
16622013-02-13 Juanma Barranquero <lekktu@gmail.com>
1663
1664 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
1665 Update dependencies.
1666
33b49d71
EZ
16672013-02-12 Eli Zaretskii <eliz@gnu.org>
1668
1669 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
1670 marker's position.
1671 (display_line): Set w->region_showing to the value of
1672 it->region_beg_charpos, not to -1. This fixes redisplay
1673 optimization when cursor is moved up after M->. (Bug#13623)
1674 (Bug#13626)
c4131562
EZ
1675 (try_scrolling): Scroll text up more if point is too close to ZV
1676 and inside the scroll margin. This makes sure point is moved
1677 outside the scroll margin in these cases.
33b49d71
EZ
1678
1679 * window.h (struct window): region_showing can no longer be
1680 negative.
1681
b09a4810
PE
16822013-02-11 Paul Eggert <eggert@cs.ucla.edu>
1683
a84b7c53
PE
1684 Tune by using memchr and memrchr.
1685 * doc.c (Fsnarf_documentation):
1686 * fileio.c (Fsubstitute_in_file_name):
1687 * search.c (find_newline, scan_newline):
1688 * xdisp.c (pos_visible_p, display_count_lines):
1689 Use memchr and memrchr rather than scanning byte-by-byte.
1690 * search.c (find_newline): Rename from scan_buffer.
1691 Omit first arg TARGET, as it's always '\n'. All callers changed.
1692
b09a4810
PE
1693 Clean up read_key_sequence a tiny bit more.
1694 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
1695 (read_key_sequence): Remove unused locals.
1696
99d0d6dc
SM
16972013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1698
1699 Clean up read_key_sequence a bit; reread active keymaps after first event.
1700 * keyboard.c (read_char, read_char_x_menu_prompt)
1701 (read_char_minibuf_menu_prompt):
1702 Replace nmaps+maps with a single `map' arg.
1703 (follow_key): Operate on a single map.
1704 (active_maps): New function.
1705 (test_undefined): Also return true for nil bindings.
1706 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
1707 a single (composed) keymap. Remember `first_event' to choose the right
1708 set of active keymaps. Recompute the set of keymaps after receiving
1709 the first event. Remove GOBBLE_FIRST_EVENT.
1710 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
1711 * keyboard.h (read_char): Update declaration.
1712 * lread.c (read_filtered_event): Adjust call to read_char.
1713
f5e1b680
EZ
17142013-02-11 Eli Zaretskii <eliz@gnu.org>
1715
99d0d6dc
SM
1716 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
1717 Don't use the limitation on backwards movement when lines are truncated
f5e1b680
EZ
1718 in the window. (Bug#13675)
1719
f74de345
DA
17202013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
1721
1722 * marker.c (set_marker_internal): If desired position is passed
1723 as a marker, avoid call to buf_charpos_to_bytepos.
1724 * window.c (Fset_window_point): Omit redundant type checking.
1725 (Fset_window_start): Likewise. Format comment.
1726 (window_scroll_pixel_based): Use set_marker_restricted_both
1727 with character and byte positions obtained from an iterator.
1728 (Fset_window_configuration): Use set_marker_restricted_both.
1729 * xdisp.c (message_dolog): Likewise.
1730
a4ba3963
EZ
17312013-02-10 Eli Zaretskii <eliz@gnu.org>
1732
99d0d6dc
SM
1733 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
1734 When text lines are longer than window's screen lines, don't move back
a4ba3963
EZ
1735 too far. This speeds up some redisplay operations. (Bug#13675)
1736
68643cde
DA
17372013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
1738
1739 * syntax.c (scan_sexps_forward): Fix byte position calculation
1740 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
1741
7ba11bee
PE
17422013-02-10 Paul Eggert <eggert@cs.ucla.edu>
1743
1744 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
1745 that was not needed.
1746
eff1c190
PE
17472013-02-09 Paul Eggert <eggert@cs.ucla.edu>
1748
1749 Minor hashing refactoring.
1750 * fns.c (SXHASH_REDUCE): Move to lisp.h.
1751 (sxhash_float): Return EMACS_UINT, for consistency with the other
1752 hash functions.
1753 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
1754 non-static inline function and therefore can't use static vars.
1755 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
1756 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
1757 with the other hash functions.
1758
6b48c831
EZ
17592013-02-09 Eli Zaretskii <eliz@gnu.org>
1760
4dde2087
EZ
1761 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
1762 XXXXXX part of the temporary file pattern is not downcased even
1763 when w32-downcase-file-names is non-nil. (Bug#13661)
74ba1583 1764
8549f9e8
EZ
1765 * xdisp.c (decode_mode_spec): Remove handling of %t.
1766
6b48c831
EZ
1767 * msdos.c (careadlinkatcwd): Remove.
1768
75a65c7e
SM
17692013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1770
1771 * lread.c (skip_dyn_bytes): New function (bug#12598).
1772 (read1): Use it. Use getc instead of READCHAR to read bytes.
1773 (load_each_byte): Remove. Update users.
1774
8ca30920
DA
17752013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
1776
1777 * search.c (scan_buffer): Calculate end byte position just once.
1778 (scan_newline): Do not recalculate start_byte.
1779 (search_command): Use eassert.
1780 * syntax.c (struct lisp_parse_state): New member location_byte.
1781 (scan_sexps_forward): Record from_byte and avoid redundant
1782 character to byte position calculation ...
1783 (Fparse_partial_sexp): ... here. Break too long line.
1784
25721f5b
DA
17852013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
1786
1787 * lisp.h (make_uninit_vector): New function.
1788 * alloc.c (Fvector, Fmake_byte_code):
1789 * ccl.c (Fregister_ccl_program):
1790 * charset.c (Fdefine_charset_internal, define_charset_internal):
1791 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
1792 * composite.c (syms_of_composite):
1793 * font.c (Fquery_font, Ffont_info, syms_of_font):
1794 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
1795 * ftfont.c (ftfont_shape_by_flt):
1796 * indent.c (recompute_width_table):
1797 * nsselect.m (clean_local_selection_data):
1798 * syntax.c (init_syntax_once):
1799 * w32unsubscribe.c (uniscribe_shape):
1800 * window.c (Fcurrent_window_configuration):
1801 * xfaces.c (Fx_family_fonts):
1802 * xselect.c (selection_data_to_lisp_data): Use it.
1803
9a9d91d9
DA
18042013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
1805
1806 * coding.c (Fdefine_coding_system_internal): Use AREF where
1807 argument is known to be a vector.
1808 * fns.c (Flocale_info): Likewise for ASET.
1809 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
1810 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
1811
6871e574
JD
18122013-02-05 Jan Djärv <jan.h.d@swipnet.se>
1813
1814 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
1815 height.
1816
1817 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
1818 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
1819 updateCollectionBehaviour.
1820
1821 * nsterm.m (NEW_STYLE_FS): Remove.
1822 (ns_last_use_native_fullscreen): New variable.
1823 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
1824 (x_set_window_size): Do not take title bar and tool bar into account
1825 if isFullscreen returns YES.
1826 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
1827 (check_native_fs): New function.
1828 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
1829 (ns_term_init): Remove NEW_STYLE_FS.
1830 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
1831 and tool bar if isFullscreen returns NO.
1832 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
1833 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
1834 with HAVE_NATIVE_FS.
1835 (window:willUseFullScreenPresentationOptions:): New method.
1836 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
1837 Hide toolbar if not enabled (Bug#13444).
1838 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
1839 Restore tool bar if enabled, hide it otherwise (Bug#13444).
1840 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
1841 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
1842 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
1843 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
1844 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
1845 (syms_of_nsterm): Add ns-use-native-fullscreen.
1846
3f011c7f
PE
18472013-02-04 Paul Eggert <eggert@cs.ucla.edu>
1848
1849 * fileio.c (Qchoose_write_coding_system): Now static.
1850
86f7c0fe
EZ
18512013-02-04 Eli Zaretskii <eliz@gnu.org>
1852
1853 * xdisp.c (window_buffer_changed): region_showing can be negative,
1854 which still means region is being displayed.
1855 (redisplay_internal): Resurrect code that forced redisplay of the
99d0d6dc
SM
1856 whole window when showing region and the mark has changed.
1857 Record the new mark position to allow redisplay optimizations.
86f7c0fe
EZ
1858 (display_line): If it->region_beg_charpos is non-zero, set the
1859 window's region_showing member to -1. (Bug#13623) (Bug#13626)
1860
1861 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
1862 not bitfield of 1 bit.
1863
5257b701
DC
18642013-02-03 Daniel Colascione <dancol@dancol.org>
1865
1866 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
1867 daemon mode works on cygw32 when Emacs is installed and not just
1868 during development.
1869
8ea41ea9
PE
18702013-02-02 Paul Eggert <eggert@cs.ucla.edu>
1871
1872 Avoid file time stamp bug on MS-Windows (Bug#13149).
1873 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
1874 as FAT32 doesn't update time stamps when truncating them.
1875 Also, check that a file time stamp is not a multiple of 100 ns;
1876 this should catch all instances of the problem on MS-Windows,
1877 as its native file system resolution is 100 ns or worse, and
1878 checking for a non-multiple of 100 ns should impose only a small
1879 overhead on systems with ns resolution.
1880
94fbc901 18812013-02-02 Eli Zaretskii <eliz@gnu.org>
18a80473 1882
e7ac588e
EZ
1883 Avoid encoding file names on MS-Windows when they need to be run
1884 through dostounix_filename.
1885 * w32.c (normalize_filename): Accept an additional argument
1886 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
1887 downcase it even if w32-downcase-file-names is non-nil.
1888 (dostounix_filename): Accept an additional argument MULTIBYTE and
1889 pass it to normalize_filename.
1890 (emacs_root_dir): Adjust.
1891
1892 * msdos.h (dostounix_filename): Adjust prototype.
1893
1894 * w32.h (dostounix_filename): Adjust prototype.
1895
1896 * msdos.c (dostounix_filename): Accept an additional argument and
1897 ignore it.
1898 (init_environment): Adjust callers of dostounix_filename.
1899
1900 * fileio.c (Ffile_name_directory, file_name_as_directory)
1901 (directory_file_name, Fexpand_file_name)
1902 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
1903 dostounix_filename.
1904 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
1905 non-nil.
1906 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
1907 variables, as egetenv is case-insensitive for DOS_NT.
1908
1909 * dired.c (file_name_completion): Don't call Fdirectory_file_name
1910 with an encoded file name.
1911
99d0d6dc
SM
1912 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
1913 Adjust calls to dostounix_filename.
e7ac588e
EZ
1914
1915 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
1916
1917 * unexw32.c (unexec): Adjust call to dostounix_filename.
1918
1919 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
1920
1921 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
1922 dostounix_filename.
1923
1924 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
1925 dostounix_filename.
1926
e7c3fb06
EZ
1927 * callproc.c (Fcall_process): Make sure program name in PATH and
1928 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
1929 is passed to exec/spawnve, which fails unless the file-name
1930 encoding is UTF-8.
1931
18a80473
EZ
1932 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
1933 even if w32-quote-process-args is nil.
1934
35e85499
PE
19352013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1936
1937 Fix timestamp bug when write-region appends nothing (Bug#13149).
1938 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
1939 the file's time stamp doesn't change if Emacs happens to write nothing
1940 to the file, and on a buggy file system this could cause Emacs to
1941 incorrectly infer that the file system doesn't have the bug.
1942 Avoid this problem by inhibiting the inference in this case.
1943
422ff52b
DA
19442013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
1945
1946 * window.h (struct window): Convert base_line_number, base_line_pos
1947 and column_number_displayed members from Lisp_Object to ptrdiff_t.
1948 Convert region_showing member from Lisp_Object to bitfield.
1949 Remove sequence_number member. Adjust comments.
1950 * window.c (sequence_number): Remove.
1951 (make_window): Initialize column_number_displayed.
1952 * print.c (print_object): Follow the printed representation of
1953 frames and print window pointer to distinguish between windows.
1954 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
1955 * xdisp.c (wset_base_line_number, wset_base_line_pos)
1956 (wset_column_number_displayed, wset_region_showing): Remove.
1957 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
1958 (try_scrolling, try_cursor_movement, redisplay_window)
1959 (try_window_reusing_current_matrix, try_window_id, display_line)
1960 (display_mode_lines, decode_mode_spec): Adjust users.
1961 * .gdbinit (pwinx): Do not print sequence_number.
1962
8654f9d7
PE
19632013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1964
1965 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
1966 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
1967 * dired.c: Include <fcntl.h>.
1968 (open_directory): New function, which uses open and fdopendir
1969 rather than opendir. DOS_NT platforms still use opendir, though.
1970 (directory_files_internal, file_name_completion): Use it.
1971 (file_attributes): New function, with most of the old Ffile_attributes.
1972 (directory_files_internal, Ffile_attributes): Use it.
1973 (file_attributes, file_name_completion_stat): First arg is now fd,
1974 not dir name. All uses changed. Use fstatat rather than lstat +
1975 stat.
1976 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
1977 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
1978 (emacs_readlinkat): New function, with much of the old
1979 Ffile_symlink_p, but with an fd argument for speed.
1980 It uses readlinkat rather than careadlinkatcwd, so that it
1981 need not assume the working directory.
1982 (Ffile_symlink_p): Use it.
1983 * filelock.c (current_lock_owner): Use emacs_readlinkat
1984 rather than emacs_readlink.
1985 * lisp.h (emacs_readlinkat): New decl.
1986 (READLINK_BUFSIZE, emacs_readlink): Remove.
1987 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
1988 (emacs_norealloc_allocator, emacs_readlink): Remove.
1989 This stuff is moved to fileio.c.
1990 * w32.c (fstatat, readlinkat): New functions.
1991 (careadlinkat): Don't check that fd == AT_FDCWD.
1992 (careadlinkatcwd): Remove; no longer needed.
1993
9dbda100
GM
19942013-01-31 Glenn Morris <rgm@gnu.org>
1995
1996 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
20a8c477
GM
1997 (Fwrite_region): Update for new choose_write_coding_system args.
1998 Move the last piece of choose_write_coding_system here. (Bug#13522)
9dbda100
GM
1999 (syms_of_fileio): Add choose-write-coding-system.
2000
3f82a88a 20012013-01-30 Eli Zaretskii <eliz@gnu.org>
224f4ec1
EZ
2002
2003 * w32.c (sys_open): Zero out the flags for the new file descriptor.
2004 (sys_close): Zero out the flags for the file descriptor before
2005 closing it. (Bug#13546)
2006
806fed21 2007 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
99d0d6dc
SM
2008 (logon_network_drive, stat_worker, symlink, chase_symlinks):
2009 Use CharNextExA and CharPrevExA to iterate over file names encoded in
806fed21
EZ
2010 DBCS. (Bug#13553)
2011
6ee4509a
EZ
2012 * w32.c (w32_get_long_filename, init_environment, readlink):
2013 Support file names encoded in DBCS codepages.
26854e9c
EZ
2014 (readlink): Use the current file-name-coding-system, not the ANSI
2015 codepage, to decode and handle targets of symlinks.
6ee4509a 2016
cf01a359
EZ
20172013-01-28 Eli Zaretskii <eliz@gnu.org>
2018
2019 * w32.c (opendir): Now accepts a 'const char *'.
2020
6fd326b7
DA
20212013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
2022
2023 Remove obsolete redisplay code. See the discussion at
2024 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
2025 * dispnew.c (preemption_period, preemption_next_check): Remove.
2026 (Vredisplay_preemption_period): Likewise.
2027 (update_frame, update_single_window, update_window, update_frame_1):
2028 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
2029 used, following the 2012-06-22 change.
2030
d8cd7742
EZ
20312013-01-25 Eli Zaretskii <eliz@gnu.org>
2032
2033 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
2034
266fee4f
DA
20352013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
2036
2037 * font.c (num_fonts): Remove the leftover from old
2038 debugging code. Adjust comment style here and there.
59e624b3
DA
2039 * insdel.c (insert_1): Remove.
2040 * lisp.h (insert_1): Remove prototype.
2041 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
266fee4f 2042
830e46e6 20432013-01-25 Eli Zaretskii <eliz@gnu.org>
6d2851de
EZ
2044
2045 * w32.c (max_filename_mbslen): New function.
2046 (normalize_filename, readdir): Use it to detect locales where ANSI
2047 encoding of file names uses a double-byte character set (DBCS).
2048 If a DBCS encoding is used, advance by characters using
99d0d6dc
SM
2049 CharNextExA, instead of incrementing a 'char *' pointer.
2050 Use _mbslwr instead of _strlwr. (Bug#13515)
6d2851de 2051
81abbb95
EZ
2052 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
2053 request of memory reservation to 1.7GB. (Bug#13065)
2054
830e46e6 20552013-01-25 Andreas Schwab <schwab@linux-m68k.org>
ba14c607
AS
2056
2057 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
2058 at check_extra_latin label. (Bug#13505)
2059
fd3ceb09
DA
20602013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2061
2062 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
2063 Avoid redundant calls to strlen.
2064
edfa7fa0
DA
20652013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2066
2067 Drop async_visible and async_iconified fields of struct frame.
2068 This is possible because async input is gone; for details, see
2069 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
2070 * frame.h (struct frame): Remove async_visible and async_iconified
2071 members, convert garbaged to unsigned bitfield. Adjust comments.
2072 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
2073 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
2074 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
2075 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
2076 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
2077 * w32term.c: Ditto.
2078 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
2079 properly. Likewise for obscured.
2080 * xterm.c: Ditto.
266fee4f 2081 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
edfa7fa0
DA
2082 properly.
2083 * nsterm.m: Ditto.
2084 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
2085
5ad86e34
DA
20862013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2087
2088 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
2089 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
2090
b09cca6a
SM
20912013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
2092
2093 * xdisp.c (message2, message2_nolog): Remove functions.
2094 (message3, message3_nolog): Extract nbytes and multibyteness directly
2095 from the string. Change all callers.
2096 (message3_nolog): Don't set message_enable_multibyte since set_message
2097 will reset it anyway.
2098 (message1, message1_nolog): Use message3.
2099 (vmessage): Use a stack allocated buffer rather than f->message_buf.
2100 (with_echo_area_buffer): Remove last two arguments. Update all callers.
2101 (set_message): Drop all but the second arg, which has to be a string.
2102 (set_message_1): Simplify now that we know that a1 is NULL and the
2103 second arg is a string.
2104 * frame.h (struct frame): Remove `message_buf' field.
2105 Use glyphs_initialized_p instead.
2106 (FRAME_MESSAGE_BUF): Remove macro.
2107 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
2108 * lisp.h (message2, message2_nolog): Remove declarations.
2109 (message3, message3_nolog): Update declarations.
2110 * keyboard.c (read_char_minibuf_menu_text)
2111 (read_char_minibuf_menu_width): Remove vars.
2112 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
2113 to correctly handle multibyte strings.
2114 * frame.c (delete_frame): Don't free message_buf any more.
2115 * editfns.c (message_text, message_length): Remove vars.
2116 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
2117 * fileio.c (auto_save_error): Use message3 instead of message2.
2118 * dispnew.c (adjust_frame_message_buffer): Remove function.
2119
54ab1c5a
EZ
21202013-01-23 Eli Zaretskii <eliz@gnu.org>
2121
2122 * w32term.c (w32fullscreen_hook): Account correctly for the screen
2123 real estate used for the tool bar and the menu bar.
2124
6c27465b
DA
21252013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
2126
2127 * insdel.c (prepare_to_modify_buffer): Force redisplay if
2128 hidden buffer is prepared to modification (Bug#13164).
2129
9d93ce29
DA
21302013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
2131
2132 * window.h (struct window): Change window_end_valid member from
2133 Lisp_Object to a bitfield. Adjust comments.
2134 (wset_window_end_valid): Remove.
2135 * window.c (adjust_window_count): Clear window_end_valid.
2136 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
2137 (Fwindow_line_height, set_window_buffer, Frecenter)
2138 (Fsplit_window_internal, Fdelete_other_windows_internal)
2139 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
2140 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
2141 * xdisp.c (check_window_end, reconsider_clip_changes)
2142 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
2143 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
2144 (find_first_unchanged_at_end_row, try_window_id): Likewise.
2145
1dcb8ea2
DA
21462013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
2147
2148 * xdisp.c (mark_window_display_accurate): Simplify the loop
2149 assuming that the only one of vchild, hchild or buffer window
2150 slots is non-nil. Call mark_window_display_accurate_1 for
2151 the leaf windows only.
2152 (mark_window_display_accurate_1): Always assume leaf window.
2153 Adjust comment.
2154
b41b8a7e
PE
21552013-01-22 Paul Eggert <eggert@cs.ucla.edu>
2156
593a5f2e
PE
2157 * emacs.c (Qkill_emacs_hook): Now static.
2158
b41b8a7e
PE
2159 * fileio.c (Finsert_file_contents): Simplify.
2160 Remove unnecessary assignments and tests.
2161
84e5ed96
EZ
21622013-01-21 Eli Zaretskii <eliz@gnu.org>
2163
2164 * w32.c (acl_set_file): Don't test for errors unless
2165 set_file_security returns FALSE. Avoids spurious errors when
2166 saving files.
2167
2ef88fd4
DA
21682013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
2169
2170 * fileio.c (Finsert_file_contents): Revert code introduced at
2171 2013-01-18 in favor of the simpler and generally better fix.
2172 Save stack space by removing 'buffer' and reusing 'read_buf'
2173 where appropriate.
2174
d7a0a7c9
PE
21752013-01-19 Paul Eggert <eggert@cs.ucla.edu>
2176
2177 * lisp.h (eabs): Define unconditionally (Bug#13419).
2178 The old "#if !defined (eabs)" was an unnecessary revenant of back
2179 when this macro was called "abs". Document 'eabs' better.
2180
795e7a5b 21812013-01-19 Glenn Morris <rgm@gnu.org>
085d34c4
GM
2182
2183 * fns.c (Frandom): Doc fix.
2184
59ac2d13
EZ
21852013-01-19 Eli Zaretskii <eliz@gnu.org>
2186
2187 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
2188 segfault when there are lots of overlays.
2189
2190 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
99d0d6dc
SM
2191 when there are lots of overlays.
2192 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
59ac2d13
EZ
2193 for the details and a way to reproduce.
2194
b3fbb395
PE
21952013-01-19 Paul Eggert <eggert@cs.ucla.edu>
2196
3a955a1f
PE
2197 * fileio.c: Use O_APPEND to append.
2198 This corresponds better to the natural interpretation of "append",
2199 and avoids the need to open the output file twice, or to invoke
2200 lseek when APPEND is neither nil nor a number.
2201 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
2202 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
2203 file possibly twice, and lseeking to its end; this avoids the
2204 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
2205 at the same time: the combination is never needed and apparently
2206 it doesn't work with DOS_NT.
2207
21cd50b8
PE
2208 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
2209 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
2210
b3fbb395
PE
2211 Allow floating-point file offsets.
2212 Problem reported by Vitalie Spinu in
2213 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
2214 * fileio.c (emacs_lseek): Remove.
2215 (file_offset): New function.
2216 (Finsert_file_contents, Fwrite_region): Use it.
2217
73c14218
CY
22182013-01-19 Chong Yidong <cyd@gnu.org>
2219
2220 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
2221 aborting on Fsignal (Bug#13289).
2222
6a9465f3
EZ
22232013-01-19 Eli Zaretskii <eliz@gnu.org>
2224
2225 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
2226 set_file_security as failure due to insufficient privileges.
2227 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
76e9f7b9 2228 (fstat): Return owner and group like 'stat' and 'lstat' do.
6a9465f3 2229
fa705c99
PE
22302013-01-19 Paul Eggert <eggert@cs.ucla.edu>
2231
9fe43ff6
PE
2232 Work around bug in CIFS and vboxsf file systems (Bug#13149).
2233 The bug was observed on Ubuntu operating inside a virtual machine,
2234 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
2235 The workaround introduces a race condition on non-buggy hosts,
2236 but it's an unlikely race and anyway there's a nearly identical
2237 nearby race that can't be fixed.
2238 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
2239 New static vars.
2240 (Fwrite_region): Test for file system time stamp bug.
2241 (init_fileio): New function.
2242 * lisp.h (init_fileio): Declare it.
2243 * emacs.c (main): Call it.
2244
fa705c99
PE
2245 * fileio.c (Finsert_file_contents): Simplify new diagnostic
2246 and make it more consistent with other stat-failure diagnostics.
2247
e07469fa
DA
22482013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
2249
99d0d6dc
SM
2250 Fix crash when inserting data from non-regular files.
2251 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
e07469fa
DA
2252 for the error description produced by valgrind.
2253 * fileio.c (read_non_regular): Rename to read_contents.
2254 Free Lisp_Save_Value object used to pass parameters.
2255 (read_non_regular_quit): Rename to read_contents_quit.
2256 (Finsert_file_contents): Redesign internal file reading loop to adjust
2257 gap and end positions after each read and so help make_gap to work
2258 properly. Do not signal an I/O error too early and so do not leave
2259 not yet decoded characters in a buffer, which was the reason of
2260 redisplay crash. Use list2 to build return value. Adjust comments.
2261
67722112
PE
22622013-01-17 Paul Eggert <eggert@cs.ucla.edu>
2263
2264 Close a race when statting and reading files (Bug#13149).
2265 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
2266 This avoids a race if the file is renamed between stat and open.
2267 This race is not the problem originally noted in Bug#13149;
2268 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
2269
468afbac
DA
22702013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
2271
2272 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
2273 objects, related functions and macros.
2274 (make_save_value): Adjust prototype.
2275 (make_save_pointer): New prototype.
2276 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
2277 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
2278 * alloc.c (format_save_value): Rename to make_save_value.
2279 (make_save_pointer): New function.
2280 (record_xmalloc): Use make_save_pointer.
2281 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
2282 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
2283 Change users of make_save_value to make_save_pointer.
2284 Likewise for format_save_value and make_save_value.
2285
0e70695a
DA
22862013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
2287
2288 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
2289 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
2290 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
2291 debugging stubs.
2292
963ea40f
PE
22932013-01-15 Paul Eggert <eggert@cs.ucla.edu>
2294
2295 * alloc.c (free_save_value): Now static.
2296
3346c1d0
DA
22972013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2298
2299 * keymap.c (map_keymap_internal): Use format_save_value.
2300 (map_keymap_char_table_item): Adjust accordingly.
2301 * fileio.c (non_regular_fd, non_regular_inserted)
2302 (non_regular_nbytes): Remove.
99d0d6dc
SM
2303 (Finsert_file_contents): Convert trytry to ptrdiff_t.
2304 Use format_save_value to pass parameters to read_non_regular.
3346c1d0
DA
2305 (read_non_regular): Use XSAVE_ macros to extract parameters.
2306 Adjust comment.
2307 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
2308 format_save_value.
2309 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
2310
2b30549c
DA
23112013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2312
2313 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
2314 extraction from any Lisp_Save_Value slot. Add type checking.
2315 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
2316 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
2317 * xselect.c: All users changed.
2318
1b971ac1
DA
23192013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2320
2321 Some convenient bits to deal with Lisp_Save_Values.
2322 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
2323 (allocate_misc): Remove prototype.
2324 (format_save_value): New prototype.
2325 * alloc.c (allocate_misc): Revert back to static.
2326 (format_save_value): New function to build Lisp_Save_Value
2327 object with the specified internal structure.
2328 (make_save_value): Reimplement using format_save_value.
2329 * editfns.c (save_excursion_save): Use format_save_value.
2330 (save_excursion_restore): Use XSAVE_OBJECT.
2331
c50cf2ea
PE
23322013-01-14 Paul Eggert <eggert@cs.ucla.edu>
2333
2334 Avoid needless casts with XSAVE_POINTER.
2335 * alloc.c (mark_object) [GC_MARK_STACK]:
2336 * dired.c (directory_files_internal_unwind):
2337 * fileio.c (do_auto_save_unwind):
2338 * gtkutil.c (pop_down_dialog):
2339 * keymap.c (map_keymap_char_table_item):
2340 * lread.c (load_unwind):
2341 * nsmenu.m (pop_down_menu):
2342 * print.c (print_object) [GC_MARK_STACK]:
2343 * xfns.c (clean_up_file_dialog):
2344 * xmenu.c (cleanup_widget_value_tree):
2345 Omit casts between XSAVE_POINTER and a pointer type.
2346
9d5a1260
DA
23472013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
2348
2349 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
2350 * eval.c (eval_sub): Protect `form' from being GCed before its
2351 car and cdr becomes protected with the backtrace entry.
2352
73ebd38f
DA
23532013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
2354
2355 Make Lisp_Save_Value more versatile storage for up to four objects.
2356 * lisp.h (toplevel): Enumeration to describe types of saved objects.
2357 (struct Lisp_Save_Value): New layout. Adjust comments.
2358 (XSAVE_POINTER): New macro.
2359 (XSAVE_INTEGER): Likewise.
2360 (allocate_misc): Add prototype.
2361 (free_misc): Likewise.
2362 * alloc.c (allocate_misc): Now global.
2363 (free_misc): Likewise. Adjust comment.
2364 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
2365 (free_save_value): Likewise.
2366 (mark_object): Likewise.
2367 * editfns.c (save_excursion_save): Pack everything within
2368 Lisp_Save_Value and so avoid xmalloc.
2369 (save_excursion_restore): Adjust to match new layout. Use free_misc
2370 because we do not allocate extra memory any more. Add eassert.
2371 * print.c (print_object): New code to print Lisp_Save_Value. Do not
2372 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
2373 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
2374 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
2375 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
2376
b826986f
JD
23772013-01-13 Jan Djärv <jan.h.d@swipnet.se>
2378
2379 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
2380 (nsfont_draw): Remove disabling of LCD smoothing.
2381 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
2e7a1892 2382 Bug#11484 with LCD smoothing on.
b826986f 2383
c0511b57 23842013-01-13 Paul Eggert <eggert@cs.ucla.edu>
45b7bfdd 2385
b6f960a0
PE
2386 Fix SIGDANGER handlers, for AIX (Bug#13408).
2387 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
2388 Move handlers here from emacs.c; they were out of place.
2389
616763d5
JD
23902013-01-11 Jan Djärv <jan.h.d@swipnet.se>
2391
2392 * xterm.c (syms_of_xterm): Adjust documentation for
2393 scroll-bar-adjust-thumb-portion.
2394
0b59090b 23952012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
ec782c5f
JD
2396
2397 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
2398 determine whether scroll bar thumb size should be adjusted or
2399 not. Use variable for MOTIF.
2400
2401 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
2402 GTK.
2403
7bc916b4
JD
24042013-01-13 Jan Djärv <jan.h.d@swipnet.se>
2405
eac4d08f
JD
2406 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
2407 event is generated.
2408 (doCommandBySelector:): Set processingCompose to NO.
2409
7bc916b4
JD
2410 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
2411 Remove check for fkeys count > zero, block/unblock fixes the real bug.
2412 (nsfont_list_family): Add block/unblock_input calls.
2413 (nsfont_open): Move block_input earlier. Add unblock_input before early
2414 return.
2415 (nsfont_draw): Add block/unblock_input calls.
2416
bdc9b756
PE
24172013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
2418
2419 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
2420 for old_charpos and old_bytepos.
2421
ee56a6dc
PE
24222013-01-12 Paul Eggert <eggert@cs.ucla.edu>
2423
2424 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
2425 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
2426 Clear tzvalbuf_in_environ if this workaround is in effect.
2427 Problem and fix reported by Kazuhiro Ito.
2428
9fc9a531
AH
24292013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
2430
99d0d6dc
SM
2431 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
2432 Fix ambiguous doc string cross-reference(s).
9fc9a531
AH
2433
2434 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
2435 doc string cross-reference(s).
2436
2437 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
2438 string cross-reference(s).
2439
6020559a
DA
24402013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
2441
2442 Avoid unnecessary byte position calculation for the gap movement.
2443 Since all users of move_gap do CHAR_TO_BYTE for other purposes
2444 anyway, all of them should use move_gap_both instead.
2445 * lisp.h (move_gap): Remove prototype.
2446 * insdel.c (move_gap): Remove.
2447 (move_gap_both): Add eassert.
2448 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
2449 * xml.c (parse_region): Likewise.
2450
b8956427
PE
24512013-01-11 Paul Eggert <eggert@cs.ucla.edu>
2452
2453 emacsclient -t should not suspend Emacs server (Bug#13387)
2454 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
2455 New functions.
2456 * term.c (init_tty): Use them instead of rolling our own code.
2457 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
2458 switches from 'signal' to 'pthread_sigmask', which is safer in
2459 multithreaded applications.
2460 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
2461 which has already arranged for that.
2462 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
2463 This is the main part of the bug fix.
2464
0b59090b 24652013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
48660ca5
JD
2466
2467 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
2468 x_last_font_name (Bug#13403).
2469
58cc0a01
DA
24702013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
2471
2472 Omit buffer_slot_type_mismatch and use generic predicates to enforce
2473 the type of per-buffer values where appropriate.
2474 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
2475 predicate, which is how it's really used now. Adjust comment.
2476 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
2477 * buffer.c (buffer_slot_type_mismatch): Remove.
2478 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
2479 predicate. Adjust comment.
2480 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
2481 fill-column, left-margin, tab-width, buffer-saved-size,
2482 left-margin-width, right-margin-width, left-fringe-width,
2483 right-fringe-width, scroll-bar-width and buffer-display-count.
2484 Use Qstringp for default-directory, buffer-file-name,
2485 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
2486 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
2487 line-spacing.
2488 * data.c (store_symval_forwarding): Adjust to call the predicate.
2489
5104861e
JB
24902013-01-09 Juanma Barranquero <lekktu@gmail.com>
2491
2492 * w32.c (get_name_and_id, acl_set_file):
2493 * w32term.c (w32fullscreen_hook): Remove unused local variables.
2494
eefd7278
DA
24952013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
2496
2497 * lisp.h (make_gap_1): New prototype.
2498 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
2499 gap size values.
2500 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
2501 naming convention.
2502 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
2eae9ccc 2503 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
eefd7278
DA
2504 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
2505 (make_gap_1): New function to adjust the gap of any buffer.
2506 * coding.c (coding_alloc_by_making_gap): Use it.
2507 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
2508 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
2509
073ca75b
JL
25102013-01-08 Juri Linkov <juri@jurta.org>
2511
2512 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
2513 of (supports :underline (:style wave)). (Bug#13000)
2514
3bace969
AH
25152013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2516
2517 * undo.c (Fprimitive_undo): Move to simple.el.
2518 (syms_of_undo): Remove declarations for Sprimitive_undo.
2519
63a63bd4
SM
25202013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2521
2522 * keyboard.c (echo_add_key): Rename from echo_add_char.
2523
56ed110a
CY
25242013-01-06 Chong Yidong <cyd@gnu.org>
2525
2526 * keyboard.c (echo_add_char): New function, factored out from
2527 echo_char. Don't add a space if the previous echo string was
2528 empty (Bug#13255).
2529 (echo_char): Use it.
2530 (read_key_sequence): When echoing mock input, ensure that the
2531 trailing dash is properly added.
2532
b630991b
EZ
25332013-01-05 Eli Zaretskii <eliz@gnu.org>
2534
2535 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
2536 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
63a63bd4
SM
2537 digits for buffer positions, before misalignment starts.
2538 Display "0" for integer "object" field.
b630991b
EZ
2539 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
2540 Display the newline glyph more unambiguously.
2541
f032a318
YM
25422013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2543
2544 * nsterm.m (ns_draw_underwave):
2545 * w32term.c (w32_draw_underwave):
2546 * xterm.c (x_draw_underwave): Make underwave look more triangular
2547 and also degrade gracefully for small fonts. (Bug#13000)
2548
4240dd3c
YM
2549 * nsterm.m (ns_draw_text_decoration):
2550 * w32term.c (x_draw_glyph_string):
2551 * xterm.c (x_draw_glyph_string): Don't use previous underline
2552 thickness and position if previous underline type is underwave.
2553
553081a5
SM
25542013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * fileio.c (Ffile_acl): Undocument return format.
2557
9539d465 25582013-01-02 Glenn Morris <rgm@gnu.org>
08f59219
GM
2559
2560 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
2561
71376d4b
PE
25622013-01-02 Paul Eggert <eggert@cs.ucla.edu>
2563
2564 Simplify via eabs.
2565 * dired.c (file_name_completion):
2566 * doc.c (get_doc_string):
2567 * floatfns.c (round2):
2568 * font.c (font_score, font_delete_unmatched):
2569 * fringe.c (compute_fringe_widths):
2570 * lread.c (read_list):
2571 * minibuf.c (Ftry_completion):
2572 * term.c (tty_ins_del_lines):
2573 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
2574 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
2575
a7f11948
EZ
25762012-12-31 Eli Zaretskii <eliz@gnu.org>
2577
2578 * w32.c (unsetenv): Set up the string passed to _putenv
63a63bd4
SM
2579 correctly.
2580 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
a7f11948
EZ
2581 for the bug this caused.
2582
84cc1ab6
PE
25832012-12-30 Paul Eggert <eggert@cs.ucla.edu>
2584
2585 * coding.c (Qmac): Now static.
2586
5a1d858b
JD
25872012-12-30 Jan Djärv <jan.h.d@swipnet.se>
2588
2589 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
2590 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
2591 handlebox_widget. Set toolbar_in_hbox to false/true, set
2592 toolbar_is_packed to true.
2593 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
2594 (update_frame_tool_bar): Check toolbar_is_packed for packing.
2595 Show all on TOOLBAR_TOP_WIDGET.
2596 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
2597 by TOOLBAR_TOP_WIDGET.
2598 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
2599 Check toolbar_is_packed.
8b745d92
JD
2600 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
2601 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2602 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
2603 false.
2604 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2605 (xg_update_menubar): Update title only if
2606 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2607 (xg_update_submenu): Skip tearoff only if
2608 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2609 (xg_initialize): Initialize xg_detached_menus only if
2610 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
5a1d858b
JD
2611
2612 * xterm.h (struct x_output): Surround handlebox_widget with
2613 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
2614 toolbar_in_hbox is bool.
2615
d5e5e7b4 26162012-12-30 Andreas Schwab <schwab@linux-m68k.org>
2550c6e4
AS
2617
2618 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
2619 (LIBS_GNUSTEP): Define.
2620 (LIBES): Add $(LIBS_GNUSTEP).
2621 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
2622
d5e5e7b4 26232012-12-30 Eli Zaretskii <eliz@gnu.org>
7a3a7493
EZ
2624
2625 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
2626 continuation glyph on a TTY with an indication of an empty line.
2627 (Bug#13277)
2628
e7ae8039
EZ
26292012-12-29 Eli Zaretskii <eliz@gnu.org>
2630
ccad023b
EZ
2631 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
2632 file's SELinux context or ACLs successfully set, nil otherwise.
2633 (Bug#13298)
8d23a331 2634 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
ccad023b 2635
e7ae8039
EZ
2636 * w32proc.c (reader_thread): Avoid passing NULL handles to
2637 SetEvent and WaitForSingleObject.
2638
7456e13f
PE
26392012-12-28 Paul Eggert <eggert@cs.ucla.edu>
2640
2641 Port EXTERNALLY_VISIBLE to Clang 3.2.
2642 * conf_post.h (__has_attribute): New macro.
2643 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
2644
1ab0c851
GM
26452012-12-27 Glenn Morris <rgm@gnu.org>
2646
2647 * cygw32.c (Fcygwin_convert_file_name_to_windows)
2648 (Fcygwin_convert_file_name_from_windows): Doc fixes.
2649
82e2a1f0 26502012-12-27 Eli Zaretskii <eliz@gnu.org>
f5c81c80 2651
63a63bd4
SM
2652 * fileio.c (file_name_as_directory, directory_file_name):
2653 Accept an additional argument MULTIBYTE to indicate whether the input C
f5c81c80
EZ
2654 came from a multibyte or a unibyte Lisp string; all callers
2655 adjusted. Don't assume the input string is always multibyte.
2656 (Bug#13262)
2657 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
2658 don't ENCODE_FILE them, and return a unibyte string if the input
2659 was unibyte.
2660 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
2661 don't assume the input strings will always be multibyte. If the
2662 input strings are multibyte, decode strings obtained from C
2663 library functions.
2664
8847a0de
DA
26652012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
2666
2667 * lisp.h (toplevel): Add two notices to the comment about
2668 defining a new Lisp data type.
6cda572a
DA
2669 * print.c (print_object): If Lisp_Save_Value object's pointer
2670 is the address of a memory area containing Lisp_Objects, try
2671 to print them.
2672 * alloc.c (valid_lisp_object_p): Adjust comment.
8847a0de 2673
4b298d5a
DA
26742012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
2675
2676 * keyboard.c (record_asynch_buffer_change): Initialize an event
2677 only if it's really needed.
2678 * frame.h (enum output_method): Remove output_mac member since
2679 it's a leftover from the deleted code.
2680 * frame.c (Fframep): Adjust user here ...
2681 * terminal.c (Fterminal_live_p): ... and here.
2682 * coding.c (Qmac): Now here because it's only used to denote
2683 end-of-line encoding type.
2684 (syms_of_coding): DEFSYM it.
2685 * frame.h (Qmac): Remove duplicated declaration.
2686
12384b01
PE
26872012-12-26 Paul Eggert <eggert@cs.ucla.edu>
2688
2689 * window.c (select_window_1): Now static, since it's used only here.
2690
f1665bdc
EZ
26912012-12-25 Eli Zaretskii <eliz@gnu.org>
2692
2693 * window.c (window_body_cols): Subtract display margins from the
2694 window body width on TTYs as well. See
2695 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
2696 for the original report.
2697
9a0d4f34
DA
26982012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
2699
2700 * xdisp.c (redisplay_window): Remove inner local variable
2701 because the outer shadowed one has the same meaning.
cd78d9b1
DA
2702 * xterm.h (struct x_output): Remove toolbar_detached member since it's
2703 set but never used.
2704 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
2705 (xg_create_tool_bar): Adjust users.
9a0d4f34 2706
f9e7c67e
DA
27072012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
2708
2709 * buffer.h (BUF_COMPACT): New macro to follow the common style.
2710 * buffer.c (Fget_buffer_create): Use it to set compact field of
2711 struct buffer_text to avoid accessing an uninitialized value
2712 when compact_buffer is called for the first time.
2713 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
2944d406
DA
2714 (Fset_buffer_modified_p): Use buffer_window_count to check
2715 whether the buffer is displayed in some window.
2716 * xdisp.c (message_dolog): Likewise.
f9e7c67e 2717
299614f3
EZ
27182012-12-23 Eli Zaretskii <eliz@gnu.org>
2719
40ff07a5
EZ
2720 * w32.c (acl_set_file): If setting the file security descriptor
2721 fails, and the new DACL is identical to the existing one, silently
2722 return success. This fixes problems for users backing up their
2723 own files without having the necessary privileges for setting
2724 security descriptors.
2725
299614f3
EZ
2726 * w32proc.c (reader_thread): Do not index fd_info[] with negative
2727 values.
2728 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
2729 after WaitForSingleObject returns normally. This expedites reader
2730 thread shutdown when delete_child triggers it.
2731 (reap_subprocess): More accurate commentary for why we call
2732 delete_child only when cp->fd is negative.
2733
2734 * w32.c (sys_close): Do not call delete_child on a subprocess
2735 whose handle is not yet closed. Instead, set its file descriptor
2736 to a negative value, so that reap_subprocess will call
63a63bd4
SM
2737 delete_child on that subprocess when its SIGCHLD arrives.
2738 This avoids closing handles used for communications between sys_select
299614f3
EZ
2739 and reader_thread, which doesn't give sys_select a chance to
2740 notice that the process exited and invoke the SIGCHLD handler for
2741 it.
2742
cf162aee
JD
27432012-12-23 Jan Djärv <jan.h.d@swipnet.se>
2744
2745 * nsfns.m (Fns_do_applescript): Run event loop until script has
2746 been executed (Bug#12969).
2747 (ns_run_ascript): Chech as_script for nil, set to nil after
2748 executing script.
2749
94900bfe
MR
27502012-12-22 Martin Rudalics <rudalics@gmx.at>
2751
2752 * window.c (Fselect_window): Reword doc-string (Bug#13248).
2753
b2faf49c
EZ
27542012-12-22 Eli Zaretskii <eliz@gnu.org>
2755
2756 * w32term.c (w32fullscreen_hook): New function.
2757 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
2758
7efa3fb3
EZ
27592012-12-21 Eli Zaretskii <eliz@gnu.org>
2760
bb085aed
EZ
2761 * fileio.c (Finsert_file_contents): Doc fix.
2762
7efa3fb3
EZ
2763 * w32proc.c (new_child, delete_child, find_child_pid): For a
2764 subprocess, consider its slot being in use as long as its process
2765 handle (procinfo.hProcess) is not NULL. This avoids reusing the
2766 slot when a new process is started immediately after killing
2767 another one, without waiting enough time for the first process to
2768 be reaped and resources allocated for it be orderly freed.
2769 (Bug#13086)
2770 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2771
c1f02afa
CY
27722012-12-21 Chong Yidong <cyd@gnu.org>
2773
2774 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
2775
5bec25eb
CY
2776 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
2777
a4b0cca1 27782012-12-21 Eli Zaretskii <eliz@gnu.org>
92340ec7
EZ
2779
2780 * w32.c (get_name_and_id): Always pass NULL as the first argument
2781 of lookup_account_sid. Avoids crashes with UNC file names that
2782 refer to DFS domains, not to specific machine names. (Bug#12621)
2783 Remove now unused argument FNAME; all callers changed.
2784 (get_file_owner_and_group): Remove now unused argument FNAME; all
2785 callers changed.
2786
34b4b7eb
CY
27872012-12-21 Chong Yidong <cyd@gnu.org>
2788
2789 * editfns.c (Finsert_char): Since read-char-by-name now signals an
2790 error for invalid chars, don't check for a nil return value.
2791
13002885
DA
27922012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2793
2794 Avoid calls to CHAR_TO_BYTE if byte position is known.
2795 * editfns.c (make_buffer_string_both): Use move_gap_both.
2796 (Fbuffer_string): Use make_buffer_string_both.
2797 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
2798 Adjust comment.
2799 (buf_bytepos_to_charpos): Likewise.
2800 (charpos_to_bytepos): Remove.
2801 * fileio.c (Finsert_file_contents): Use move_gap_both.
2802 * search.c (Freplace_match): Likewise.
9a0d4f34 2803 * process.c (process_send_region): Likewise. Use convenient
13002885
DA
2804 names for byte positions.
2805 * lisp.h (charpos_to_bytepos): Remove prototype.
2806 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
2807 * insdel.c (move_gap): Likewise.
2808
99e9311c
PE
28092012-12-20 Paul Eggert <eggert@cs.ucla.edu>
2810
2811 * xdisp.c (redisplay_internal): Remove now-unused local.
2812
e02230bf
SM
28132012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
2814
2815 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
2816 (redisplay_internal): Don't bother selecting the frame to get the
4a74c818 2817 proper value of frame-local variables (bug#13225).
e02230bf 2818
1687fb14
DA
28192012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2820
2821 * textprop.c (set_text_properties_1): Do not allow NULL interval.
2822 Rename 4th argument since it may be buffer or string. Adjust comment.
2823 * intervals.c (graft_intervals_info_buffer): Find an interval here.
2824
a2f07cd2
DA
28252012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
2826
2827 * coding.c (Fdetect_coding_region): Do not check start and end with
2828 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
2829 (code_convert_region): Likewise.
2830
474d441e
EZ
28312012-12-18 Eli Zaretskii <eliz@gnu.org>
2832
2833 * w32.c (acl_get_file, acl_set_file): Run the file name through
2834 map_w32_filename, and resolve any symlinks in the file name, like
2835 Posix platforms do.
2836 (acl_set_file): Call revert_to_self, if any privileges were
2837 enabled.
2838
8725c076
JB
28392012-12-17 Juanma Barranquero <lekktu@gmail.com>
2840
2841 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
2842 ($(BLD)/w32.$(O)): Update dependencies.
2843
1e101a4b
SM
28442012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2845
2846 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
2847 propagate redisplay's scrolling (if any) to the right window.
2848 (redisplay_internal): Use ensure_selected_frame.
2849 (display_mode_lines): Complete last fix.
2850 * window.c (select_window_1): New func, extracted from select_window.
2851 (select_window): Use it.
2852 * window.h (select_window_1): Declare.
2853
66447e07
EZ
28542012-12-17 Eli Zaretskii <eliz@gnu.org>
2855
2856 Emulate Posix ACL APIs on MS-Windows.
2857 * w32.c: Include sddl.h and sys/acl.h.
2858 (SDDL_REVISION_1): Define if not already defined.
2859 (g_b_init_get_security_descriptor_dacl)
2860 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
2861 (g_b_init_is_valid_security_descriptor)
2862 (g_b_init_set_file_security): New static flags.
2863 (globals_of_w32): Initialize them to zero.
2864 (SetFileSecurity_Name): New string constant.
2865 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
2866 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
2867 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
2868 (IsValidSecurityDescriptor_Proc): New typedefs.
2869 (get_file_security, get_security_descriptor_owner)
2870 (get_security_descriptor_group): Set errno to ENOTSUP.
2871 (set_file_security, get_security_descriptor_dacl)
2872 (is_valid_security_descriptor, convert_sd_to_sddl)
2873 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
2874 (acl_free, acl_get_file, acl_set_file): New functions.
2875
2876 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
2877
207a7ef0
PE
28782012-12-17 Paul Eggert <eggert@cs.ucla.edu>
2879
2880 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
2881 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
2882 for some of that bug's symptoms can now cause Emacs to abort.
2883 Remove the workaround.
2884 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
2885 The bug that caused SIGCHLD to get lost has been fixed, and the
2886 workaround for it can now cause Emacs to abort.
2887
17fdfc15
PE
28882012-12-16 Paul Eggert <eggert@cs.ucla.edu>
2889
2890 * sysdep.c (emacs_abort): Bump backtrace size to 40.
2891 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
2892 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
2893
7c3d167f
RF
28942012-12-16 Romain Francoise <romain@orebokech.com>
2895
2896 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
2897 (Fcopy_file): Change last arg to `preserve_extended_attributes'
1e101a4b 2898 and copy ACL entries of file in addition to SELinux context if set.
7c3d167f
RF
2899 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
2900
2901 * Makefile.in (LIBACL_LIBS): New macro.
2902 (LIBES): Use it.
2903
7d80ea23
PE
29042012-12-15 Paul Eggert <eggert@cs.ucla.edu>
2905
2906 * fileio.c (internal_delete_file): Use bool for boolean.
2907
b0728617
EZ
29082012-12-15 Eli Zaretskii <eliz@gnu.org>
2909
2910 Fix bug #13079 on MS-Windows with temp files not being deleted.
2911 * w32.h (_child_process): New members input_file and
2912 pending_deletion.
2913 (register_child): First argument is now pid_t.
2914 (record_infile, record_pending_deletion): New prototypes.
2915
2916 * w32proc.c (new_child): Initialize input_file and
2917 pending_deletion members of the child.
2918 (delete_child): Delete the child's temporary input file, if any,
2919 that is pending deletion.
2920 (register_child): First argument is now pid_t.
2921 (record_infile, record_pending_deletion): New functions.
2922 (reap_subprocess): Fix a typo in DebPrint string.
2923 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
2924
2925 * fileio.c (internal_delete_file): Return an int again: non-zero
2926 if delete-file succeeds, zero otherwise.
2927
2928 * lisp.h (internal_delete_file): Adjust prototype.
2929
2930 * callproc.c (Fcall_process): Don't overwrite infile with result
2931 of DECODE_FILE.
2932 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
2933 asynchronous subprocess, record the name of the input file name,
2934 if any.
2935 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
2936 delete the file, record it as pending deletion when the subprocess
2937 exits.
2938
7e90af26
EZ
29392012-12-14 Eli Zaretskii <eliz@gnu.org>
2940
2941 * editfns.c [HAVE_PWD_H]: Include grp.h.
2942
2943 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
2944
97976f9f
PE
29452012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2946
2947 Fix permissions bugs with setgid directories etc. (Bug#13125)
2948 * dired.c (Ffile_attributes): Return t as the 9th attribute,
2949 to mark it as a placeholder. The old value was often wrong.
2950 The only user of this attribute has been changed to use
2951 file-ownership-preserved-p instead, with its new group arg.
2952 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
2953
26ec1f49
SM
29542012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
2955
ad966fe7
SM
2956 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
2957 Keep selected_window and selected_frame in sync.
26ec1f49 2958
5c207910
EZ
29592012-12-14 Eli Zaretskii <eliz@gnu.org>
2960
2961 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
2962 try to get accurate owner and group information from NT file
2963 security APIs. This is to make most callers of 'stat' and
2964 'lstat', which don't need that information, much faster.
2965
26ec1f49
SM
2966 * dired.c (Ffile_attributes) [WINDOWSNT]:
2967 Set w32_stat_get_owner_group to a non-zero value, to request accurate
5c207910
EZ
2968 owner and group information from 'lstat'.
2969
893f52d8
PE
29702012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2971
4c95c9a5
PE
2972 * fileio.c (Finsert_file_contents): Don't put tail into head area,
2973 as that confuses set-auto-coding, so insist on the head-read
2974 returning the full 1024 bytes. Let lseek compute the tail offset;
2975 less work for us. Do not ignore I/O errors when reading the tail.
2976
893f52d8
PE
2977 * xdisp.c: Minor style fixes.
2978 (init_iterator): Hoist assignment out of if-expression.
2979 (markpos_of_region): Callers now test for sign, not for -1.
2980
40d1e434
DA
29812012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
2982
2983 Minor redisplay optimization when the region length is zero.
2984 * xdisp.c (markpos_of_region): New function.
2985 (init_iterator): Do not highlight the region of zero length.
2986 (redisplay_window): Check whether the region is of non-zero length.
2987 (try_cursor_movement): Allow if the region length is zero.
2988 (try_window_reusing_current_matrix, try_window_id): Likewise.
2989
727f9739 29902012-12-13 Eli Zaretskii <eliz@gnu.org>
e8c6e965
EZ
2991
2992 * search.c (search_buffer): Check the inverse translations of each
2993 character in pattern when the buffer being searched is unibyte.
2994 (Bug#13084)
2995
727f9739 29962012-12-13 Paul Eggert <eggert@cs.ucla.edu>
184246df
PE
2997
2998 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
2999 files, fixing a regression from 24.2.
645c6a30 3000 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
184246df 3001
d20704ef
PE
30022012-12-13 Paul Eggert <eggert@cs.ucla.edu>
3003
3004 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
3005 fstat shouldn't fail, and if it does fail copy-file should not proceed.
3006 Remove unnecessary S_ISLNK test, as (contra the comments) this
3007 function can't copy symlinks. Improve quality of error message
3008 when attempting to copy files that are neither regular files nor
3009 directories.
3010
2dd61a9b
DA
30112012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
3012
3013 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
3014 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
3015 * window.c (Frecenter):
3016 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
3017 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
3018
cc98b684
DC
30192012-12-12 Daniel Colascione <dancol@dancol.org>
3020
1e101a4b 3021 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
cc98b684
DC
3022 the dumped Emacs is not a sparse file, greatly improving Cygwin
3023 "make bootstrap" performance.
3024
38e791fd
MA
30252012-12-11 Michael Albinus <michael.albinus@gmx.de>
3026
3027 * inotify.c (inotify_callback): Generate an Emacs event for every
3028 incoming inotify event.
3029
f9d1448f
EZ
30302012-12-11 Eli Zaretskii <eliz@gnu.org>
3031
3032 * xdisp.c (handle_face_prop): Fix logic of computing
3033 it->start_of_box_run_p.
3034 (append_space_for_newline): If the glyph row is R2L, reset the
3035 iterator's end_of_box_run_p flag before prepending the space glyph.
3036 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
3037 iterator's start_of_box_run_p flag before prepending the stretch.
3038 (append_glyph, produce_image_glyph, append_composite_glyph)
3039 (append_stretch_glyph, append_glyphless_glyph): Reverse the
3040 left_box_line_p and right_box_line_p flags of the glyph for R2L
3041 glyph rows. (Bug#13011)
3042
c6afe371
DA
30432012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
3044
3045 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
3046 if changed buffer is not shown in a window.
3047 * insdel.c (prepare_to_modify_buffer): Likewise.
3048 * window.c (replace_buffer_in_windows_safely): Do nothing
3049 if buffer is not shown in a window.
3050 (Fforce_window_update): Likewise if string or buffer argument
3051 is passed.
3052
1b47babd
EZ
30532012-12-11 Eli Zaretskii <eliz@gnu.org>
3054
3055 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
3056 encoded_file_name, which is what it is.
3057
4c1acb95
DA
30582012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
3059
3060 Consistently use marker_position and marker_byte_position.
3061 * fringe.c (Ffringe_bitmaps_at_pos):
3062 * indent.c (Fvertical_motion):
3063 * insdel.c (prepare_to_modify_buffer):
3064 * keyboard.c (make_lispy_position):
3065 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
3066 (window_scroll_pixel_based, displayed_window_lines)
3067 (Fset_window_configuration):
3068 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
3069 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
3070 Replace direct access to marker fields with calls
3071 to marker_position and/or marker_byte_position.
3072
0eeb69fe
JB
30732012-12-11 Juanma Barranquero <lekktu@gmail.com>
3074
3075 * makefile.w32-in (SIG2STR_H): New macro.
3076 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
3077 ($(BLD)/w32notify.$(O)): Update dependencies.
3078
1cf1bbd5
DC
30792012-12-10 Daniel Colascione <dancol@dancol.org>
3080
8db4b52f
DC
3081 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
3082 Windows file notification functionality unless WINDOWSNT.
3083
1cf1bbd5
DC
3084 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
3085 declarations.
3086
3087 * w32fns.c (cache_system_info): Initialize the global hinst
3088 variable here so various initialization calls DTRT.
3089
1e101a4b 3090 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
1cf1bbd5
DC
3091 (hinst): Remove unneeded extern declaration.
3092 (_start): Remove initialization of above variables; remove
3093 initialization of hinst, as cache_system_info now does that.
3094
3095 * emacs.c (main): Call cache_system_info early in startup; we
3096 previously weren't calling it in Cygwin builds.
3097
26ec1f49
SM
3098 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
3099 Teach the autoconf build system how to compile a Windows resource file
1cf1bbd5
DC
3100 and link it to Emacs.
3101
98a07056
DA
31022012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
3103
3104 Per-buffer window counters.
3105 * buffer.h (struct buffer): New member window_count.
3106 (buffer_window_count): New function.
3107 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
3108 Initialize window_count.
3109 (Fkill_buffer): Verify window_count for the buffer being killed.
3110 (modify_overlay): Do not force redisplay if buffer is not shown
3111 in any window.
3112 (init_buffer_once): Initialize window_count for buffer_defaults
3113 and buffer_local_symbols.
3114 * window.h (buffer_shared): Remove declaration.
3115 (wset_buffer): Convert from inline ...
3116 * window.c (wset_buffer): ... to an ordinary function.
3117 (adjust_window_count): New function.
3118 (make_parent_window): Use it.
3119 * xdisp.c (buffer_shared): Remove.
3120 (redisplay_internal, redisplay_window): Adjust users.
3121 (buffer_shared_and_changed): Use per-buffer window counter.
3122
2b8c9064
EZ
31232012-12-10 Eli Zaretskii <eliz@gnu.org>
3124
3125 Support for filesystem notifications on MS-Windows.
3126 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
3127 and this is a TTY frame, signal the caller that keyboard input is
3128 available.
3129
3130 * w32xfns.c (drain_message_queue): Now returns an int: an
3131 indication whether any WM_EMACS_FILENOTIFY messages were found in
3132 the queue.
3133
3134 * w32inevt.c (handle_file_notifications): New function.
3135 (w32_console_read_socket): Call it to process file notifications.
3136
3137 * w32console.c (initialize_w32_display): Record the main thread ID
3138 in dwMainThreadId.
3139
3140 * deps.mk (inotify.o): New dependency list.
3141
3142 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
3143
3144 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
3145 (WM_EMACS_END): Bump value by 1.
3146 (notification_buffer_in_use, file_notifications)
3147 (notifications_size, notifications_desc): Declare.
3148 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
3149 Add prototypes.
3150
3151 * w32term.c (lispy_file_action, queue_notifications): New functions.
3152 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
3153 <Qrenamed_to>: New symbols.
3154 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
3155
3156 * w32notify.c: New file, implements file event notifications for
3157 MS-Windows.
3158
3159 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
3160 by posting it to the w32_read_socket queue.
3161
1e101a4b 3162 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2b8c9064
EZ
3163
3164 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
3165 (GLOBAL_SOURCES): Add w32notify.c
3166 ($(BLD)/w32notify.$(O)): New set of dependencies.
3167
3168 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
3169
1e101a4b
SM
3170 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
3171 Handle FILE_NOTIFY_EVENT.
2b8c9064
EZ
3172 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
3173 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
3174 w32notify-handle-event by default.
3175
3176 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
3177 syms_of_w32notify.
3178
81606b10
RS
31792012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3180
2b8c9064 3181 Support for filesystem notifications on GNU/Linux via inotify.
1e101a4b 3182 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
81606b10
RS
3183
3184 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
3185
3186 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
3187 (syms_of_keyboard): DEFSYM it.
3188 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
3189 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
3190 Qfile_inotify events.
3191 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
3192 special-event-map to inotify-handle-event.
3193
3194 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
3195
3196 * Makefile.in (base_obj): Add inotify.o.
3197
3198 * inotify.c: New file.
3199
265c2fbf 32002012-12-10 Jan Djärv <jan.h.d@swipnet.se>
a06ae17d
JD
3201
3202 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
3203
265c2fbf 32042012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
cb576b5c
FP
3205
3206 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
3207 DWORD_PTR, for compatibility with 64-bit builds.
3208
a06ae17d 3209 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
cb576b5c
FP
3210 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
3211 (system_process_attributes): Use SIZE_T rather than DWORD, for
3212 compatibility with 64-bit builds.
3213
265c2fbf 32142012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
76b92fee
CS
3215
3216 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
3217
265c2fbf 32182012-12-10 Eli Zaretskii <eliz@gnu.org>
81d8cc53
EZ
3219
3220 * indent.c (Fvertical_motion): If a display string will be
3221 displayed on the left or the right margin, don't consider it as a
3222 factor in cursor positioning. (Bug#13108)
3223
265c2fbf 32242012-12-10 Martin Rudalics <rudalics@gmx.at>
2cec368c
MR
3225
3226 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
3227
5f460827
PE
32282012-12-10 Paul Eggert <eggert@cs.ucla.edu>
3229
3230 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
3231 for string length.
3232
a16e75cd
EZ
32332012-12-08 Eli Zaretskii <eliz@gnu.org>
3234
3235 * w32.c (unsetenv): Return 0 if the input string is too long.
3236
5745a7df
PE
32372012-12-08 Paul Eggert <eggert@cs.ucla.edu>
3238
3239 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
3240 * alloc.c (xputenv): New function.
3241 * dbusbind.c (Fdbus_init_bus):
3242 * emacs.c (main):
3243 * xterm.c (x_term_init):
3244 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
3245 * editfns.c (initial_tz): Move static var decl up.
3246 (tzvalbuf_in_environ): New static var.
3247 (init_editfns): Initialize these two static vars.
3248 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
3249 Save old TZ value on stack, if it's small.
3250 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
3251 instead, use xputenv+unsetenv to set and restore TZ.
3252 (environbuf): Remove static var. All uses removed.
3253 (Fset_time_zone_rule): Do not save TZ and environ;
3254 no longer needed here.
3255 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
3256 Move to inside set_time_zone_rule; they don't need file scope any more.
3257 (set_time_zone_rule): Maintain the TZ=value string separately.
3258 (syms_of_editfns): Don't initialize initial_tz;
3259 init_editfns now does it.
3260 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
3261 * lisp.h (xputenv): New decl.
3262
c56efa40
FP
32632012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
3264
3265 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
3266
75ceee05
EZ
32672012-12-08 Eli Zaretskii <eliz@gnu.org>
3268
3269 * w32.c (unsetenv, sys_putenv): New functions.
3270
1b6dbfeb
CY
32712012-12-08 Chong Yidong <cyd@gnu.org>
3272
3273 * editfns.c (Finsert_char): Make the error message more
3274 informative (Bug#12992).
3275
d983a10b
PE
32762012-12-08 Paul Eggert <eggert@cs.ucla.edu>
3277
7be78020
PE
3278 Simplify get_lim_data.
3279 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
3280 Remove USG and vlimit methods; no longer used these days.
3281 Add #error catchall just in case.
3282
d983a10b
PE
3283 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
3284 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
3285 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
3286 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
3287 (deleted_pid_list, Fdelete_process, create_process)
3288 (record_child_status_change, handle_child_signal, deliver_child_signal)
3289 (init_process_emacs, syms_of_process):
3290 Assume SIGCHLD is defined.
3291 (parse_signal): Remove. All uses removed.
3292 (abbr_to_signal): New static function.
3293 (Fsignal_process): Use it to convert signal names to ints.
3294 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
3295 kill (getpgrp (), ...).
3296 (emacs_sigaction_init): Assume SIGCHLD is defined.
3297 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
3298 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
3299 * syssignal.h (EMACS_KILLPG): Remove.
3300 All uses replaced by 'kill' with a negative pid.
3301 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
3302 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
3303
9cdde1e2
PE
33042012-12-07 Paul Eggert <eggert@cs.ucla.edu>
3305
3306 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
3307 This will cause a production Emacs to dump core instead of
3308 infinite-looping.
3309
822995f8
DA
33102012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
3311
3312 * frame.c (make_frame): Do not set window's buffer to t.
3313 * window.c (Fsplit_window_internal): Likewise. Previously it was
3314 used to indicate that the window is being set up. Now we use
3315 set_window_buffer for all new windows, so the condition in ...
3316 (Fset_window_buffer): ... is always true and can be removed.
3317
ed08365b
DA
33182012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
3319
3320 Convenient macro to check whether the buffer is hidden.
3321 * buffer.h (BUFFER_HIDDEN_P): New macro.
3322 * frame.c (make_frame): Use it. Adjust comment.
3323 * buffer.c (candidate_buffer): New function.
3324 (Fother_buffer, other_buffer_safely): Use it.
3325
e86f5134
EZ
33262012-12-06 Eli Zaretskii <eliz@gnu.org>
3327
3328 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
3329 if the child process is still running. Instead, exit the wait
3330 loop and return zero. (Bug#13086)
3331
1700db3c
DA
33322012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
3333
3334 * frame.h (x_char_width, x_char_height): Remove prototypes.
3335 * w32term.h (x_char_width, x_char_height): Likewise.
3336 * xfns.c (x_char_width, x_char_height): Remove.
3337 * w32fns.c (x_char_width, x_char_height): Likewise.
3338 * nsfns.c (x_char_width, x_char_height): Likewise.
3339 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
3340 all window frames.
3341 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
3342 * keyboard.c (command_loop_1): Remove prototype.
3343 (command_loop_2, top_level_1): Add static to match prototype.
3344
35fb8050
PE
33452012-12-06 Paul Eggert <eggert@cs.ucla.edu>
3346
3347 Fix a recently-introduced delete-process race condition.
3348 * callproc.c, process.h (record_kill_process):
3349 New function, containing part of the old call_process_kill.
3350 (call_process_kill): Use it.
3351 This does not change call_process_kill's behavior.
3352 * process.c (Fdelete_process): Use record_kill_process to fix a
3353 race condition that could cause Emacs to lose track of a child.
3354
565212e5
DA
33552012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
3356
3357 Avoid code duplication between prev_frame and next_frame.
3358 * frame.c (candidate_frame): New function. Add comment.
3359 (prev_frame, next_frame): Use it. Adjust comment.
3360
d8ad4d3f 33612012-12-06 Eli Zaretskii <eliz@gnu.org>
d3cefd13
EZ
3362
3363 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
3364 fails, signal an error instead of continuing with an empty
3365 string. (Bug#13079)
7c2fcf9b
EZ
3366 Encode expanded temp file pattern before passing it to mkstemp or
3367 mktemp.
d3cefd13 3368
2e7cddd3
EZ
3369 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
3370 Encode the file name before passing it to dostounix_filename, in
3371 case it will downcase it (under w32-downcase-file-names).
3372 (Bug#12933)
3373
644d3f0d
PE
33742012-12-05 Paul Eggert <eggert@cs.ucla.edu>
3375
3376 Minor call-process cleanups.
3377 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
3378 at the same time as other platforms, to simplify analysis.
3379 No need for fd0_volatile since we have synch_process_fd.
3380 Avoid needless emacs_close; arg is always negative.
3381
396376f1
AS
33822012-12-04 Andreas Schwab <schwab@linux-m68k.org>
3383
3384 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
3385 processes.
3386
350f51ad
DA
33872012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
3388
3389 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
3390 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
3391 and mouse_face_hidden members to a bitfields.
3392 * frame.h (struct frame): Remove set-but-not-used space_width member.
3393 (FRAME_SPACE_WIDTH): Remove.
3394 * nsterm.m, w32term.c, xterm.c: Adjust users.
3395 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
3396 member. Adjust users. Convert term_initted, delete_in_insert_mode,
3397 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
3398 members to a bitfields.
3399
bc9dbce6
PE
34002012-12-03 Paul Eggert <eggert@cs.ucla.edu>
3401
bb5f74ee
PE
3402 Don't let call-process be a zombie factory (Bug#12980).
3403 Fixing this bug required some cleanup of the signal-handling code.
3404 As a side effect, this change also fixes a longstanding rare race
3405 condition whereby Emacs could mistakenly kill unrelated processes,
3406 and it fixes a bug where a second C-g does not kill a recalcitrant
3407 synchronous process in GNU/Linux and similar platforms.
3408 The patch should also fix the last vestiges of Bug#9488,
3409 a bug which has mostly been fixed on the trunk by other changes.
3410 * callproc.c, process.h (synch_process_alive, synch_process_death)
3411 (synch_process_termsig, sync_process_retcode):
3412 Remove. All uses removed, to simplify analysis and so that
3413 less consing is done inside critical sections.
3414 * callproc.c (call_process_exited): Remove. All uses replaced
3415 with !synch_process_pid.
3416 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
3417 These take the role of what used to be in unwind-protect arg.
3418 All uses changed.
3419 (block_child_signal, unblock_child_signal):
3420 New functions, to avoid races that could kill innocent-victim processes.
3421 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
3422 (call_process_kill): Record killed processes as deleted, so that
3423 zombies do not clutter up the system. Do this inside a critical
3424 section, to avoid a race that would allow the clutter.
3425 (call_process_cleanup): Fix code so that the second C-g works again
3426 on common platforms such as GNU/Linux.
3427 (Fcall_process): Create the child process in a critical section,
3428 to fix a race condition. If creating an asynchronous process,
3429 record it as deleted so that zombies do not clutter up the system.
3430 Do unwind-protect for WINDOWSNT too, as that's simpler in the
3431 light of these changes. Omit unnecessary call to emacs_close
3432 before failure, as the unwind-protect code does that.
3433 * callproc.c (call_process_cleanup):
3434 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
3435 * process.c (record_deleted_pid): New function, containing
3436 code refactored out of Fdelete_process.
3437 (Fdelete_process): Use it.
3438 (process_status_retrieved): Remove. All callers changed to use
3439 child_status_change.
3440 (record_child_status_change): Remove, folding its contents into ...
3441 (handle_child_signal): ... this signal handler. Now, this
3442 function is purely a handler for SIGCHLD, and is not called after
3443 a synchronous waitpid returns; the synchronous code is moved to
3444 wait_for_termination. There is no need to worry about reaping
3445 more than one child now.
3446 * sysdep.c (get_child_status, child_status_changed): New functions.
3447 (wait_for_termination): Now takes int * status and bool
3448 interruptible arguments, too. Do not record child status change;
3449 that's now the caller's responsibility. All callers changed.
3450 Reimplement in terms of get_child_status.
3451 (wait_for_termination_1, interruptible_wait_for_termination):
3452 Remove. All callers changed to use wait_for_termination.
3453 * syswait.h: Include <stdbool.h>, for bool.
3454 (record_child_status_change, interruptible_wait_for_termination):
3455 Remove decls.
3456 (record_deleted_pid, child_status_changed): New decls.
3457 (wait_for_termination): Adjust to API changes noted above.
3458
bc9dbce6
PE
3459 * bytecode.c, lisp.h (Qbytecode): Remove.
3460 No longer needed after 2012-11-20 interactive-p changes.
3461
3cf3c607
EZ
34622012-12-03 Eli Zaretskii <eliz@gnu.org>
3463
3464 * xdisp.c (redisplay_window): If the cursor is visible, but inside
3465 the scroll margin, move point outside the margin. (Bug#13055)
3466
005c8d13
JD
34672012-12-03 Jan Djärv <jan.h.d@swipnet.se>
3468
3469 * gtkutil.c (my_log_handler): New function.
3470 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
3471
20edc1c9
DA
34722012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
3473
3474 * lisp.h (modify_region): Rename to...
3475 (modify_region_1): ...new prototype.
3476 * textprop.c (modify_region): Now static. Adjust users.
3477 * insdel.c (modify_region): Rename to...
3478 (modify_region_1): ...new function to work with current buffer.
3479 Adjust comment and users. Use true and false for booleans.
3480
62c2e5ed
DA
34812012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
3482
3483 * alloc.c (free_save_value): New function.
3484 (safe_alloca_unwind): Use it.
3485 * lisp.h (free_save_value): New prototype.
3486 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
3487 Add comment.
3488 (save_excursion_restore): Adjust to match saved data structure.
3489 Use free_save_value to offload some work from GC. Drop obsolete
3490 #if 0 code.
3491
c5bc2d1d 34922012-12-03 Chong Yidong <cyd@gnu.org>
a2458031
CY
3493
3494 * fileio.c (Vauto_save_list_file_name): Doc fix.
3495
c5bc2d1d 34962012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
c7b36b95
FP
3497
3498 * w32fns.c: Remove prototype of atof.
1e101a4b 3499 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
c7b36b95 3500 builds.
1e101a4b 3501 (file_dialog_callback): Make it UINT_PTR.
c7b36b95
FP
3502
3503 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
3504 with 64-bit builds.
3505
3506 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
3507 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
3508 defined.
3509
c5bc2d1d 35102012-12-03 Glenn Morris <rgm@gnu.org>
14d27346 3511
a9de9f0c 3512 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
14d27346 3513
21e54a94
PE
35142012-12-02 Paul Eggert <eggert@cs.ucla.edu>
3515
2dd2e622
PE
3516 Fix xpalloc confusion after memory is exhausted.
3517 * alloc.c (xpalloc): Comment fix.
3518 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
3519 and signals an error, do not clear charset_table_size, as
3520 charset_table is still valid.
3521 * doprnt.c (evxprintf): Clear *BUF after freeing it.
3522
21e54a94
PE
3523 Use execve to avoid need to munge environ (Bug#13054).
3524 * callproc.c (Fcall_process):
3525 * process.c (create_process):
3526 Don't save and restore environ; no longer needed.
3527 * callproc.c (child_setup):
3528 Use execve, not execvp, to preserve environ.
3529
3e5490f7
PE
35302012-12-01 Paul Eggert <eggert@cs.ucla.edu>
3531
3532 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
3533
75b4f59c
YM
35342012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3535
3536 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
3537 display for sliced images (Bug#10500).
3538
3539 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
3540
f8aff4c6
JB
35412012-11-30 Juanma Barranquero <lekktu@gmail.com>
3542
3543 * doc.c (Fdocumentation): Re-add handling of function-documentation,
3544 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
3545
3940b924
DA
35462012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
3547
3548 * xdisp.c (window_outdated): Remove eassert since it hits
3549 some suspicious corner cases (see Bug#13007 and Bug#13012).
3550 (mode_line_update_needed): New function.
3551 (redisplay_internal, redisplay_window): Use it.
3552 (ensure_selected_frame): New function.
3553 (redisplay_internal, unwind_redisplay): Use it.
3554 (redisplay_internal): Move comment about buffer_shared...
3555 (buffer_shared_and_changed): ...near to its real use.
3556
4a9204fe
PE
35572012-11-29 Paul Eggert <eggert@cs.ucla.edu>
3558
3559 * callproc.c (Fcall_process): Don't misreport vfork failure.
3560
60aeceb8
PE
35612012-11-28 Paul Eggert <eggert@cs.ucla.edu>
3562
3563 * callproc.c (Fcall_process): Fix vfork portability problems.
3564 Do not assume that fd[0], count, filefd, and save_environ survive
3565 vfork. Fix bug whereby wrong errno value could be reported for
3566 pipe failure. Some minor cleanups, too, as follows. Move buf and
3567 bufsize to the context where they're needed. Change new_argv to
3568 be of type char **, as this is more convenient and avoids casts.
3569 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
3570 Now local constants, not macros.
3571
00dc3ead
KH
35722012-11-18 Kenichi Handa <handa@gnu.org>
3573
3574 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
3575 for the variable "f".
3576
e1bf05c1
KH
35772012-11-13 Kenichi Handa <handa@gnu.org>
3578
3579 * font.c (font_unparse_xlfd): Exclude special characters from the
3580 generating XLFD name.
3581
22626a85
PE
35822012-11-27 Paul Eggert <eggert@cs.ucla.edu>
3583
350e0088
PE
3584 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
3585 * dired.c (stat_uname, stat_gname):
3586 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
3587
22626a85
PE
3588 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
3589 * dired.c (directory_files_internal, file_name_completion):
3590 Assume EAGAIN and EINTR are defined.
350e0088 3591
22626a85
PE
3592 * fileio.c (Fcopy_file): Assume EISDIR is defined.
3593 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
3594 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
3595 * lread.c (readbyte_from_file): Assume EINTR is defined.
3596 * process.c (wait_reading_process_output, send_process) [subprocesses]:
3597 Assume EIO and EAGAIN are defined.
3598 * unexcoff.c (write_segment): Assume EFAULT is defined.
3599
5c9cf0a3 36002012-11-27 Eli Zaretskii <eliz@gnu.org>
3fa1e84d
EZ
3601
3602 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
3603 (Bug#11964)
3604
22294a56
EZ
3605 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
3606 highlighting on the frame was cleared. Prevents assertion
3607 violations when repeatedly clicking on the "Top" link of the
3608 "bread-crumbs" in Info buffers.
3609
5fbab051
PE
36102012-11-25 Paul Eggert <eggert@cs.ucla.edu>
3611
3612 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
3613
bcd77a2b
KB
36142012-11-24 Ken Brown <kbrown@cornell.edu>
3615
3616 * keyboard.c (HAVE_MOUSE):
3617 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
3618 were always defined.
3619
d125ca15 36202012-11-24 Eli Zaretskii <eliz@gnu.org>
8654a41b 3621
24becea4
EZ
3622 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
3623 between bpos_covered and bpos_max. This fixes cursor display when
3624 several display strings follow each other.
3625
8654a41b
EZ
3626 * .gdbinit (pgx): If the glyph's object is a string, display the
3627 pointer to string data, rather than the value of the string object
3628 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
3629
cb5867b1
EZ
3630 * indent.c (Fvertical_motion): If the starting position is covered
3631 by a display string, return to one position before that, to avoid
3632 overshooting it inside move_it_to. (Bug#12930)
3633
f418b22e
DA
36342012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
3635
3636 * frame.h (struct frame): Remove display_preempted member
3637 since all users are dead long ago.
3638 * nsterm.h (struct x_output): Use the only dummy member.
3639 * w32menu.c (pending_menu_activation): Remove since not
3640 really used.
3641 (set_frame_menubar): Adjust user.
3642 * w32term.h (struct x_output): Drop outdated #if 0 code.
3643 (struct w32_output): Use bitfields for explicit_parent,
26ec1f49
SM
3644 asked_for_visible and menubar_active members.
3645 Drop unused pending_menu_activation member.
f418b22e
DA
3646 * xterm.h (struct x_output): Drop outdated #if 0 code.
3647 Use bitfields for explicit_parent, asked_for_visible,
3648 has_been_visible and net_wm_state_hidden_seen members.
3649
a879f0ea
EZ
36502012-11-23 Eli Zaretskii <eliz@gnu.org>
3651
3652 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
3653 of a literal "/". (Bug#12955)
3654 (gl-stamp): Invoke fc.exe directly, not through cmd.
3655
95ef7787
PE
36562012-11-23 Paul Eggert <eggert@cs.ucla.edu>
3657
3658 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
3659 * dired.c: Assume HAVE_DIRENT_H.
3660 (NAMLEN): Remove, replacing with ...
3661 (dirent_namelen): New function. All uses changed. Use the GNU macro
3662 _D_EXACT_NAMELEN if available, as it's faster than strlen.
3663 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
3664 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
3665 * makefile.w32-in (DIR_H): Remove. All uses replaced with
3666 $(NT_INC)/dirent.h.
3667 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
3668 * ndir.h: Rename to ../nt/inc/dirent.h.
3669 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
3670 Do not include <dirent.h>; no longer needed.
3671 * w32.c: Include <dirent.h> rather than "ndir.h".
3672
12645ae6
CY
36732012-11-23 Chong Yidong <cyd@gnu.org>
3674
3675 * xftfont.c (xftfont_open): Remove duplicate assignment.
3676
5c747675
DA
36772012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
3678
3679 * alloc.c (Fgarbage_collect): Unblock input after clearing
3680 gc_in_progress to avoid note_mouse_highlight glitch with GC.
3681 * frame.h (FRAME_MOUSE_UPDATE): New macro.
3682 * msdos.c (IT_frame_up_to_date): Use it here...
3683 * w32term.c (w32_frame_up_to_date): ...here...
3684 * xterm.c (XTframe_up_to_date): ...and here...
3685 * nsterm.m (ns_frame_up_to_date): ...but not here.
3686 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
3687 Adjust users.
3688 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
3689 Do not check whether GC is in progress.
3690
6ceeb5f1
DA
36912012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
3692
3693 * xdisp.c (window_buffer_changed): New function.
3694 (update_menu_bar, update_tool_bar): Use it to
3695 simplify large 'if' statements.
3696 (redisplay_internal): Generalize commonly used
3697 'tail' and 'frame' local variables.
3698
ec84768f
EZ
36992012-11-22 Eli Zaretskii <eliz@gnu.org>
3700
3701 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
3702 with Windows system header.
3703
9239d970
PE
37042012-11-21 Paul Eggert <eggert@cs.ucla.edu>
3705
3706 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
3707 * alloc.c: Assume unistd.h exists.
3708 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
3709 * sysdep.c (get_current_dir_name): Assume getcwd exists.
3710 (getwd) [USG]: Remove; no longer needed.
3711 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
3712 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
3713 * w32.h (getcwd): Remove decl.
3714
954bba56
SM
37152012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3716
3717 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
3718 Make it set selected_window as well.
3719 (update_tool_bar): Use it.
3720
6ef2e5ef 37212012-11-21 Ken Brown <kbrown@cornell.edu>
4ffea447
KB
3722
3723 * emacs.c (main): Set the G_SLICE environment variable for all
3724 Cygwin builds, not just GTK builds. See
3725 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
3726
6ef2e5ef 37272012-11-21 Eli Zaretskii <eliz@gnu.org>
88c4a13c
EZ
3728
3729 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
3730 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
3731 Define for the MSVC compiler.
3732
6ef2e5ef 3733 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
273ac8d1
EZ
3734
3735 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
3736 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
3737 dostounix_filename. Prevents crashes down the road, because
26ec1f49
SM
3738 dostounix_filename assumes it gets a unibyte string.
3739 Reported by Michel de Ruiter <michel@sentient.nl>, see
273ac8d1
EZ
3740 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
3741
eadf1faa
SM
37422012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3743
3744 Conflate Qnil and Qunbound for `symbol-function'.
3745 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
3746 * lread.c (init_obarray): Set `function' fields to Qnil.
3747 * eval.c (Fcommandp): Ignore Qunbound.
3748 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
3749 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
3750 Test NILP rather than Qunbound.
3751 (Ffmakunbound): Set to Qnil.
3752 (Fsymbol_function): Never signal an error.
3753 (Finteractive_form): Ignore Qunbound.
3754
b83fdfa9
PE
37552012-11-20 Paul Eggert <eggert@cs.ucla.edu>
3756
3757 * eval.c (interactive_p): Remove no-longer-used decl.
3758
952580c5
DA
37592012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
3760
3761 * xdisp.c (buffer_shared): Adjust comment.
3762 (buffer_shared_and_changed): New function.
3763 (prepare_menu_bars, redisplay_internal): Use it to
3764 decide whether all windows or frames should be updated.
ea6de9b1
DA
3765 (window_outdated): New function.
3766 (text_outside_line_unchanged_p, redisplay_window): Use it.
3767 (redisplay_internal): Likewise. Fix indentation.
952580c5 3768
23ba2705
SM
37692012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3770
3771 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
3772 (syms_of_eval): Remove corresponding defsubr.
3773 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
3774
6e9f7997
DC
37752012-11-19 Daniel Colascione <dancol@dancol.org>
3776
3777 * w32fns.c (Fx_file_dialog):
3778 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
3779 cygwin_convert_file_name*.
3780
3781 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
3782 Rename cygwin_convert_path* to cygwin_convert_file_name*.
3783
552a1590
PE
37842012-11-18 Paul Eggert <eggert@cs.ucla.edu>
3785
3786 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
3787
2ac9538d 37882012-11-18 Eli Zaretskii <eliz@gnu.org>
d8715cdf
EZ
3789
3790 * w32select.c: Include w32common.h before w32term.h, so that
3791 windows.h gets included before w32term.h uses some of its
3792 features, see below.
3793
23ba2705
SM
3794 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
3795 New typedefs.
3796 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
3797 New prototypes.
d8715cdf
EZ
3798 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
3799
2ac9538d 38002012-11-18 Jan Djärv <jan.h.d@swipnet.se>
7436fc63
JD
3801
3802 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
3803 (ns_select): Return at once if events are held (Bug#12834).
3804
2ac9538d 38052012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
86dcf21c 3806
3807 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
3808 Needed following 2012-10-20 change. (Bug#12902)
3809
c1f7ba3a
JB
38102012-11-18 Juanma Barranquero <lekktu@gmail.com>
3811
3812 * w32proc.c (waitpid): Remove unused label get_result.
3813
a75ce9d3
JB
38142012-11-17 Juanma Barranquero <lekktu@gmail.com>
3815
3816 * makefile.w32-in (SYSWAIT_H): New macro.
3817 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
3818 ($(BLD)/sysdep.$(O)): Update dependencies.
3819
49cdacda
PE
38202012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3821
3822 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
3823 * callproc.c (relocate_fd): Assume F_DUPFD.
3824 * emacs.c, term.c (O_RDWR): Remove.
3825 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
3826 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
3827 * nsterm.m: Assume <fcntl.h> exists.
3828 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
3829 (create_pty, Fmake_network_process, server_accept_connection)
3830 (wait_reading_process_output, init_process_emacs):
3831 Assume O_NONBLOCK.
3832 (wait_reading_process_output): Put in a special case for WINDOWSNT
3833 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
3834 It's not clear this is needed, but it's a more-conservative change.
3835 (create_process): Assume FD_CLOEXEC.
3836 (create_process, create_pty): Assume O_NOCTTY.
3837 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
3838 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
3839 Omit if not DOS_NT, since F_GETFL is not defined there.
3840 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
3841 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
3842 (O_NOCTTY): Remove.
3843 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
3844 lack it, since gnulib guarantees this.
3845 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
3846
22bae83f
EZ
38472012-11-17 Eli Zaretskii <eliz@gnu.org>
3848
6ad30855
EZ
3849 * w32.c (faccessat): Pretend that directories have the execute bit
3850 set. Emacs expects that, e.g., in files.el:cd-absolute.
3851
22bae83f
EZ
3852 * w32proc.c (create_child): Don't clip the PID of the child
3853 process to fit into an Emacs integer, as this is no longer a
3854 restriction.
3855 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
3856 reaping only the process specified by PID argument, if that is
3857 positive. Use PID instead of dead_child to know which process to
3858 reap. Wait for the child to die only if WNOHANG is not in
3859 OPTIONS.
3860 (sys_select): Don't set dead_child.
3861
3862 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
3863 as it is no longer needed.
3864
3865 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
3866 no longer needed.
3867 (record_child_status_change): Remove the setting of
3868 record_at_most_one_child for the !WNOHANG case.
3869
a631d0e0
PE
38702012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3871
3872 Fix problems in ns port found by static checking.
3873 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
3874 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
3875 not to process group.
3876 (ns_select): Use emacs_write, not write, as that's more robust
3877 in the presence of signals.
3878 (fd_handler:): Check for read errors.
3879
d56f2e49
GM
38802012-11-16 Glenn Morris <rgm@gnu.org>
3881
3882 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
3883
96e05507 38842012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5c2a7148
SM
3885
3886 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
3887
96e05507 38882012-11-16 Eli Zaretskii <eliz@gnu.org>
730b2d8f
EZ
3889
3890 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
3891 use the same value of thread handle.
3892 (start_timer_thread): If the timer thread exited (due to error),
3893 clean up by closing the two handles it used. Duplicate the caller
3894 thread's handle here, so it gets duplicated only once, when
3895 launching the timer thread. Set priority of the timer thread, not
3896 the caller thread.
3897 (getitimer): Don't duplicate the caller thread's handle here.
3898 (Bug#12832)
3899
96e05507 39002012-11-16 Jan Djärv <jan.h.d@swipnet.se>
f99c65e5
JD
3901
3902 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
3903 called (Bug#12834).
3904
3d082a26
PE
39052012-11-16 Paul Eggert <eggert@cs.ucla.edu>
3906
3907 Remove no-longer-used pty_max_bytes variable.
3908 * process.c (pty_max_bytes): Remove; unused.
3909 (send_process): Do not set it.
3910
b72c161c
JB
39112012-11-15 Juanma Barranquero <lekktu@gmail.com>
3912
3913 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
3914 Update dependencies.
3915
bf20ea80
PE
39162012-11-15 Paul Eggert <eggert@cs.ucla.edu>
3917
3918 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
3919 This follows up on the 2012-09-29 patch that removed indirection
3920 for the 'function' field. Reported by Sergey Vinokurov in
3921 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
3922
14f20728
EZ
39232012-11-14 Eli Zaretskii <eliz@gnu.org>
3924
3925 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
3926 different name, as the MS runtime does not have such a function,
3927 and probably never will.) All callers changed. Ignore DIRFD
3928 value if PATH is an absolute file name, to match Posix spec
3929 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
3930 symlinks.
3931
77731919
DA
39322012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
3933
3934 * xdisp.c (echo_area_display, redisplay_internal):
3935 Omit redundant check whether frame_garbaged is set.
3936
73dcdb9f
PE
39372012-11-14 Paul Eggert <eggert@cs.ucla.edu>
3938
3939 Use faccessat, not access, when checking file permissions (Bug#12632).
3940 This fixes a bug that has been present in Emacs since its creation.
3941 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
3942 which must set some sort of record. (Torek's bug report was against
3943 a predecessor of GNU Emacs, but GNU Emacs happened to have the
3944 same common flaw.) See Torek's Usenet posting
3945 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
3946 Posted: Fri Apr 8 14:18:56 1983.
3947 * Makefile.in (LIB_EACCESS): New macro.
3948 (LIBES): Use it.
3949 * callproc.c (init_callproc):
3950 * charset.c (init_charset):
3951 * fileio.c (check_existing, check_executable, check_writable)
3952 (Ffile_readable_p):
3953 * lread.c (openp, load_path_check):
3954 * process.c (allocate_pty):
3955 * xrdb.c (file_p):
3956 Use effective UID when checking permissions, not real UID.
3957 * callproc.c (init_callproc):
3958 * charset.c (init_charset):
3959 * lread.c (load_path_check, init_lread):
3960 Test whether directories are accessible, not merely whether they exist.
3961 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
3962 * fileio.c (check_existing, check_executable, check_writable)
3963 (Ffile_readable_p):
3964 Use symbolic names instead of integers for the flags, as they're
3965 portable now.
3966 (check_writable): New arg AMODE. All uses changed.
3967 Set errno on failure.
3968 (Ffile_readable_p): Use faccessat, not stat + open + close.
3969 (Ffile_writable_p): No need to call check_existing + check_writable.
3970 Just call check_writable and then look at errno. This saves a syscall.
3971 dir should never be nil; replace an unnecessary runtime check
3972 with an eassert. When checking the parent directory of a nonexistent
3973 file, check that the directory is searchable as well as writable, as
3974 we can't create files in unsearchable directories.
3975 (file_directory_p): New function, which uses 'stat' on most platforms
3976 but faccessat with D_OK (for efficiency) if WINDOWSNT.
3977 (Ffile_directory_p, Fset_file_times): Use it.
3978 (file_accessible_directory_p): New function, which uses a single
3979 syscall for efficiency.
3980 (Ffile_accessible_directory_p): Use it.
3981 * xrdb.c (file_p): Use file_directory_p.
3982 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
3983 * lread.c (openp): When opening a file, use fstat rather than
3984 stat, as that avoids a permissions race. When not opening a file,
3985 use file_directory_p rather than stat.
3986 (dir_warning): First arg is now a usage string, not a format.
3987 Use errno. All uses changed.
3988 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
3989 that merely introduced a race.
3990 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
3991 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
3992 and similarly for the other O_* flags.
3993 * w32.c (sys_faccessat): Rename from sys_access and switch to
3994 faccessat's API. All uses changed.
3995 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
3996 (magic_db): Rename from magic_file_p.
3997 (magic_db, search_magic_path): Return an XrmDatabase rather than a
3998 char *, so that we don't have to test for file existence
3999 separately from opening the file for reading. This removes a race
4000 fixes a permission-checking problem, and simplifies the code.
4001 All uses changed.
4002 (file_p): Remove; no longer needed.
4003
2a14f83b
DA
40042012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
4005
4006 Omit glyphs initialization at startup.
4007 * dispnew.c (glyphs_initialized_initially_p): Remove.
4008 (adjust_frame_glyphs_initially): Likewise. Adjust users.
4009 (Fredraw_frame): Move actual code from here...
c7085245 4010 (redraw_frame): ...to here. Add eassert. Adjust comment.
2a14f83b
DA
4011 (Fredraw_display): Use redraw_frame.
4012 * xdisp.c (clear_garbaged_frames): Likewise.
4013
f78ee6af 40142012-11-13 Eli Zaretskii <eliz@gnu.org>
32520273
EZ
4015
4016 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
4017 passed to pint2str and pint2hrstr to be at most the size of the
4018 frame's decode_mode_spec_buffer. This avoids crashes with very
4019 large values of FIELD_WIDTH argument to decode_mode_spec.
4020 (Bug#12867)
4021
b95a9c0c
PE
40222012-11-13 Paul Eggert <eggert@cs.ucla.edu>
4023
4024 Fix a race with verify-visited-file-modtime (Bug#12863).
4025 Since at least 1991 Emacs has ignored an mtime difference of no
4026 more than one second, but my guess is that this was to work around
4027 file system bugs that were fixed long ago. Since the race is
4028 causing problems now, let's remove that code.
4029 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
4030 whose time stamp is off by no more than a second. Insist that the
4031 file time stamps match exactly.
4032
be49ba74
DA
40332012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
4034
4035 * frame.h (struct frame): Convert external_tool_bar member to
4036 1-bit unsigned bitfield.
4037 * termhooks.h (struct terminal): Remove mouse_moved member since
4038 all users are long dead. Adjust comment on mouse_position_hook.
4039
5b04e9f9
DA
40402012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
4041
4042 Simplify by using FOR_EACH_FRAME here and there.
4043 * frame.c (next_frame, prev_frame, other_visible_frames)
4044 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
4045 * w32term.c (x_window_to_scroll_bar): Likewise.
4046 * window.c (window_list): Likewise.
4047 * xdisp.c (x_consider_frame_title): Likewise.
4048 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
4049 * xfns.c (x_window_to_frame, x_any_window_to_frame)
4050 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
4051 * xmenu.c (menubar_id_to_frame): Likewise.
4052 * xselect.c (frame_for_x_selection): Likewise.
4053 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
4054 (x_window_to_menu_bar): Likewise.
4055 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
4056
76ae24d7
PE
40572012-11-12 Paul Eggert <eggert@cs.ucla.edu>
4058
12cc4337
PE
4059 * data.c (Qdefalias_fset_function): Now static.
4060
76ae24d7
PE
4061 Another tweak to vectorlike_header change.
4062 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
4063 Remove, and replace all uses with ...
4064 (next_in_free_list, set_next_in_free_list):
4065 New functions, which respect C's aliasing rules better.
4066
1479c557
PE
40672012-11-11 Paul Eggert <eggert@cs.ucla.edu>
4068
4069 * window.c (list4i): Rename from 'quad'. All uses changed.
4070 Needed because <sys/types.h> defines 'quad' on Solaris 10.
4071
11235c03
JB
40722012-11-11 Juanma Barranquero <lekktu@gmail.com>
4073
4074 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
4075 warning about mixing declarations and code in ISO C90.
4076
6baf66d5 40772012-11-10 Martin Rudalics <rudalics@gmx.at>
fdaf534a
MR
4078
4079 * window.c (Fsplit_window_internal): Set combination limit of
4080 new parent window to t iff Vwindow_combination_limit is t;
4081 fixing a regression introduced with the change from 2012-09-22.
6baf66d5 4082 (Fset_window_combination_limit): Fix doc-string.
fdaf534a 4083
6baf66d5 40842012-11-10 Eli Zaretskii <eliz@gnu.org>
acf93bcf
EZ
4085
4086 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
4087 amount when the scroll margins are too large. When scrolling
4088 backwards in the buffer, give up if cannot reach point or the
23ba2705
SM
4089 scroll margin within a reasonable number of screen lines.
4090 Fixes point position in window under scroll-up/down-aggressively when
acf93bcf
EZ
4091 point is positioned many lines beyond the window top/bottom.
4092 (Bug#12811)
4093
508f51f5
EZ
4094 * ralloc.c (relinquish): If real_morecore fails to return memory
4095 to the system, don't crash; instead, leave the last heap
4096 unchanged and return. (Bug#12774)
4097
32e5c58c
SM
40982012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4099
4100 * lisp.h (AUTOLOADP): New macro.
4101 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
4102 * data.c (Ffset): Remove special ad-advice-info handling.
4103 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
4104 (Fsubr_arity): CSE.
4105 (Finteractive_form): Simplify.
4106 (Fquo): Don't insist on having at least 2 arguments.
4107 (Qdefalias_fset_function): New var.
4108
719b0aa5
JD
41092012-11-09 Jan Djärv <jan.h.d@swipnet.se>
4110
4ab15c3e
JD
4111 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
4112
719b0aa5
JD
4113 * nsfont.m (Qcondensed, Qexpanded): New variables.
4114 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
4115 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
4116
535cc8e9
DA
41172012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
4118
4119 Fix recently introduced crash on MS-Windows (Bug#12839).
4120 * w32term.h (struct scroll_bar): Use convenient header.
4121 (SCROLL_BAR_VEC_SIZE): Remove.
4122 * w32term.c (x_scroll_bar_create): Use VECSIZE.
4123
7d377c48
DA
41242012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
4125
4126 Tweak last vectorlike_header change.
4127 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
4128 vectorlike object on the free list. This is introduced to avoid
4129 some (but not all) pointer casting and aliasing problems, see
4130 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
4131 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
4132 objects.
4133 (xvectype, xvecsize): Use them to examine Lisp_Object values.
4134
7ad27466
JD
41352012-11-09 Jan Djärv <jan.h.d@swipnet.se>
4136
32e5c58c 4137 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
7ad27466
JD
4138 been removed, so remove them here also.
4139
57618ecf
SM
41402012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4141
4142 * doc.c (Fdocumentation): Handle new property
4143 dynamic-docstring-function to replace the old ad-advice-info.
4144
53371430
PE
41452012-11-09 Paul Eggert <eggert@cs.ucla.edu>
4146
4147 * fns.c (Qeql, hashtest_eq): Now static.
4148
61ddb1b9
SM
41492012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4150
4151 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
4152 * fns.c (hashfn_eq, hashfn_eql, sxhash):
4153 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
4154 * buffer.c (compare_overlays): Use XLI rather than XHASH.
4155
04a2d0d3
PE
41562012-11-08 Paul Eggert <eggert@cs.ucla.edu>
4157
4158 Use same hash function for hashfn_profiler as for hash_string etc.
4159 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
4160 * lisp.h (sxhash_combine): New inline function, with the contents
4161 of the old SXHASH_COMBINE.
4162 * profiler.c (hashfn_profiler): Use it, instead of having a
4163 special hash function containing a comparison that always yields 1.
4164
de5ef41a
SM
41652012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4166
4167 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
4168 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
4169 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
4170 Remove unused vars.
4171
a23c4171
JD
41722012-11-08 Jan Djärv <jan.h.d@swipnet.se>
4173
4174 * image.c (xpm_make_color_table_h): Fix compiler error because
4175 make_hash_table changed.
4176
0b59090b 41772012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
074d7bb0
JD
4178
4179 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
4180
b7432bb2
SM
41812012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 Use ad-hoc comparison function for the profiler's hash-tables.
4184 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
4185 (make_log): Use them.
4186 (handle_profiler_signal): Don't inhibit quit any longer since we don't
4187 call Fequal any more.
4188 (Ffunction_equal): New function.
4189 (cmpfn_profiler, hashfn_profiler): New functions.
4190 (syms_of_profiler): Initialize them.
4191 * lisp.h (struct hash_table_test): New struct.
4192 (struct Lisp_Hash_Table): Use it.
4193 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
4194 * fns.c (make_hash_table): Take a struct to describe the test.
4195 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
4196 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
4197 (hash_lookup, hash_remove_from_table): Move assertion checking of
4198 hashfn result here. Check hash-equality before calling cmpfn.
4199 (Fmake_hash_table): Adjust call to make_hash_table.
4200 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
4201 (syms_of_fns): Initialize them.
4202 * emacs.c (main): Move syms_of_fns earlier.
4203 * xterm.c (syms_of_xterm):
4204 * category.c (hash_get_category_set): Adjust call to make_hash_table.
4205 * print.c (print_object): Adjust to new hash-table struct.
4206 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
4207
88002743
EZ
42082012-11-08 Eli Zaretskii <eliz@gnu.org>
4209
4210 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
4211 value of w32-scroll-lock-modifier is neither nil nor one of the
4212 known key modifiers. (Bug#12806)
4213
914adc42
DA
42142012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
4215
4216 Shrink struct vectorlike_header to the only size field.
4217 * lisp.h (enum pvec_type): Avoid explicit enum member values.
4218 Adjust comment.
4219 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
4220 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
4221 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
4222 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
4223 information from the vector header. Adjust comment.
4224 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
4225 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
4226 layout.
4227 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
4228 (struct vectorlike_header): Remove next member. Adjust comment.
4229 (struct Lisp_Subr): Add convenient header. Adjust comment.
4230 (allocate_pseudovector): Adjust prototype.
4231 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
4232 (sweep_string, lisp_malloc): Remove useless prototypes.
4233 (enum mem_type): Adjust comment.
4234 (NEXT_IN_FREE_LIST): New macro.
4235 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
4236 (Fmake_bool_vector): Likewise.
4237 (struct large_vector): New type to represent allocation unit for
4238 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
4239 (large_vectors): Change type to struct large_vector.
4240 (allocate_vector_from_block): Simplify.
4241 (PSEUDOVECTOR_NBYTES): Replace with...
4242 (vector_nbytes): ...new function. Adjust users.
4243 (sweep_vectors): Adjust processing of large vectors.
4244 (allocate_vectorlike): Likewise.
4245 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
4246 Add easserts. Adjust XSETPVECTYPESIZE usage.
4247 (allocate_buffer): Use BUFFER_PVEC_INIT.
4248 (live_vector_p): Adjust to match large vector.
4249 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
4250 * buffer.h (struct buffer): Add next member.
4251 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
4252 New macros.
4253 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
4254 * fns.c (internal_equal): Adjust to match enum pvec_type change.
4255 (copy_hash_table): Adjust to match vector header change.
4256 * lread.c (defsubr): Use XSETPVECTYPE.
4257 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
4258 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
4259 (xvecsize): New command.
4260
c66f21ea
DA
42612012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
4262
4263 * keyboard.c (event_to_kboard): Do not dereference
4264 frame_or_window field of SELECTION_REQUEST_EVENT
4265 and SELECTION_CLEAR_EVENT events (Bug#12814).
4266 * xterm.h (struct selection_input_event): Adjust comment.
4267
eb147960
EZ
42682012-11-07 Eli Zaretskii <eliz@gnu.org>
4269
dab72075
EZ
4270 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
4271 such as Scroll Lock, if the respective keys are treated as
4272 function keys, not as modifiers. This avoids destroying non-ASCII
6b064c16 4273 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
eb147960 4274
5890e400
DA
42752012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
4276
4277 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
4278
b6b3b294
PE
42792012-11-06 Paul Eggert <eggert@cs.ucla.edu>
4280
4281 Restore some duplicate definitions (Bug#12814).
4282 This undoes part of the 2012-11-03 changes. Some people build
4283 with plain -g rather than with -g3, and they need the duplicate
4284 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
4285 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
4286 Define as macros, as well as as enums or as constants.
4287
e770aad5
JD
42882012-11-06 Jan Djärv <jan.h.d@swipnet.se>
4289
4290 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
4291 to keypad keys (Bug#12816).
4292
68f8f1c0
PE
42932012-11-06 Paul Eggert <eggert@cs.ucla.edu>
4294
4295 Minor adjustments of recently-changed frame functions.
4296 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
4297 known to be a frame (we're in the FRAMEP branch).
4298 * lisp.h (Qframep): Remove decl. frame.h declares this.
4299 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
4300 since they're meant for Lisp fixnum values.
4301
72f94d4b
DA
43022012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4303
4304 * window.c (Fwindow_combination_limit): Revert to the only
4305 required argument and adjust docstring as suggested in
4306 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
4307 by Martin Rudalics <rudalics@gmx.at>.
4308
d9f07150
DA
43092012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4310
4311 Widely used frame validity and checking functions.
4312 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
4313 * frame.c (decode_live_frame, decode_any_frame): New functions.
4314 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
4315 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
4316 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
4317 (Fframe_pointer_visible_p): Use decode_any_frame.
4318 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
4319 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
4320 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
4321 (Fframe_focus): Likewise. Allow zero number of arguments.
4322 Adjust docstring.
4323 (frame_buffer_list, frame_buffer_predicate): Remove.
4324 * lisp.h (frame_buffer_predicate): Remove prototype.
4325 * buffer.c (Fother_buffer): Use decode_any_frame.
4326 * xdisp.c (Ftool_bar_lines_needed): Likewise.
4327 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
4328 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
4329 (Fclose_font, Ffont_info): Use decode_live_frame.
4330 * fontset.c (check_fontset_name): Likewise.
4331 * terminal.c (Fframe_terminal): Likewise.
4332 * w32fns.c (check_x_frame): Likewise.
4333 * window.c (Fminibuffer_window, Fwindow_at)
4334 (Fcurrent_window_configuration): Likewise.
4335 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
4336 Likewise. Allow zero number of arguments. Adjust docstring.
4337 * dispnew.c (Fredraw_frame): Likewise.
4338 * xfaces.c (frame_or_selected_frame): Remove.
4339 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
4340 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
4341 (Fframe_face_alist): Use decode_live_frame.
4342 * xfns.c (check_x_frame): Likewise.
4343
89bc0592
DA
43442012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4345
4346 * window.c (quad): New function.
4347 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
4348 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
4349 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
4350 (Fwindow_line_height): Use it.
4351 (Fwindow_fringes): Use list3.
4352 (Fwindow_scroll_bars): Use list4.
4353 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
4354 (Fwindow_combination_limit): Allow zero number of arguments.
4355
c8e3a9c3
EZ
43562012-11-05 Eli Zaretskii <eliz@gnu.org>
4357
4358 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
4359
8e2417bf 4360 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
c8e3a9c3 4361 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
ae600a8e 4362 file descriptor 2 for standard error. (Bug#12805)
c8e3a9c3 4363
209c6a58
CY
43642012-11-05 Chong Yidong <cyd@gnu.org>
4365
4366 * process.c (wait_reading_process_output): Revert previous change.
4367
8148369c
PE
43682012-11-05 Paul Eggert <eggert@cs.ucla.edu>
4369
dd0333b6
PE
4370 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
4371 This removes code that has been obsolete since around 1990.
4372 * callproc.c (Fcall_process):
4373 * emacs.c (main):
4374 * process.c (create_process):
4375 * term.c (dissociate_if_controlling_tty):
4376 Assume setsid exists.
4377 * callproc.c (child_setup): Assume setpgid exists and behaves as
4378 per POSIX.1-1988 or later.
4379 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
4380 * emacs.c (shut_down_emacs):
4381 * sysdep.c (sys_suspend, init_foreground_group):
4382 Assume getpgrp behaves as per POSIX.1-1998 or later.
4383 * msdos.c (setpgrp): Remove.
4384 (tcgetpgrp, setpgid, setsid): New functions.
4385 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
4386 * term.c (no_controlling_tty): Remove; unused.
4387 * w32proc.c (setpgrp): Remove.
4388 (setsid, tcgetpgrp): New functions.
4389
8148369c
PE
4390 Simplify by assuming __fpending.
4391 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
4392 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
4393 Do not assume that __fpending's result fits in int.
4394
76abf5e5
PE
43952012-11-04 Paul Eggert <eggert@cs.ucla.edu>
4396
06b63c9b
PE
4397 Remove EMACS_OUTQSIZE+sleep hack.
4398 * dispnew.c (update_frame_1): Remove hack for terminals slower
de5ef41a
SM
4399 than 2400 bps, which throttled Emacs by having it sleep.
4400 This code hasn't worked since at least 2007, when the multi-tty stuff
06b63c9b
PE
4401 was added, and anyway those old terminals are long dead.
4402 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
4403 without the dispnew.c change, as dispnew.c doesn't include systty.h.
4404
76abf5e5
PE
4405 Fix data-loss with --version (Bug#9574).
4406 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
4407 as we can't assume that emacs_strerror is initialized, and strerror
4408 is good enough here.
4409 (main): Invoke atexit earlier, to catch earlier instances of
4410 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
4411
8f31e74b
MM
44122012-11-04 Michael Marchionna <tralfaz@pacbell.net>
4413
4414 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
4415 (keyDown): Remap keypad keys to X11 virtual key codes.
4416
0d879dca
PE
44172012-11-03 Paul Eggert <eggert@cs.ucla.edu>
4418
7ccfb720
PE
4419 Fix data-loss with --batch (Bug#9574).
4420 * emacs.c: Include <close-stream.h>.
4421 (close_output_streams): New function.
4422 (main): Pass it to atexit, so that Emacs closes stdout and stderr
4423 and handles errors appropriately.
4424 (Fkill_emacs): Don't worry about flushing, as close_output_stream
4425 does that now.
4426
0b3d4a47
PE
4427 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
4428 The symptom is a diagnostic "GLib-WARNING **: In call to
4429 g_spawn_sync(), exit status of a child process was requested but
4430 SIGCHLD action was set to SIG_IGN and ECHILD was received by
4431 waitpid(), so exit status can't be returned." The diagnostic
4432 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
4433 The real bug is a race condition between Emacs and glib: Emacs
4434 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
4435 so that glib can't find it. Work around the bug by invoking
4436 waitpid only on subprocesses that Emacs itself creates.
4437 * process.c (create_process, record_child_status_change):
4438 Don't use special value -1 in pid field, as the caller now must
de5ef41a
SM
4439 know the pid rather than having the callee infer it.
4440 The inference was sometimes incorrect anyway, due to another race.
0b3d4a47
PE
4441 (create_process): Set new 'alive' member if child is created.
4442 (process_status_retrieved): New function.
4443 (record_child_status_change): Use it.
4444 Accept negative 1st argument, which means to wait for the
4445 processes that Emacs already knows about. Move special-case code
4446 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
4447 processes that have already been waited for, by testing and
4448 clearing new 'alive' member.
4449 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
4450 now does this internally.
4451 (handle_child_signal): Let record_child_status_change do all
4452 the work, since we do not want to reap all exited child processes,
4453 only the child processes that Emacs itself created.
4454 * process.h (Lisp_Process): New boolean member 'alive'.
4455
0d879dca
PE
4456 Omit duplicate definitions no longer needed with gcc -g3.
4457 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
4458 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
4459 Define only as macros. There's no longer any need to also define
4460 these symbols as enums or as constants, since we now assume
4461 gcc -g3 when debugging.
4462
3478f4b5
EZ
44632012-11-03 Eli Zaretskii <eliz@gnu.org>
4464
4465 * lisp.mk: Adjust comments to the fact that term/internal is now
4466 loaded from loadup.el.
4467
4468 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
4469 (msdos_fatal_signal): New function.
4470 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
4471 its argument list.
4472
4473 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
4474 for GCC versions before 4.
4475 (emacs_raise): Define to call msdos_fatal_signal.
4476
4477 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
4478 iterator when starting in the middle of a display or overlay
4479 string. (Bug#12745)
4480
85fabcb7
CY
44812012-11-03 Chong Yidong <cyd@gnu.org>
4482
4483 * process.c (wait_reading_process_output): Clean up the last
4484 change.
4485
893cc455
CY
44862012-11-03 Jim Paris <jim@jtan.com> (tiny change)
4487
4488 * process.c (wait_reading_process_output): Avoid a race condition
4489 with SIGIO delivery (Bug#11536).
4490
0f7b074f
CY
44912012-11-03 Chong Yidong <cyd@gnu.org>
4492
4493 * buffer.c (cursor_type): Untabify docstring.
4494
3737fee7
DA
44952012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
4496
4497 * frame.h (struct frame): Drop can_have_scroll_bars member
4498 which is meaningless for a long time. Adjust comments.
4499 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
4500 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
4501
b6a9e8b1
DA
45022012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
4503
4504 * window.c (decode_next_window_args): Update window arg after
4505 calling decode_live_window and so fix crash reported at
4506 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
4507 by Juanma Barranquero <lekktu@gmail.com>.
4508 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
4509 * font.c (Ffont_at): Likewise.
4510
600d4768
JD
45112012-11-01 Jan Djärv <jan.h.d@swipnet.se>
4512
4513 * widget.c (resize_cb): New function.
4514 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
4515 (EmacsFrameResize): Check if all is up to date before changing frame
4516 size.
4517
1005b4b9
EZ
45182012-11-02 Eli Zaretskii <eliz@gnu.org>
4519
4520 Implement backtrace output for fatal errors on MS-Windows.
4521 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
4522 (BACKTRACE_LIMIT_MAX): New macro.
4523 (w32_backtrace): New function.
4524 (emacs_abort): Use w32_backtrace when the user chooses not to
4525 attach a debugger. Update the text of the abort dialog.
4526
b9e9df47
DA
45272012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
4528
4529 Window-related stuff cleanup here and there.
4530 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
4531 Use decode_any_window.
4532 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
4533 * xdisp.c (Fformat_mode_line): Likewise.
4534 * font.c (Ffont_at): Use decode_live_window.
4535 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
4536 * window.c (decode_next_window_args): Likewise.
4537 (decode_any_window): Remove static.
4538 * window.h (decode_any_window): Add prototype.
4539 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
4540 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
4541 respectively.
4542
2b371ff7
DA
45432012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
4544
4545 Remove pad from struct input_event.
4546 * termhooks.h (struct input_event): Remove padding field.
4547 Adjust comment.
4548 * keyboard.c (event_to_kboard): Simplify because frame_or_window
4549 member is never cons for a long time. Adjust comment.
4550 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
4551 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
4552 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
4553 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
4554
7e8b50d9
EZ
45552012-11-01 Eli Zaretskii <eliz@gnu.org>
4556
4557 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
4558
322aea6d
PE
45592012-10-31 Paul Eggert <eggert@cs.ucla.edu>
4560
4561 Fix crash when using Emacs as commit editor for git (Bug#12697).
4562 * callproc.c (setpgrp): Remove macro, as we now use setpgid
4563 and it is configured in conf_post.h.
4564 (Fcall_process): Don't invoke both setsid and setpgid; the former
4565 is enough, if it exists.
4566 * callproc.c (Fcall_process, child_setup):
4567 * process.c (create_process): Use setpgid.
4568 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
4569 for the real thing.
4570 * dispnew.c (init_display): Initialize the foreground group
4571 if we are running a tty display.
4572 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
4573 * lisp.h (init_foreground_group): New decl.
4574 * sysdep.c (inherited_pgroup): New static var.
4575 (init_foreground_group, tcsetpgrp_without_stopping)
4576 (narrow_foreground_group, widen_foreground_group): New functions.
4577 (init_sys_modes): Narrow foreground group.
4578 (reset_sys_modes): Widen foreground group.
4579
220cb2bd
MA
45802012-10-31 Michael Albinus <michael.albinus@gmx.de>
4581
4582 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
4583
218e997a
MR
45842012-10-31 Martin Rudalics <rudalics@gmx.at>
4585
4586 * minibuf.c (read_minibuf): Restore current buffer since
4587 choose_minibuf_frame calling Fset_frame_selected_window may
4588 change it (Bug#12766).
4589
02615da0
JD
45902012-10-30 Jan Djärv <jan.h.d@swipnet.se>
4591
4592 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
4593
aee5b18e
KH
45942012-10-30 Kenichi Handa <handa@gnu.org>
4595
4596 * font.c (Ffont_at): If WINDOW is specified and it is not
4597 displaying the current buffer, signal an error.
4598
ba116008
DC
45992012-10-29 Daniel Colascione <dancol@dancol.org>
4600
de5ef41a
SM
4601 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
4602 In preparation for fixing bug#12739, move these functions from
ba116008
DC
4603 here...
4604
4605 * coding.h, coding.c: ... to here, and compile them only when
53372c27
DC
4606 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
4607 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
ba116008 4608
640bf8ad
EZ
46092012-10-28 Eli Zaretskii <eliz@gnu.org>
4610
4611 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
4612 (timer_loop, getitimer, setitimer): Use it instead of
4613 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
4614 'clock'.
4615 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
4616 literal 10000.
4617
64ccff5f
JD
46182012-10-28 Jan Djärv <jan.h.d@swipnet.se>
4619
4620 * nsterm.m (NO_APPDEFINED_DATA): New define.
4621 (last_appdefined_event_data): New variable
4622 (last_appdefined_event): Remove.
4623 (ns_select): Initialize t from last_appdefined_event_data instead
4624 of [last_appdefined_event data1].
4625 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
4626 remove last_appdefined_event (Bug#12698).
4627
e483264c
SM
46282012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4629
4630 * frame.c (x_set_font): Catch internal error.
4631
6c16c13e
EZ
46322012-10-27 Eli Zaretskii <eliz@gnu.org>
4633
e483264c
SM
4634 Avoid overflow in w32 implementation of interval timers.
4635 When possible, for ITIMER_PROF count only times the main thread
6c16c13e
EZ
4636 actually executes.
4637 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
2e612797
EZ
4638 'volatile ULONGLONG' types. All the other data which was
4639 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
6c16c13e
EZ
4640 (GetThreadTimes_Proc): New typedef.
4641 (w32_get_timer_time): New function, returns a suitable time value
4642 for the timer.
4643 (timer_loop): Enter critical section when accessing ULONGLONG
4644 values of the itimer_data struct, as these accesses are no longer
e483264c
SM
4645 atomic. Call 'w32_get_timer_time' instead of 'clock'.
4646 Remove unused variable.
6c16c13e
EZ
4647 (init_timers): Initialize s_pfn_Get_Thread_Times.
4648 (start_timer_thread): Don't assign itimer->caller_thread here.
4649 (getitimer): Assign itimer->caller_thread here.
4650 (setitimer): Always call getitimer to get the value of ticks_now.
2f246cd3 4651 (sys_spawnve): Avoid compiler warning about format mismatch.
6c16c13e 4652
ccc83f50
EZ
46532012-10-26 Eli Zaretskii <eliz@gnu.org>
4654
4655 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
4656 mouse movement events if the menu bar is active. This avoids
4657 producing a busy "hour-glass" cursor by Windows if the mouse
4658 pointer is positioned over a tooltip shown for some menu item.
4659
69deda53
PE
46602012-10-25 Paul Eggert <eggert@cs.ucla.edu>
4661
4662 Don't assume process IDs fit in int.
4663 * emacs.c (shut_down_emacs) [!DOS_NT]:
4664 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
4665 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
4666 Use pid_t, not int, to store process IDs, as 'int'
4667 is not wide enough on a few platforms (e.g., AIX and IRIX).
4668
7e70a152
KH
46692012-10-23 Kenichi Handa <handa@gnu.org>
4670
4671 The following change is to make face-font-rescale-alist work
4672 correctly for non-ASCII fonts.
4673
4674 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
4675 (font_open_for_lface): Handle Vface_font_rescale_alist.
4676
49238e7f
CY
46772012-10-23 Chong Yidong <cyd@gnu.org>
4678
4679 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
4680
5ec86886
JD
46812012-10-21 Jan Djärv <jan.h.d@swipnet.se>
4682
ef446959
JD
4683 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
4684 for screen font.
4685 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
4686
5ec86886
JD
4687 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
4688 event (Bug#12681).
4689
ee7a418d
GM
46902012-10-21 Glenn Morris <rgm@gnu.org>
4691
4692 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
4693
4973679b
PE
46942012-10-20 Paul Eggert <eggert@cs.ucla.edu>
4695
4696 Port to OpenBSD 5.1.
4697 * frame.c (Fmouse_position, Fmouse_pixel_position):
4698 * xdisp.c (produce_stretch_glyph):
4699 Declare local vars only when they're needed.
4700 This is clearer and avoids a warning on OpenBSD about unused vars.
4701 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
4702 This is safer, and avoids OpenBSD warnings about unused vars.
4703 * keyboard.c (record_menu_key): Remove unnecessary decl.
4704 (poll_timer): Define only if POLL_FOR_INPUT is defined.
4705 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
4706 as our definition clashes with OpenBSD's.
4707 * xfaces.c (load_face_colors, check_lface_attrs)
4708 (get_lface_attributes_no_remap, get_lface_attributes)
4709 (lface_fully_specified_p, x_supports_face_attributes_p)
4710 (tty_supports_face_attributes_p, face_fontset, realize_face)
4711 (realize_x_face, realize_tty_face):
4712 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
4713 merely Lisp_Object *. This is more informative and avoids
4714 a warning on OpenBSD about accessing beyond an object's size.
4715
c664f463
CY
47162012-10-20 Chong Yidong <cyd@gnu.org>
4717
4718 * lread.c (Fload): Doc fix (Bug#12592).
4719
6ec83f92 47202012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
a0d7415f
KH
4721
4722 * font.c (Ffont_at): Fix previous change.
4723
d2824928
EZ
47242012-10-19 Eli Zaretskii <eliz@gnu.org>
4725
e483264c
SM
4726 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
4727 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
c052c554
EZ
4728 for the reasons.
4729
d2824928
EZ
4730 * alloc.c (NSTATICS): Decrease to 0x800.
4731
f60d391f
SM
47322012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4733
4a0e1924 4734 * fns.c (Fnreverse): Include the problem element when signaling an
f60d391f
SM
4735 error (bug#12677).
4736
1a9327d5
JD
47372012-10-18 Jan Djärv <jan.h.d@swipnet.se>
4738
4739 * nsterm.m (ns_select): Check writefds before call to
4740 FD_ISSET (Bug#12668).
4741
14145a1e
DC
47422012-10-18 Daniel Colascione <dancol@dancol.org>
4743
4744 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
4745 (staticpro): If we run out of staticpro slots, die with an
4746 informative error instead of just calling emacs_abort.
4747
1f76f6f5
MR
47482012-10-18 Martin Rudalics <rudalics@gmx.at>
4749
4750 Fix two flaws reported by Dmitry Antipov.
4751 * window.c (Ftemp_output_buffer_show): Remove.
4752 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
4753 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
4754
fcf14875
EZ
47552012-10-17 Eli Zaretskii <eliz@gnu.org>
4756
1f76f6f5
MR
4757 * makefile.w32-in ($(BLD)/w32.$(O)):
4758 ($(BLD)/vm-limit.$(O)):
4759 ($(BLD)/term.$(O)):
4760 ($(BLD)/unexw32.$(O)):
4761 ($(BLD)/fileio.$(O)):
a68089e4
EZ
4762 ($(BLD)/dispnew.$(O)): Update dependencies.
4763
4764 * w32term.h (w32_initialize_display_info, initialize_w32_display):
4765 Add prototypes.
4766
4767 * w32proc.c: Include ctype.h.
4768
4769 * w32.h (init_environment, check_windows_init_file)
4770 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
4771 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
4772 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
4773 (sys_link): Add prototypes.
4774
4775 * w32.c: Include w32select.h.
4776 (sys_access, e_malloc, sys_select): Add prototypes.
4777 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
4778
4779 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
4780
4781 * unexw32.c: Include lisp.h and w32.h.
4782
4783 * term.c [WINDOWSNT]: Include w32term.h.
4784
4785 * process.c [WINDOWSNT]: Add prototype of sys_select.
4786
4787 * fileio.c [WINDOWSNT]: Include w32.h.
4788
4789 * dispnew.c [WINDOWSNT]: Include w32.h.
4790
fcf14875
EZ
4791 * cygw32.c (Fcygwin_convert_path_to_windows)
4792 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
4793 Lisp_Object values. (Bug#12661)
4794
4795 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
4796 to Lisp_Object. (Bug#12661)
4797
fe0b1ec4
KH
47982012-10-17 Kenichi Handa <handa@gnu.org>
4799
4800 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
4801 invalidate.
4802
d556ebf9
DA
48032012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4804
4805 * buffer.c (Fkill_buffer): When unchaining the marker,
1f9f395d 4806 reset its buffer pointer to NULL (Bug#12652).
d556ebf9 4807
f0863a54
DA
48082012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4809
4810 Do not verify indirection counters of killed buffers (Bug#12579).
4811 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
4812 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
4813
12fbe755
DA
48142012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
4815
4816 * alloc.c (Fmake_byte_code): Fix typo in comment.
4817 * print.c (print_interval): Define as static to match prototype.
4818 * indent.c (disptab_matches_widthtab, recompute_width_table):
4819 Convert to eassert.
4820
61655b89
DA
48212012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
4822
4823 * editfns.c (get_system_name): Remove.
4824 * lisp.h (get_system_name): Remove prototype.
4825 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
4826 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
4827
9520f2f2
DC
48282012-10-15 Daniel Colascione <dancol@dancol.org>
4829
4830 * dbusbind.c: Add comment explaining reason for previous change.
4831
dca778d5
MR
48322012-10-15 Martin Rudalics <rudalics@gmx.at>
4833
4834 * window.c (Fwindow_end): Rewrite check whether cached position
4835 can be used (Bug#12600).
4836 (resize_frame_windows, grow_mini_window, shrink_mini_window):
4837 Set windows_or_buffers_changed.
4838
3e0341b0
DC
48392012-10-15 Daniel Colascione <dancol@dancol.org>
4840
4841 * dbusbind.c: Fix cygw32 build break when compiling with dbus
4842 enabled by undefining the symbol "interface", which the platform
4843 headers define to something incompatible.
4844
33d4113c
DC
48452012-10-14 Daniel Colascione <dancol@dancol.org>
4846
4847 * image.c (init_tiff_functions, init_imagemagick_functions)
4848 (init_svg_functions): Fix cygw32 build break by using these
4849 functions only when WINDOWSNT _and_ HAVE_NTGUI.
4850
a36fb15e
JD
48512012-10-14 Jan Djärv <jan.h.d@swipnet.se>
4852
4853 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
4854
537f336d
JD
48552012-10-13 Jan Djärv <jan.h.d@swipnet.se>
4856
4857 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
4858
0ba06a77
KH
48592012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
4860
4861 * coding.c (detect_coding): Set coding->id before calling
4862 this->detector.
4863
ce2fe65a
AS
48642012-10-13 Andreas Schwab <schwab@linux-m68k.org>
4865
4866 * fileio.c: Formatting fixes.
4867
d6453ce4
PE
48682012-10-13 Paul Eggert <eggert@cs.ucla.edu>
4869
4870 Fix some stat-related races.
4871 * fileio.c (Fwrite_region): Avoid race condition if a file is
4872 removed or renamed by some other process immediately after Emacs
4873 writes it but before Emacs stats it. Do not assume that stat (or
4874 fstat) succeeds.
4875 * image.c (slurp_file): Resolve the file name with fopen + fstat
4876 rather than stat + fopen.
4877 (pbm_read_file) [0]: Remove unused code with stat race.
4878 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
4879 Remove ineffective code with stat race.
4880
06485aa8
SM
48812012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4882
4883 * doc.c (get_doc_string): Don't signal an error if the file is missing.
4884
167e3640
JD
48852012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4886
4887 * nsterm.m (hold_event_q): New static variable.
4888 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
4889 ! q_event_ptr.
4890 (hold_event): New function.
4891 (ns_read_socket): If hold_event_q have events, store them and
4892 return (Bug#12384).
4893 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
4894 is zero (Bug#12384).
4895
c40239df
JB
48962012-10-12 Juanma Barranquero <lekktu@gmail.com>
4897
4898 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
4899
bb385a92
EZ
49002012-10-12 Eli Zaretskii <eliz@gnu.org>
4901
2a9f1099
EZ
4902 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
4903
bb385a92
EZ
4904 * fileio.c (check_existing): New function.
4905 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
4906 instead of calling 'stat', when what's needed is to check whether
4907 a file exists. This avoids expensive system calls on MS-Windows.
4908 (Bug#12587)
4909
8599b23a 4910 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
bb385a92
EZ
4911
4912 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
4913 determine whether a file exists and is not a directory.
4914
4915 * lisp.h (check_existing): Add prototype.
4916
2b9c2e68
JD
49172012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4918
4919 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
4920
81749a23
GM
49212012-10-12 Glenn Morris <rgm@gnu.org>
4922
4923 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
4924
5253a5fd
SM
49252012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4926
389a94a5
SM
4927 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
4928
5253a5fd
SM
4929 * eval.c (Fautoload): Remember previous autoload status in load-history.
4930
7cded46f
PE
49312012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4932
4933 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
4934 * lread.c (load_each_byte, new_backquote_flag, readchar)
4935 (read_filtered_event, lisp_file_lexically_bound_p)
4936 (safe_to_load_version, Fload, complete_filename_p, openp)
4937 (build_load_history, readevalloop, read_escape, read1)
4938 (string_to_number, read_vector, read_list):
4939 * macros.c (Fstart_kbd_macro):
4940 * marker.c (CONSIDER):
4941 * menu.c (parse_single_submenu, digest_single_submenu)
4942 (find_and_return_menu_selection, Fx_popup_menu):
4943 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
4944 (Ftry_completion):
4945 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
4946 (ns_menu_show):
4947 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
4948 (xmenu_show, xdialog_show):
4949 Use bool for booleans.
4950 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
4951 as it's not a predicate. All uses changed. Omit unnecessary
4952 buffer termination.
4953
549c3414
DA
49542012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
4955
4956 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
4957 (save_excursion_restore): Do not restore mark if it was not saved.
4958
e85aafe7
PE
49592012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4960
fd2f90cf
PE
4961 * marker.c (cached_modiff): EMACS_INT, not int.
4962
c1af190b
PE
4963 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
4964 instead of having a wrong decl.
e85aafe7
PE
4965 * nsmenu.m (waiting_for_input): Remove wrong decl.
4966
e738ca56
PE
49672012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4968
9fa1de30
PE
4969 keyboard.c, keymap.c: Use bool for booleans.
4970 * dispnew.c (sit_for): Distinguish between 3-way display_option
4971 and boolean do_display.
4972 * keyboard.c (single_kboard, this_command_key_count_reset)
4973 (waiting_for_input, echoing, immediate_quit, input_pending)
4974 (interrupt_input, interrupts_deferred, pop_kboard)
4975 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
4976 (command_loop_1, adjust_point_for_property)
4977 (safe_run_hooks_error, input_polling_used, read_char):
4978 (help_char_p, readable_events, kbd_buffer_events_waiting)
4979 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
4980 (lucid_event_type_list_p, get_input_pending):
4981 (gobble_input, menu_separator_name_p, menu_bar_item)
4982 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
4983 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
4984 (keyremap_step, test_undefined, read_key_sequence)
4985 (detect_input_pending, detect_input_pending_ignore_squeezables)
4986 (detect_input_pending_run_timers, requeued_events_pending_p)
4987 (quit_throw_to_read_char, Fset_input_interrupt_mode):
4988 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
4989 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
4990 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
4991 (accessible_keymaps_1, Fkey_description, push_key_description):
4992 (shadow_lookup, struct where_is_internal_data)
4993 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
4994 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
4995 (describe_map, describe_vector):
4996 * menu.c (single_menu_item):
4997 * nsmenu.m (ns_update_menubar):
4998 * process.c (wait_reading_process_output):
4999 * search.c (scan_buffer, scan_newline):
5000 Use bool for boolean.
5001 * keyboard.c (timers_run, swallow_events)
5002 (detect_input_pending_run_timers):
5003 * process.c (wait_reading_process_output):
5004 Use unsigned for counter where wraparound-on-overflow is desired,
5005 since unsigned is guaranteed to have that behavior and signed is not.
5006 (read_char): Use ptrdiff_t for string length.
5007 (get_input_pending): Remove first argument, since it was always
5008 the same pointer-to-int (now pointer-to-boolean) &input_pending,
5009 and behave as if it had that value. Return new value of
5010 input_pending. All callers changed.
5011 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
5012 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
5013 a string length.
5014 * keymap.c (push_key_description): Omit last arg, which was always 1.
5015 All callers changed.
5016
e738ca56
PE
5017 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
5018
29f21cdf
JB
50192012-10-10 Juanma Barranquero <lekktu@gmail.com>
5020
5021 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
5022 ($(BLD)/term.$(O)): Update dependencies.
5023
6aea7528
DA
50242012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
5025
5026 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
5027 * lisp.h (enum pvec_type): Adjust comments and omit explicit
5028 initializer for PVEC_NORMAL_VECTOR.
5029
5f3f57be
PE
50302012-10-10 Paul Eggert <eggert@cs.ucla.edu>
5031
5032 Clean out old termopts cruft.
5033 * termopts.h (flow_control, meta_key): Remove unused decls.
5034 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
5035 Don't include termopts.h.
5036
3e98c68e
DA
50372012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
5038
5039 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
5040
77e344e5
PE
50412012-10-10 Paul Eggert <eggert@cs.ucla.edu>
5042
5043 * commands.h (immediate_quit): Remove duplicate decl.
5044
5683d7cd
JD
50452012-10-09 Jan Djärv <jan.h.d@swipnet.se>
5046
5047 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
5048 caching.
5049 (nsfont_open): Remove setting of Vfonts_in_cache.
1f9f395d 5050 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
5683d7cd 5051
cf5fc6db
EZ
50522012-10-09 Eli Zaretskii <eliz@gnu.org>
5053
b15736e6
EZ
5054 * w32fns.c (w32_last_error): Change the return value to DWORD, to
5055 match what GetLastError returns. Explain why the function is
5056 needed.
5057
cf5fc6db
EZ
5058 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
5059 'is_tooltip_frame', to avoid confusion with its global namesake.
5060
f99714ce
DC
50612012-10-08 Daniel Colascione <dancol@dancol.org>
5062
5063 * xdisp.c (start_hourglass): Call w32_note_current_window when
2b1f11ed
EZ
5064 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
5065 build that caused Emacs to display the hourglass cursor forever.
f99714ce 5066
fd59cb29
GM
5067 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
5068 which is broken under remote desktop, calculate the number of
5069 colors available for a display based on the display's number of
5070 planes and number of bits per pixel per plane. (bug#10397).
5071
62c480c9 50722012-10-08 Jan Djärv <jan.h.d@swipnet.se>
fd59cb29 5073
62c480c9
JD
5074 * nsfont.m (Vfonts_in_cache): New variable.
5075 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
5076 are used. Add cached fonts to Vfonts_in_cache.
5077 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
5078
607446ba
JB
50792012-10-08 Juanma Barranquero <lekktu@gmail.com>
5080
fd5125ad
JB
5081 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
5082 in nt/config.nt.
46979e0b
JB
5083 (FONT_H): Define after FRAME_H.
5084 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
5085 Update dependencies.
fd5125ad 5086
607446ba
JB
5087 * w32term.c: Remove leftover declaration of keyboard_codepage.
5088
b6f4e300
EZ
50892012-10-08 Eli Zaretskii <eliz@gnu.org>
5090
c54ebba4
EZ
5091 * makefile.w32-in (FONT_H): Add $(FRAME_H).
5092 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
5093 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
5094 (GLOBAL_SOURCES): Add cygw32.c.
fd59cb29
GM
5095 ($(BLD)/unexw32.$(O)):
5096 ($(BLD)/w32.$(O)):
5097 ($(BLD)/w32console.$(O)):
5098 ($(BLD)/w32fns.$(O)):
5099 ($(BLD)/w32heap.$(O)):
5100 ($(BLD)/w32menu.$(O)):
15c720a3 5101 ($(BLD)/w32proc.$(O)): Add w32common.h.
c54ebba4 5102
b6f4e300
EZ
5103 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
5104 'const char *'.
5105 (x_to_w32_color): Don't modify the argument, modify a copy instead.
5106
501199a3
DC
51072012-10-08 Daniel Colascione <dancol@dancol.org>
5108
5109 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
5110 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
5111 accidental message numbering hole. Change other messages to
5112 match.
5113
5114 * w32select.h (HAVE_W32SELECT): Remove.
5115
5116 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
1f9f395d 5117 w32common.h instead of w32heap.h.
501199a3
DC
5118
5119 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
5120 (get_allocation_unit, get_processor_type, get_w32_major_version)
5121 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
5122 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
5123 (OS_NT, os_subtype, cache_system_info): Move declarations to
5124 w32common.
5125
5126 * w32heap.c: Include w32common.h.
5127 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
8599b23a
SM
5128 (w32_minor_version, w32_build_number, w32_subtype):
5129 Remove duplicate definitions.
501199a3
DC
5130
5131 * w32fns.c: Include w32common.h; include w32heap.h only in
5132 WINDOWSNT.
5133
5134 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
5135 Use `report_file_error' instead of `error' in order to better
5136 inform users of what went wrong. Increase NTGUI_UNICODE file
5137 dialog box file name length to 32k, the maximum allowed by the NT
5138 kernel.
5139
5140 * w32common.h: New file.
5141 (ROUND_UP, ROUND_DOWN, get_page_size)
5142 (get_allocation_unit, get_processor_type, get_w32_major_version)
5143 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
5144 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
5145 (OS_NT, os_subtype, cache_system_info): Move here.
5146
5147 * unexw32.c, unexcw.c: Include w32common.h.
5148
5149 * emacs.c (main): Use (defined (WINDOWSNT) || defined
5150 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
5151 to call syms_of_w32select.
5152
5153 * cygw32.h: Remove obsolete EXFUN declarations.
5154
5155 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
5156
5157 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
5158 of w32inevt.o from SOME_MACHINE_OBJECTS.
5159
93aa5c81
DC
51602012-10-08 Daniel Colascione <dancol@dancol.org>
5161
5162 * image.c: Permanent fix for JPEG compilation issue --- limit
5163 jpeglib `boolean' redefinition to Cygwin builds.
5164
d424f3d8
EZ
51652012-10-08 Eli Zaretskii <eliz@gnu.org>
5166
8ee4c6ce
EZ
5167 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
5168
d424f3d8
EZ
5169 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
5170 Cygwin.
5171
e08348a0
DC
51722012-10-08 Daniel Colascione <dancol@dancol.org>
5173
5174 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
5175 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
5176 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
5177 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
5178 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
5179 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
5180 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
5181 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
5182 now a supported configuration.
5183
5184 * Makefile.in: consolidate image variables into LIBIMAGE; add
8e2417bf 5185 W32_OBJ and W32_LIBS. Compile new files.
e08348a0
DC
5186
5187 * conf_post.h:
5188 (_DebPrint) declare tracing facility for W32 debugging. We need
5189 to unify tracing later.
5190
5191 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
5192 unconditional use of W32 Unicode functions. Cygwin runs only on
5193 100% Unicode operating systems.
5194
5195 * cygw32.c: New file. Define Cygwin-specific facilities.
5196 (Fcygwin_convert_path_to_windows)
5197 (Fcygwin_convert_path_from_windows): New user functions for
5198 accessing Cygwin path-munging routines.
5199
5200 * cygw32.h: New file.
5201 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
5202 UTF-16LE strings temporarily inside non-Lisp-visible string
5203 objects.
5204
5205 (w32_strerror): Just what it says on the tin.
5206
5207 * emacs.c: Make the NS fork-then-exec code for daemon-launching
5208 also run for Cygwin; both systems have the same problem with using
5209 GUI facilities in a forked child. Also call syms_of_cygw32,
5210 syms_of_w32select in correct places.
5211
5212 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
5213 needs fork-then-exec for daemon launching.
5214
5215 * font.h: Include frame.h.
5216
5217 * image.c: Use the image library cache machinery only when we're
5218 compiling for native WINDOWSNT; Cygwin can use shared libraries
5219 like any other Unixlike system.
5220
5221 * keyboard.c: Clarify a comment regarding the input loop.
5222
5223 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
5224 functions directly instead of trying to detect at runtime that our
5225 host operating system supports them. We make this change for two
5226 reasons: Cygwin lacks support for the multibyte character
5227 conversion functions used by the legacy menu code, and Cygwin
5228 never needs to rely on non-Unicode APIs.
5229
5230 * unexw32.c (hinst): Declare extern.
5231
5232 * w32.c: Change header order;
5233 (w32_strerror): Move to w32fns.c because we need it for
5234 non-WINDOWSNT builds.
5235
5236 * w32.h: Add #error macro to make sure we don't include w32.h for
5237 Cygwin builds. Remove w32select declarations.
5238
5239 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
1f9f395d 5240 w32fns.c. w32console.c is WINDOWSNT-only.
e08348a0
DC
5241
5242 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
5243 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
5244 POSIXy alternative.
5245 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
5246 (w32_major_version, w32_minor_version, w32_build_number)
5247 (os_subtype, sound_type): Define here
5248 (w32_defined_color): Make color parameter const for consistency
5249 with other _defined_color functions.
5250 (w32_createwindow): Unconditionally call w32_init_class instead of
5251 doing so only when hprevinst is non-NULL. Plumbing hprevinst
5252 through the code is complex and unnecessary because class
5253 registration is practically free.
5254 (w32_name_of_message): New EMACSDEBUG-only function.
5255 (Fset_message_beep): Move here
5256 (Fx_open_connection): Require that the display name for Windows be
5257 "w32" for consistency, emacsclient disambiguation, and maybe, one
5258 day, multi-window-system support.
5259 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
5260 Cygwin files for W32 GUI facilities, since these clearly don't
5261 expect Cygwin names.
5262 (_DebPrint): Define.
5263 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
5264 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
5265 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
5266 (w32_last_error): Remove.
5267
5268 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
5269
5270 * w32heap.c (syspage_mask): Declare here.
5271 (cache_system_info): Remove.
5272
5273 * w32inevt.c (faked_key): Define globally, not statically.
5274 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
5275 (w32_console_toggle_lock_key): Move to w32fns.c.
5276
5277 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
5278
5279 * w32proc.c (_DebPrint): Move to w32fns.c.
5280 * w32select.c: Include string.h, stdio.h for Cygwin.
5281 * w32select.h: New File.
5282
5283 * w32term.c: Include io.h for non-CYGWIN builds; needed for
5284 get_osfhandle.
5285 (w32_message_fd): New variable. Under Cygwin, holds the file
5286 descriptor the system used to tell us about pending thread
5287 messages.
5288
5289 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
5290 that prevented compilation under non-WINDOWSNT systems.
5291
5292 (w32_initialize): Open /dev/windows and assign it to
5293 w32_message_fd. Provide w32 feature.
5294
5295 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
5296 (WM_EMACS_INPUT_READY): add.
5297 (prepend_msg, w32_message_fd): Declare globally.
5298
5299 * w32xfns.c:
5300 (keyboard_handle): Use only when WINDOWSNT.
5301 (notify_msg_ready): New function. Posts a message to the main
5302 thread's message queue under CYGWIN, which wakes up the main
5303 thread from select(2) by making the /dev/windows file descriptor
5304 ready. Under WINDOWSNT, it sets an event the same way the old
5305 code did.
5306
5307 (post, prepend_msg): Actually call notify_msg_ready instead of
5308 setting the input event directly.
5309
98daa893
EZ
53102012-10-07 Eli Zaretskii <eliz@gnu.org>
5311
5312 * ralloc.c (relinquish): If a heap is ready to be relinquished,
5313 but it still has blocs in it, don't return it to the system,
5314 instead of aborting. (Bug#12402)
5315
3bc0a2f7
JD
53162012-10-07 Jan Djärv <jan.h.d@swipnet.se>
5317
8ad5b73b 5318 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
493b5b1c 5319
335f5ae4
JD
5320 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
5321 MAC_OS_X_VERSION_10_6.
8ad5b73b
JD
5322 (syms_of_nsterm): Remove comment about Panther and above for
5323 ns-antialias-text.
335f5ae4
JD
5324 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
5325 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
5326 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
5327
5328 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
5329 MAC_OS_X_VERSION_10_4.
5330
8ad5b73b
JD
5331 * nsmenu.m (fillWithWidgetValue:): Remove code for <
5332 MAC_OS_X_VERSION_10_2.
335f5ae4
JD
5333
5334 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
5335
5336 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
5337 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
5338
3bc0a2f7
JD
5339 * nsterm.m (ns_in_resize): Remove (Bug#12479).
5340 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
8599b23a
SM
5341 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
5342 Remove ns_in_resize check.
3bc0a2f7
JD
5343 (ns_clear_frame_area): Remove resize handle code.
5344
5345 * nsfns.m (ns_in_resize): Remove.
e483264c
SM
5346 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
5347 Remove ns_in_resize check.
3bc0a2f7 5348
c622b48f
PE
53492012-10-07 Paul Eggert <eggert@cs.ucla.edu>
5350
5351 Improve sys_siglist detection.
5352 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
5353 defined as a macro, as is done in Solaris.
5354 (sys_siglist_entries): New macro.
5355 (save_strsignal): Use it.
5356 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
5357 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
5358
04fafa46
JD
53592012-10-06 Jan Djärv <jan.h.d@swipnet.se>
5360
5361 * nsfns.m (Fx_create_frame): Call x_default_parameter with
5362 fullscreen/Fullscreen.
5363
5364 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
5365 tobar_height is new.
5366
5367 * nsterm.m (x_make_frame_visible): Check for fullscreen.
5368 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
5369 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
5370 (windowDidResize:): Check for correct window if old style fullscreen.
5371 Capitalize word in comment. Remove incorrect comment.
5372 (initFrameFromEmacs:): tbar_height renamed tibar_height.
5373 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
5374 error in drawing background.
1f9f395d 5375 (toggleFullScreen:): Remove comment. Rearrange calls.
04fafa46
JD
5376 Set toolbar values to zero, save old height in tobar_height.
5377 Restore tool bar height when leaving fullscreen.
5378 (canBecomeMainWindow): New function.
5379
c6e21c03
PE
53802012-10-06 Paul Eggert <eggert@cs.ucla.edu>
5381
5382 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
5383
0d9f584b
EZ
53842012-10-05 Eli Zaretskii <eliz@gnu.org>
5385
a65fbb5f
EZ
5386 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
5387
0d9f584b 5388 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
8599b23a
SM
5389 that time stamps of directories could also be changed.
5390 Don't request the too broad GENERIC_WRITE, only the more restrictive
0d9f584b
EZ
5391 FILE_WRITE_ATTRIBUTES access rights.
5392
5393 * fileio.c (Fset_file_times): Special-case ignoring errors for
5394 directories only on MSDOS, not on MS-Windows.
5395
e8757f09 53962012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
ca347e3d
IK
5397
5398 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
5399
7604f298
EZ
54002012-10-04 Eli Zaretskii <eliz@gnu.org>
5401
5402 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
5403 see whether CreateFile failed.
5404
88d69b7d
PE
54052012-10-04 Paul Eggert <eggert@cs.ucla.edu>
5406
5407 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
5408 to avoid similar races.
5409 * keyboard.c (pending_signals): Now bool, not int.
5410
7509f454
PE
5411 Port timers to OpenBSD, plus check for timer failures.
5412 OpenBSD problem reported by Han Boetes.
5413 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
5414 and/or setitimer.
5415 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
5416 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
5417 like OpenBSD, which has timer_settime but does not declare it.
5418 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
5419 whether to use itimerspec-related primitives. All uses of
5420 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
5421
a3c5c0c5
PE
54222012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5423
5424 * profiler.c (handle_profiler_signal): Fix a malloc race
5425 that caused Emacs to hang on Fedora 17 when profiling Lisp.
5426
914e743b
JD
54272012-10-02 Jan Djärv <jan.h.d@swipnet.se>
5428
5429 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
5430
d8ab37a8
EZ
54312012-10-02 Eli Zaretskii <eliz@gnu.org>
5432
5433 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
5434 consistent with the change in return value of 'safe_strsignal'.
5435
b3ecad33
PE
54362012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5437
0a99eee1
PE
5438 Prefer plain 'static' to 'static inline' (Bug#12541).
5439 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
5440 (bidi_set_sor_type, bidi_push_embedding_level)
5441 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
5442 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
5443 (bidi_cache_search, bidi_cache_ensure_space)
5444 (bidi_cache_iterator_state, bidi_cache_find)
5445 (bidi_peek_at_next_level, bidi_set_paragraph_end)
5446 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
5447 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
5448 Now 'static', not 'static inline'.
5449
b3ecad33
PE
5450 Count overruns when profiling; change units to ns.
5451 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
5452 Give extra weight to samples after overruns, to attempt to count
5453 the time more accurately.
5454 (setup_cpu_timer): Change sampling interval units from ms to ns, since
5455 the underlying primitives nominally do ns.
5456 (Fprofiler_cpu_start): Document the change. Mention that
5457 the sampling intervals are only approximate.
5458
090cf9db
SM
54592012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5460
5461 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
5462
5463 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
5464 case for the special 0 coding-system.
5465
5466 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
5467 (Fmake_overlay): Remove redundant tests.
64edc777 5468 (fix_start_end_in_overlays): Remove redundant recentering.
090cf9db 5469
81550bf4
JB
54702012-10-02 Juanma Barranquero <lekktu@gmail.com>
5471
5472 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
5473 Update dependencies.
5474
aa1ba90e
PE
54752012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5476
5477 Fix a malloc race condition involving strsignal.
5478 A signal can arrive in the middle of a malloc, and Emacs's signal
5479 handler can invoke strsignal, which can invoke malloc, which is
5480 not portable. This race condition bug makes Emacs hang on GNU/Linux.
5481 Fix it by altering the signal handler so that it does not invoke
5482 strsignal.
5483 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
5484 * process.c (status_message): Use const pointer, in case strsignal
5485 is #defined to safe_strsignal.
5486 * sysdep.c (sys_siglist, init_signals): Always define and
5487 initialize a substitute sys_siglist if the system does not define
5488 one, even if HAVE_STRSIGNAL.
5489 (safe_strsignal): Rename from strsignal. Always define,
5490 using sys_siglist. Return a const pointer.
5491 * syssignal.h (safe_strsignal): New decl.
5492 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
5493
ace917bd
EZ
54942012-10-01 Eli Zaretskii <eliz@gnu.org>
5495
5496 * w32proc.c (timer_loop): Fix code that waits for timer
5497 expiration, to avoid high CPU usage.
5498
9eb71b9c
SM
54992012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
5500
5501 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
5502 (sweep_weak_table): Remove redundant prototypes.
5503
b3317662
FP
55042012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
5505
5506 * emacs.c: Move the inclusion of TERM_HEADER after including
5507 windows.h on WINDOWSNT. This avoids compilation problems with
5508 MSVC.
5509
f0e5f225
EZ
55102012-10-01 Eli Zaretskii <eliz@gnu.org>
5511
2d7d1608
EZ
5512 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
5513 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
5514 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
5515 as the previous version used 'void *'.
5516
5517 * ralloc.c (ROUNDUP): Fix last change.
5518 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
5519 'size_t'.
5520
f0e5f225
EZ
5521 * w32proc.c <disable_itimers>: New static flag.
5522 (init_timers): Initialize it to zero, after creating the critical
5523 sections used by the timer threads.
5524 (term_timers): Set to 1 before deleting the critical sections.
5525 (getitimer, setitimer): If disable_itimers is non-zero, return an
5526 error indication without doing anything. Reported by Fabrice
5527 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
4cdfbb89
EZ
5528 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
5529 return results.
5530 [!HAVE_SETITIMER]: Behave as the previous version that didn't
5531 support timers.
f0e5f225
EZ
5532
5533 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
5534 term_ntproc after all the other bookkeeping, to get timers working
5535 as long as possible.
5536
82ef37c1
PE
55372012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5538
b3a4c387
PE
5539 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
5540 Suggested by Juri Linkov in
5541 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
5542
b0ab8123
PE
5543 Prefer plain 'static' to 'static inline' (Bug#12541).
5544 With static functions, modern compilers inline pretty well by
5545 themselves; advice from programmers often hurts as much as it helps.
5546 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
5547 this change shrinks the text size of the Emacs executable by 1.1%
5548 without affecting CPU significantly in my benchmark.
5549 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
5550 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
5551 (mark_maybe_object, mark_maybe_pointer, bounded_number):
5552 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
5553 (bset_auto_fill_function, bset_auto_save_file_format)
5554 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
5555 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
5556 (bset_cache_long_line_scans, bset_case_fold_search)
5557 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
5558 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
5559 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
5560 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
5561 (bset_header_line_format, bset_indicate_buffer_boundaries)
5562 (bset_indicate_empty_lines, bset_invisibility_spec)
5563 (bset_left_fringe_width, bset_major_mode, bset_mark)
5564 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
5565 (bset_name, bset_overwrite_mode, bset_pt_marker)
5566 (bset_right_fringe_width, bset_save_length)
5567 (bset_scroll_bar_width, bset_scroll_down_aggressively)
5568 (bset_scroll_up_aggressively, bset_selective_display)
5569 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
5570 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
5571 (set_buffer_overlays_after):
5572 * category.c (bset_category_table):
5573 * charset.c (read_hex):
5574 * coding.c (produce_composition, produce_charset)
5575 (handle_composition_annotation, handle_charset_annotation)
5576 (char_encodable_p):
5577 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
5578 (assign_row, set_frame_matrix_frame, make_current)
5579 (add_row_entry):
5580 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
5581 * fns.c (maybe_resize_hash_table):
5582 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
5583 * gmalloc.c (register_heapinfo):
5584 * image.c (lookup_image_type):
5585 * intervals.c (set_interval_object, set_interval_left)
5586 (set_interval_right, copy_interval_parent, rotate_right)
5587 (rotate_left, balance_possible_root_interval):
5588 * keyboard.c (kset_echo_string, kset_kbd_queue)
5589 (kset_keyboard_translate_table, kset_last_prefix_arg)
5590 (kset_last_repeatable_command, kset_local_function_key_map)
5591 (kset_overriding_terminal_local_map, kset_real_last_command)
5592 (kset_system_key_syms, clear_event, set_prop):
5593 * lread.c (digit_to_number):
5594 * marker.c (attach_marker, live_buffer, set_marker_internal):
5595 * nsterm.m (ns_compute_glyph_string_overhangs):
5596 * process.c (pset_buffer, pset_command)
5597 (pset_decode_coding_system, pset_decoding_buf)
5598 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
5599 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
5600 (pset_status, pset_tty_name, pset_type, pset_write_queue):
5601 * syntax.c (bset_syntax_table, dec_bytepos):
5602 * terminal.c (tset_param_alist):
5603 * textprop.c (interval_has_some_properties)
5604 (interval_has_some_properties_list):
5605 * window.c (wset_combination_limit, wset_dedicated)
5606 (wset_display_table, wset_hchild, wset_left_fringe_width)
5607 (wset_left_margin_cols, wset_new_normal, wset_new_total)
5608 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
5609 (wset_right_fringe_width, wset_right_margin_cols)
5610 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
5611 (wset_vertical_scroll_bar_type, wset_window_parameters):
5612 * xdisp.c (wset_base_line_number, wset_base_line_pos)
5613 (wset_column_number_displayed, wset_region_showing)
5614 (window_box_edges, run_window_scroll_functions)
5615 (append_glyph_string_lists, prepend_glyph_string_lists)
5616 (append_glyph_string, set_glyph_string_background_width)
5617 (append_glyph, append_composite_glyph)
5618 (take_vertical_position_into_account):
5619 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
5620 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
5621 (lface_hash, lface_same_font_attributes_p, lookup_face):
5622 * xml.c (libxml2_loaded_p):
5623 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
5624 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
5625 Now 'static', not 'static inline'.
5626
05584c31
PE
5627 * bidi.c: Tune.
5628 (bidi_copy_it): Do the whole copy with a single memcpy.
5629 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
5630
86ec63ba
PE
5631 Revert the FOLLOW-SYMLINKS change for file-attributes.
5632 Doing it right would require several changes to Tramp, and there's
5633 not enough time to get that tested before the freeze today.
5634 * dired.c (directory_files_internal, Ffile_attributes):
5635 Undo last change.
5636
82ef37c1
PE
5637 * frame.c (x_report_frame_params): Port better to wider ints.
5638 Do not assume that EMACS_UINT is the same width as uprintmax_t,
5639 or that pointers can be printed in 15 decimal digits.
5640 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
5641
62aba0d4
FP
56422012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
5643
5644 Support x64 build on MS-Windows.
5645 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
5646 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
5647 compatibility with x64.
5e4daaf3 5648 (x_get_focus_frame): Add prototype.
62aba0d4
FP
5649
5650 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
5651 defining an XRectangle structure.
5652
5653 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
5654 arithmetics for compatibility with x64.
5655
5656 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
5657 compatibility with x64.
5658
5659 * w32heap.h: Adjust prototypes and declarations.
5660
5661 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
5662 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
5663 DWORD, long, and unsigned long, for compatibility with x64.
5664 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
5665 (sbrk): Argument is now of type ptrdiff_t.
5666
5667 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
5668 less than 0x0500.
5669 (w32_msg_pump): Use WPARAM type for 'result'.
5670
5671 * w32.c (init_environment, get_emacs_configuration): Support AMD64
5672 architecture.
5673 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
5674 compatibility with x64.
5675
5676 * vm-limit.c (lim_data): Now size_t.
5677 (check_memory_limits): Adjust prototypes of real_morecore and
5678 __morecore to receive argument of type ptrdiff_t. Use size_t for
5679 five_percent and data_size.
5680
5681 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
5682 variables, for compatibility with x64.
5683 (rva_to_section, offset_to_section, relocate_offset)
5684 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
5685 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
5686 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
5687 for compatibility with x64.
5688
5689 * sysdep.c (STDERR_FILENO): Define if not already defined.
5690
5691 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
5692 (__morecore): Argument type is now ptrdiff_t.
5693 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
5694 (relinquish): Use ptrdiff_t type for 'excess'.
5695 (r_alloc_sbrk): Argument type is now ptrdiff_t.
5696
5697 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
5698 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
5699 instead of a literal number.
5700
5701 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
5702 (min): Define only if not already defined.
5703
5704 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
5705 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
5706 hosts.
5707
5708 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
5709 'bitmaps' is a pointer.
5710
5711 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
5712
5713 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
5714
e7a2937b
PE
57152012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5716
5717 file-attributes has a new optional arg FOLLOW-SYMLINKS.
5718 * dired.c (directory_files_internal, Ffile_attributes):
5719 New arg follow_symlinks. All uses changed.
5720
b43d62ae
SM
57212012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
5722
5723 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
5724
c06c382a
EZ
57252012-09-30 Eli Zaretskii <eliz@gnu.org>
5726
5727 Support atimers and CPU profiler via profile.c on MS-Windows.
5728 * w32proc.c (sig_mask, crit_sig): New static variables.
5729 (sys_signal): Support SIGALRM and SIGPROF.
5730 (sigemptyset, sigaddset, sigfillset, sigprocmask)
b43d62ae 5731 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
c06c382a
EZ
5732 sigfillset, and sigprocmask are no longer no-ops.
5733 (sigismember): New function.
5734 (struct itimer_data): New definition.
5735 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
5736 (crit_prof): New static variables.
5737 (MAX_SINGLE_SLEEP): New definition.
5738 (timer_loop, stop_timer_thread, term_timers, init_timers)
5739 (start_timer_thread, getitimer, setitimer): New functions.
5740 (alarm): No longer a no-op, calls setitimer.
5741
5742 * w32.c (term_ntproc): Call term_timers.
5743 (init_ntproc): Make sure all signals are unblocked at startup, to
5744 erase any traces of dumping. Call init_timers.
5745
5746 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
5747 Windows-specific code to display the hourglass mouse pointer is no
5748 longer used.
5749 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
5750 to hourglass timer expiration.
5751 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
5752 Remove, no longer used.
b43d62ae
SM
5753 (w32_note_current_window, show_hourglass, hide_hourglass):
5754 New functions, in support of hourglass cursor display similar to other
c06c382a
EZ
5755 window systems.
5756 (syms_of_w32fns): Don't initialize hourglass_timer.
5757
5758 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
5759 WINDOWSNT as well.
5760 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
5761
5762 * w32.h (init_timers, term_timers): Add prototypes.
5763
95402d5f
KH
57642012-09-30 Kenichi Handa <handa@gnu.org>
5765
5766 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
5767 to the buffer relocation which may be caused by ccl_driver.
5768
dd946752
JD
57692012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5770
d7e642cc
JD
5771 * xfns.c (Fx_file_dialog): Update comment.
5772
5773 * w32fns.c (Fx_file_dialog): Update comment.
5774
5775 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
5776 Initialize panel name field if OSX >= 10.6.
5777
5778 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
5779
dd946752
JD
5780 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
5781
5782 * nsterm.m (NEW_STYLE_FS): New define.
5783 (ns_fullscreen_hook, windowWillEnterFullScreen)
5784 (windowDidEnterFullScreen, windowWillExitFullScreen)
5785 (windowDidExitFullScreen, toggleFullScreen, handleFS)
5786 (setFSValue): New functions.
5787 (EmacsFSWindow): New implementation.
5788 (canBecomeKeyWindow): New function for EmacsFSWindow.
5789 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
5790 (dealloc): Release nonfs_window if in fullscreen.
5791 (updateFrameSize:): Call windowDidMove to update top/left.
5792 (windowWillResize:toSize:): Check if frame is still maximized.
5793 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
5794 next_maximized, maximized_width, maximized_height and nonfs_window.
5795 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
5796 tbar_height.
5797 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
1f9f395d 5798 fullscreen. Set maximized_width/height. Act on next_maximized.
dd946752
JD
5799
5800 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
5801 (EmacsView): Add variables for fullscreen.
5802 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
5803 (EmacsFSWindow): New interface for fullscreen.
5804
427730eb
JB
58052012-09-30 Juanma Barranquero <lekktu@gmail.com>
5806
5807 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5808
48de8b12
CY
58092012-09-30 Chong Yidong <cyd@gnu.org>
5810
5811 * fns.c (Frandom): Doc fix.
5812
5938d519
MR
58132012-09-30 Martin Rudalics <rudalics@gmx.at>
5814
5815 * window.c (Vwindow_combination_limit): New default value.
5816 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
5817
cb5b0266
PE
58182012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5819
5820 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
5821 Suggested by Eli Zaretskii in
5822 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
5823
84f72efd
EZ
58242012-09-30 Eli Zaretskii <eliz@gnu.org>
5825
5826 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
5827 HAVE_TIMER_SETTIME is defined.
5828
9d4dcdc9
PE
58292012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5830
d89460ed
PE
5831 Profiler improvements: more-accurate timers, overflow checks.
5832 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
5833 signal.h, setjmp.h. Include systime.h instead.
5834 (saturated_add): New function.
5835 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
5836 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
5837 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
5838 New static vars.
84f72efd 5839 (enum profiler_cpu_running): New enum.
d89460ed
PE
5840 (profiler_cpu_running): Now of that enum type, not bool.
5841 All uses changed to store the new value.
5842 (handle_profiler_signal): Rename from sigprof_handler_1,
5843 for consistency with other handlers. Do not check whether
5844 cpu_log is a hash-table if garbage collecting, since it
5845 doesn't matter in that case.
5846 (deliver_profiler_signal): Rename from sigprof_handler,
5847 for consistency with other handlers.
5848 (setup_cpu_timer): New function, with much of what used to be in
5849 Fprofiler_cpu_start. Check for out-of-range argument.
5850 Prefer timer_settime if available, and prefer
5851 thread cputime clocks, then process cputime clocks, then
5852 monotonic clocks, to the old realtime clock. Use make_timeval
5853 to round more-correctly when falling back to setitimer.
5854 (Fprofiler_cpu_start): Use it.
5855 (Fprofiler_cpu_stop): Prefer timer_settime if available.
5856 Don't assume that passing NULL as the 2nd argument of setitimer
5857 is the same as passing a pointer to all-zero storage.
5858 Ignore SIGPROF afterwards.
5859 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
5860 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
5861 non-fatal signal handlers. Ignore SIGPROF on startup.
5862 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
5863 in profiler.c, since sysdep.c now uses it.
5864
9d4dcdc9
PE
5865 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
5866 Suggested by Eli Zaretskii in
5867 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
5868
8e5691a0
JB
58692012-09-29 Juanma Barranquero <lekktu@gmail.com>
5870
5871 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5872
e7c1b6ef
SM
58732012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
5874
5875 * lisp.h (struct backtrace): Remove indirection for `function' field.
5876 * xdisp.c (redisplay_internal):
5877 * profiler.c (record_backtrace, sigprof_handler_1):
5878 * alloc.c (Fgarbage_collect):
5879 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
5880 (Fbacktrace_frame): Adjust accordingly.
5881
e61d39cd 58822012-09-28 Glenn Morris <rgm@gnu.org>
d393cefb
GM
5883
5884 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
5885 (Frun_hook_with_args_until_failure): Doc fixes.
5886
404043ea
EZ
58872012-09-28 Eli Zaretskii <eliz@gnu.org>
5888
5889 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
5890 Qautomatic_redisplay and change the symbol name. All users changed.
5891
704d3f45
TM
58922012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
5893
5894 * profiler.c (sigprof_handler): Fix race condition.
5895
757140ff
GM
58962012-09-28 Glenn Morris <rgm@gnu.org>
5897
5898 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
5899
a615a3ae
PE
59002012-09-27 Paul Eggert <eggert@cs.ucla.edu>
5901
5902 Check more robustly for timer_settime.
89d17fd0
PE
5903 * Makefile.in (LIB_TIMER_TIME): New macro.
5904 (LIBES): Add it.
a615a3ae
PE
5905 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
5906 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
5907 call timer_settime.
5908
3670daf7
TM
59092012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5910
5911 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
5912
6a586b7f
JB
59132012-09-26 Juanma Barranquero <lekktu@gmail.com>
5914
5915 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5916
41c8bfcf
PE
59172012-09-26 Paul Eggert <eggert@cs.ucla.edu>
5918
5919 * character.h (MAYBE_UNIFY_CHAR): Remove.
5920 * charset.c, charset.h (maybe_unify_char): Now static.
5921 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
5922 Since this stuff is now private to charset.c, there's no need for
5923 a public macro and no need to inline by hand.
5924
3a880af4 59252012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
908589fd
AS
5926 Stefan Monnier <monnier@iro.umontreal.ca>
5927 Juanma Barranquero <lekktu@gmail.com>
611b7507 5928
3a880af4
SM
5929 * profiler.c: New file.
5930 * Makefile.in (base_obj): Add profiler.o.
611b7507
JB
5931 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
5932 ($(BLD)/profiler.$(O)): New target.
3a880af4
SM
5933 * emacs.c (main): Call syms_of_profiler.
5934 * alloc.c (Qautomatic_gc): New constant.
5935 (MALLOC_PROBE): New macro.
5936 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
5937 (total_bytes_of_live_objects): New function.
5938 (Fgarbage_collect): Use it. Record itself in backtrace_list.
5939 Call malloc_probe for the memory profiler.
5940 (syms_of_alloc): Define Qautomatic_gc.
5941 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
5942 race condition.
5943 (struct backtrace): Move definition...
5944 * lisp.h (struct backtrace): ..here.
5945 (Qautomatic_gc, profiler_memory_running): Declare vars.
5946 (malloc_probe, syms_of_profiler): Declare functions.
5947 * xdisp.c (Qautomatic_redisplay): New constant.
5948 (redisplay_internal): Record itself in backtrace_list.
5949 (syms_of_xdisp): Define Qautomatic_redisplay.
611b7507 5950
5938d519 59512012-09-25 Eli Zaretskii <eliz@gnu.org>
b67238c2
JB
59522012-09-25 Juanma Barranquero <lekktu@gmail.com>
5953
5954 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
5955
e26fd2e4
PE
59562012-09-25 Paul Eggert <eggert@cs.ucla.edu>
5957
5958 Prefer POSIX timers if available.
5959 They avoid a race if the timer is too close to the current time.
5960 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
5961 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
9180598c 5962 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
e26fd2e4 5963
eedec3ee
EZ
59642012-09-25 Eli Zaretskii <eliz@gnu.org>
5965
5966 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
5967 CHAR_STRING_ADVANCE.
5968 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
5969 STRING_CHAR_ADVANCE.
5970
aa15c6bb
JB
59712012-09-25 Juanma Barranquero <lekktu@gmail.com>
5972
5973 Move Vlibrary_cache to emacs.c and reset before dumping.
5974
5975 * lisp.h (reset_image_types): Declare.
5976 [WINDOWSNT] (Vlibrary_cache): Declare.
5977
5978 * image.c (reset_image_types): New function.
5979
5980 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
5981 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
5982 (Fdump_emacs): Reset Vlibrary_cache and image_types.
5983
5984 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
5985 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
5986
5987 * w32.h (Vlibrary_cache): Do not declare.
5988
54d629be
EZ
59892012-09-25 Eli Zaretskii <eliz@gnu.org>
5990
16b22fef
EZ
5991 * w32proc.c (sys_signal): Handle all signals defined by the
5992 MS-Windows runtime, not just SIGCHLD. Actually install the signal
5993 handlers for signals supported by Windows. Don't override
5994 term_ntproc as the handler for SIGABRT.
5995 (sigaction): Rewrite to call sys_signal instead of duplicating its
5996 code.
5997 (sys_kill): Improve commentary.
5998
5999 * w32.c (term_ntproc): Accept (and ignore) one argument, for
6000 consistency with a signature of a signal handler. All callers
6001 changed.
6002 (init_ntproc): Accept an argument DUMPING. If dumping, don't
6003 install term_ntproc as a signal handler for SIGABRT, as that
6004 should be done by the dumped Emacs.
6005
6006 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
6007
6008 * w32select.c (term_w32select): Protect against repeated
6009 invocation by setting clipboard_owner to NULL after calling
6010 DestroyWindow.
6011
6012 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
6013 and term_ntproc to their modified signatures.
6014
54d629be
EZ
6015 * character.c (char_string, string_char): Remove calls to
6016 MAYBE_UNIFY_CHAR. See the discussion starting at
6017 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
6018 for the details.
6019
59f7af81
CY
60202012-09-25 Chong Yidong <cyd@gnu.org>
6021
6022 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
6023
22e8cf4a
SM
60242012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
6025
6026 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
6027 when encountering an unknown bytecode.
6028
578098f3
PE
60292012-09-24 Paul Eggert <eggert@cs.ucla.edu>
6030
6031 image.c, indent.c: Use bool for booleans.
6032 * dispextern.h (struct image_type): Members valid_p, load, init
6033 now return bool, not int. All uses changed.
6034 * image.c: Omit unnecessary static decls.
6035 (x_create_bitmap_mask, x_build_heuristic_mask):
6036 Return void, not int, since callers don't care about the return value.
6037 (x_create_bitmap_mask, define_image_type, valid_image_p)
6038 (struct image_keyword, parse_image_spec, image_spec_value)
6039 (check_image_size, image_background)
6040 (image_background_transparent, x_clear_image_1)
6041 (postprocess_image, lookup_image, x_check_image_size)
6042 (x_create_x_image_and_pixmap, xbm_image_p)
6043 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
6044 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
6045 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
6046 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
6047 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
6048 (png_image_p, init_png_functions, png_load_body, png_load)
6049 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
6050 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
6051 (init_gif_functions, gif_load, imagemagick_image_p)
6052 (imagemagick_load_image, imagemagick_load, svg_image_p)
6053 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
6054 (gs_load):
6055 * nsimage.m (ns_load_image):
6056 * nsterm.m (ns_defined_color):
6057 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
6058 * xfns.c (x_defined_color):
6059 * xterm.c (x_alloc_lighter_color_for_widget)
6060 (x_alloc_nearest_color_1, x_alloc_nearest_color)
6061 (x_alloc_lighter_color):
6062 * indent.c (disptab_matches_widthtab, current_column)
6063 (scan_for_column, string_display_width, indented_beyond_p)
6064 (compute_motion, vmotion, Fvertical_motion):
6065 Use bool for booleans.
6066
a5f2b6ec
CY
60672012-09-24 Chong Yidong <cyd@gnu.org>
6068
6069 * chartab.c (Fset_char_table_default): Obsolete function removed.
6070
18e27ea8
PE
60712012-09-23 Paul Eggert <eggert@cs.ucla.edu>
6072
afea8a8a
PE
6073 Move pid_t related decls out of lisp.h.
6074 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
6075 (interruptible_wait_for_termination):
6076 Move these decls from lisp.h to syswait.h, since they use pid_t.
6077 Needed on FreeBSD; see Herbert J. Skuhra in
6078 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
6079 * callproc.c: Include syswait.h.
6080
18e27ea8
PE
6081 gnutls.c, gtkutil.c: Use bool for boolean.
6082 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
6083 (emacs_gnutls_handle_error):
6084 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
6085 (xg_hide_tooltip, xg_create_frame_widgets)
6086 (create_dialog, xg_uses_old_file_dialog)
6087 (xg_get_file_with_chooser, xg_get_file_with_selection)
6088 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
6089 (xg_item_label_same_p, xg_update_menubar)
6090 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
6091 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
6092 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
6093 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
6094 (update_frame_tool_bar, free_frame_tool_bar):
6095 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
6096 * nsmenu.m (ns_update_menubar):
6097 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
6098 * xfns.c (Fx_show_tip) [USE_GTK]:
6099 Use bool for boolean.
6100 * gtkutil.c (xg_update_frame_menubar):
6101 * xmenu.c (update_frame_menubar):
6102 Return void, not int, since caller ignores return value.
6103 * gtkutil.c (xg_change_toolbar_position):
6104 Return void, not 1.
6105
af0e9f75
JB
61062012-09-23 Juanma Barranquero <lekktu@gmail.com>
6107
6108 * makefile.w32-in (BLOCKINPUT_H): Remove.
6109 (SYSSIGNAL_H): New macro.
6110 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
6111 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
6112 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
6113 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
6114 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
6115 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
6116 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
6117 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
6118 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
6119 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
6120 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
6121 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
6122 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
6123 ($(BLD)/w32xfns.$(O)): Update dependencies.
6124
5101529e
EZ
61252012-09-23 Eli Zaretskii <eliz@gnu.org>
6126
6127 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
6128 fatal_error_backtrace.
6129
6130 * w32proc.c (sys_kill): Undo last change: don't do anything when
6131 invoked to deliver SIGABRT to our own process. This is now
6132 handled by emacs_raise.
6133
2c3ee0ad
JB
61342012-09-23 Juanma Barranquero <lekktu@gmail.com>
6135
6136 * w32term.c (w32_read_socket): Remove leftover reference to
6137 interrupt_input_pending.
6138
62a1d661
PE
61392012-09-23 Paul Eggert <eggert@cs.ucla.edu>
6140
6141 Do not use SA_NODEFER.
6142 Problem reported by Dani Moncayo in
6143 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
6144 * alloc.c (die):
6145 * sysdep.c (emacs_abort): Do not reset signal handler.
6146 * emacs.c (terminate_due_to_signal): Reset signal handler here.
6147 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
6148 wanted even on POSIXish hosts, and it doesn't work on Windows.
6149
a0942b9a
JD
61502012-09-23 Jan Djärv <jan.h.d@swipnet.se>
6151
6152 * xterm.c (x_term_init): Call fixup_locale before and after calling
6153 gtk_init (Bug#12392).
6154
d07ff9db
CY
61552012-09-23 Chong Yidong <cyd@gnu.org>
6156
6157 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
6158 Vdynamic_library_alist.
6159
6160 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
6161 (Fgnutls_available_p): Caller changed.
6162
6163 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
6164 (Flibxml_parse_xml_region): Likewise.
6165
6166 * dispextern.h (struct image_type): Remove arg from init function.
6167
6168 * image.c (Finit_image_library, lookup_image_type)
6169 (define_image_type): Remove now-unneeded second arg.
6170 (init_xpm_functions, init_png_functions, init_jpeg_functions)
6171 (init_tiff_functions, init_gif_functions, init_svg_functions):
6172 Arglist and w32_delayed_load calling convention changed.
6173 (gs_type): Remove init_gs_functions; there is no such function.
641cfd14 6174 (valid_image_p, make_image): Fix caller to lookup_image_type.
d07ff9db 6175
4d7e6e51
PE
61762012-09-23 Paul Eggert <eggert@cs.ucla.edu>
6177
6178 Simplify and avoid signal-handling races (Bug#12471).
6179 * alloc.c (die):
6180 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
6181 Avoid recursive loop if there's a fatal error in the function itself.
6182 * atimer.c (pending_atimers):
6183 * blockinput.h: Don't include "atimer.h"; no longer needed.
6184 (interrupt_input_pending): Remove. All uses removed.
6185 pending_signals now counts both atimers and ordinary interrupts.
6186 This is less racy than having three separate pending-signal flags.
6187 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
6188 (input_blocked_p):
6189 Rename from their upper-case counterparts BLOCK_INPUT,
6190 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
6191 INPUT_BLOCKED_P, and turn into functions. All uses changed.
6192 This makes it easier to access volatile variables more accurately.
6193 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
6194 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
6195 that's more reliable if the code is buggy and sets
6196 interrupt_input_blocked to a negative value. All uses changed.
6197 * atimer.c (deliver_alarm_signal):
6198 Remove. No need to deliver this to the parent; any thread can
6199 handle this signal now. All uses replaced by underlying handler.
6200 * atimer.c (turn_on_atimers):
6201 * dispnew.c (handle_window_change_signal):
6202 * emacs.c (handle_danger_signal):
6203 * keyboard.c (kbd_buffer_get_event):
6204 Don't reestablish signal handler; not needed with sigaction.
6205 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
6206 (UNBLOCK_INPUT_TO):
6207 Rework to avoid unnecessary accesses to volatile variables.
6208 (UNBLOCK_INPUT_TO): Now a function.
6209 (totally_unblock_input, unblock_input): New decls.
6210 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
6211 (init_data): Remove. Necessary stuff now done in init_signal.
6212 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
6213 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
6214 (fatal_error_code): Remove; no longer needed.
6215 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
6216 it doesn't always backtrace. All uses changed. No need to reset
6217 signal to default, since sigaction and/or die does that for us now.
6218 Use emacs_raise (FOO), not kill (getpid (), FOO).
6219 (main): Check more-accurately whether we're dumping.
6220 Move fatal-error setup to sysdep.c
6221 * floatfns.c: Do not include "syssignal.h"; no longer needed.
6222 * gtkutil.c (xg_get_file_name, xg_get_font):
6223 Remove no-longer-needed signal-mask manipulation.
6224 * keyboard.c, process.c (POLL_FOR_INPUT):
6225 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
6226 * keyboard.c (read_avail_input): Remove.
6227 All uses replaced by gobble_input.
6228 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
6229 (kbd_buffer_store_event_hold, gobble_input):
6230 (record_asynch_buffer_change) [USABLE_SIGIO]:
6231 (store_user_signal_events):
6232 No need to mess with signal mask.
6233 (gobble_input): If blocking input and there are terminals, simply
6234 set pending_signals to 1 and return. All hooks changed to not
6235 worry about whether input is blocked.
6236 (process_pending_signals): Clear pending_signals before processing
6237 them, in case a signal comes in while we're processing.
6238 By convention callers now test pending_signals before calling us.
6239 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
6240 New functions, to support changes to blockinput.h.
6241 (handle_input_available_signal): Now extern.
6242 (reinvoke_input_signal): Remove. All uses replaced by
6243 handle_async_input.
6244 (quit_count): Now volatile, since a signal handler uses it.
3a880af4
SM
6245 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
6246 All callers changed. Block SIGINT only if not already blocked.
4d7e6e51
PE
6247 Clear sigmask reliably, even if Fsignal returns, which it can.
6248 Omit unnecessary accesses to volatile var.
6249 (quit_throw_to_read_char): No need to restore sigmask.
6250 * keyboard.c (gobble_input, handle_user_signal):
6251 * process.c (wait_reading_process_output):
6252 Call signal-handling code rather than killing ourselves.
6253 * lisp.h: Include <float.h>, for...
6254 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
6255 (pending_signals): Now volatile.
6256 (syms_of_data): Now const if IEEE floating point.
6257 (handle_input_available_signal) [USABLE_SIGIO]:
6258 (terminate_due_to_signal, record_child_status_change): New decls.
6259 * process.c (create_process): Avoid disaster if memory is exhausted
6260 while we're processing a vfork, by tightening the critical section
6261 around the vfork.
6262 (send_process_frame, process_sent_to, handle_pipe_signal)
6263 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
6264 ignores SIGPIPE.
6265 (send_process): No need for setjmp/longjmp any more, since the
6266 SIGPIPE stuff is now gone. Instead, report an error if errno
6267 is EPIPE.
6268 (record_child_status_change): Now extern. PID and W are now args.
6269 Return void, not bool. All callers changed.
6270 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
6271 Remove. All uses removed. This bug should be fixed now in a
6272 different way.
6273 (wait_for_termination_1): Use waitpid rather than sigsuspend,
6274 and record the child status change directly. This avoids the
6275 need to futz with the signal mask.
6276 (process_fatal_action): Move here from emacs.c.
6277 (emacs_sigaction_flags): New function, containing
6278 much of what used to be in emacs_sigaction_init.
6279 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
6280 caught by emacs, to make races less likely.
6281 (deliver_process_signal): Rename from handle_on_main_thread.
6282 All uses changed.
6283 (BACKTRACE_LIMIT_MAX): Now at top level.
6284 (thread_backtrace_buffer, threadback_backtrace_pointers):
6285 New static vars.
6286 (deliver_thread_signal, deliver_fatal_thread_signal):
6287 New functions, for more-accurate delivery of thread-specific signals.
6288 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
6289 (deliver_arith_signal): Handle in this thread, not
6290 in the main thread, since it's triggered by this thread.
6291 (maybe_fatal_sig): New function.
6292 (init_signals): New arg DUMPING so that we can be more accurate
6293 about whether we're dumping. Caller changed.
6294 Treat thread-specific signals differently from process-general signals.
6295 Block all signals while handling fatal error; that's safer.
6296 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
6297 on IEEE hosts.
6298 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
6299 Ignore SIGPIPE unless batch.
6300 (emacs_backtrace): Output backtrace for the appropriate thread,
6301 which is not necessarily the main thread.
6302 * syssignal.h: Include <stdbool.h>.
6303 (emacs_raise): New macro.
6304 * xterm.c (x_connection_signal): Remove; no longer needed
6305 now that we use sigaction.
6306 (x_connection_closed): No need to mess with sigmask now.
6307 (x_initialize): No need to reset SIGPIPE handler here, since
6308 init_signals does this for us now.
6309
8f4635e9
JD
63102012-09-23 Jan Djärv <jan.h.d@swipnet.se>
6311
6312 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
fb39b937 6313 background rect may be larger (Bug#12245).
8f4635e9 6314
3296976d
CY
63152012-09-23 Chong Yidong <cyd@gnu.org>
6316
6317 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
6318
d41e491e
PE
63192012-09-22 Paul Eggert <eggert@cs.ucla.edu>
6320
6321 * .gdbinit: Just stop at fatal_error_backtrace.
6322 See Stefan Monnier's request in
6323 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
6324 Remove no-longer-used query of system type.
6325
c88b867f
CY
63262012-09-22 Chong Yidong <cyd@gnu.org>
6327
6328 * search.c (Freplace_match): Doc fix (Bug#12325).
6329
6330 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
6331
6332 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
6333 (Fline_end_position): Doc fix.
6334
6335 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
6336
bb4d86b4
CY
63372012-09-22 Chong Yidong <cyd@gnu.org>
6338
6339 * dispextern.h (struct image_type): Add new slot, storing a type
6340 initialization function.
6341
6342 * image.c (define_image_type): Call the image initializer function
6343 if it is defined. Arguments and return value changed.
6344 (valid_image_p, make_image): Callers changed.
6345 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
3a880af4
SM
6346 (gif_type, imagemagick_type, svg_type, gs_type):
6347 Add initialization functions.
bb4d86b4
CY
6348 (Finit_image_library): Call lookup_image_type.
6349 (CHECK_LIB_AVAILABLE): Macro deleted.
6350 (lookup_image_type): Call define_image_type here, rather than via
6351 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
6352 (syms_of_image): Move define_image_type calls for xbm_type and
6353 pbm_type to lookup_image_type.
6354
df9685f3
EZ
63552012-09-22 Eli Zaretskii <eliz@gnu.org>
6356
6357 * keyboard.c (timer_check_2): Move calculation of 'timers' and
6358 'idle_timers' from here ...
6359 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
6360 lists, to avoid infloops when the timer does something stupid,
6361 like reinvoke itself with the same or smaller time-out.
6362 (Bug#12447)
6363
8e17c9ba
MR
63642012-09-22 Martin Rudalics <rudalics@gmx.at>
6365
6366 * window.c (Fsplit_window_internal): Handle only Qt value of
6367 Vwindow_combination_limit separately.
6368 (Qtemp_buffer_resize): New symbol.
3a880af4
SM
6369 (Vwindow_combination_limit): New default value.
6370 Rewrite doc-string.
8e17c9ba 6371
589bd69b
EZ
63722012-09-22 Eli Zaretskii <eliz@gnu.org>
6373
6374 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
6375 the new overlay string. (Bug#10159)
6376
01108e3f
PE
63772012-09-22 Paul Eggert <eggert@cs.ucla.edu>
6378
6379 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
6380 or that fprintf is async-signal-safe. POSIX doesn't require
6381 either assumption.
6382
82f8cd94
CY
63832012-09-22 Chong Yidong <cyd@gnu.org>
6384
6385 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
6386 (Bug#8207).
6387
3cccbd87
KH
63882012-09-22 Kenichi Handa <handa@gnu.org>
6389
6390 * composite.c (composition_reseat_it): Handle the case that a
6391 grapheme cluster is not covered by a single font (Bug#12352).
6392
09c01941
CY
63932012-09-21 Chong Yidong <cyd@gnu.org>
6394
6395 * image.c (define_image_type): Avoid adding duplicate types to
6396 image_types (Bug#12463). Suggested by Jörg Walter.
6397
acfa068f 63982012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
e25c1a30
YM
6399
6400 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
6401 (print_load_command_name): Add case LC_DATA_IN_CODE.
6402 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
6403
acfa068f 64042012-09-21 Glenn Morris <rgm@gnu.org>
1e9bbf47
GM
6405
6406 * eval.c (Frun_hook_with_args_until_success)
6407 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
6408
acfa068f 64092012-09-21 Andreas Schwab <schwab@linux-m68k.org>
c6ba4138
AS
6410
6411 * fileio.c (Ffile_selinux_context): Only call freecon when
6412 lgetfilecon succeeded.
6413 (Fset_file_selinux_context): Likewise. (Bug#12444)
6414
acfa068f 64152012-09-21 Eli Zaretskii <eliz@gnu.org>
aa36e4d2
EZ
6416
6417 * xdisp.c (try_window_reusing_current_matrix): Under bidi
6418 reordering, locate the cursor by calling set_cursor_from_row; if
6419 that fails, clear the desired glyph matrix before returning a
6420 failure indication to the caller. Fixes leaving garbled display
6421 when fast scrolling with a down-key. (Bug#12403)
f2016bea
EZ
6422 (compute_stop_pos_backwards): Fix a typo that caused crashes while
6423 scrolling through multibyte text.
aa36e4d2 6424
e99f70c8
SM
64252012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6426
6427 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
6428 calling mark_vectorlike since that's the one that marks the window.
6429 (mark_discard_killed_buffers): Mark the final cdr.
6430 * window.h (struct window): Move prev/next_buffers to the
6431 non-standard fields.
6432 * window.c (make_window): Initialize prev/next_buffers manually.
6433
f75beb47
PE
64342012-09-20 Paul Eggert <eggert@cs.ucla.edu>
6435
6436 Omit unused arg EXPECTED from socket hooks.
6437 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
6438 * nsterm.m (ns_term_init):
6439 * termhooks.h (struct terminal.read_socket_hook):
6440 * w32inevt.c (w32_console_read_socket):
6441 * w32term.c (w32_read_socket):
6442 * xterm.c (XTread_socket):
6443 Omit unused arg EXPECTED. All callers changed.
6444 (store_user_signal_events): Return void, not int, since callers no
6445 longer care about the return value. All uses changed.
6446
b019b76a
JB
64472012-09-20 Juanma Barranquero <lekktu@gmail.com>
6448
6449 * w32gui.h (XParseGeometry): Do not declare.
6450
05642592
PE
64512012-09-19 Paul Eggert <eggert@cs.ucla.edu>
6452
e4bce92a 6453 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
1f9f395d 6454 Ignore 'expected'. See Eli Zaretskii in
e4bce92a
PE
6455 <http://bugs.gnu.org/12471#8> (last line).
6456
05642592
PE
6457 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
6458 (XParseGeometry): Now static. Substitute extremal values for
6459 values that are out of range.
6460
e543ae91
JD
64612012-09-19 Jan Djärv <jan.h.d@swipnet.se>
6462
6463 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
6464
6465 * nsfns.m (XParseGeometry): Remove.
6466 (Fx_create_frame): Call x_set_offset to correctly interpret
6467 top_pos in geometry.
6468
3a880af4 6469 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
e543ae91
JD
6470 (Fx_parse_geometry): If there is a space in string, call
6471 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
6472
45ba16c7
EZ
64732012-09-17 Eli Zaretskii <eliz@gnu.org>
6474
c8b9f1bc
EZ
6475 * search.c (scan_buffer): Use character positions in calls to
6476 region_cache_forward and region_cache_backward, not byte
6477 positions. (Bug#12196)
6478
b4c932a2
EZ
6479 * w32term.c (w32_read_socket): Set pending_signals to 1, like
6480 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
6481
45ba16c7
EZ
6482 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
6483 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
6484 emacs_blocked_malloc, now deleted.
6485
eeceac93
PE
64862012-09-17 Paul Eggert <eggert@cs.ucla.edu>
6487
6488 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
6489 The workaround was for improving performance on Solaris 2.4, but
6490 is getting in the way now. Emacs will still work if someone is
6491 still running Solaris 2.4 in a museum somewhere; Sun dropped
6492 support for Solaris 2.4 in 2003.
6493 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
6494 * process.c (create_process) [HAVE_WORKING_VFORK]:
6495 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
6496 since Emacs no longer uses vfork on that platform.
6497
78f83752
GM
64982012-09-17 Glenn Morris <rgm@gnu.org>
6499
6500 * emacs.c: Use COPYRIGHT.
6501
634b8cac
PE
65022012-09-16 Paul Eggert <eggert@cs.ucla.edu>
6503
0caaedb1
PE
6504 Remove configure's --without-sync-input option (Bug#12450).
6505 When auditing signal-handling in preparation for cleaning it up,
6506 I found that SYNC_INPUT has race conditions and would be a real
6507 pain to fix. Since it's an undocumented and deprecated
6508 configure-time option, now seems like a good time to remove it.
6509 Also see <http://bugs.gnu.org/11080#16>.
6510 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
6511 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
6512 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
6513 (malloc_hysteresis):
6514 (check_depth) [XMALLOC_OVERRUN_CHECK]:
6515 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
6516 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
6517 (dont_register_blocks, bytes_used_when_reconsidered)
6518 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
6519 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
6520 [!SYSTEM_MALLOC && !SYNC_INPUT]:
1f9f395d 6521 Remove. All uses removed.
0caaedb1
PE
6522 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
6523 implementation, one that depends on whether the new macro
6524 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
6525 is defined.
6526 * atimer.c (run_timers, handle_alarm_signal):
6527 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
6528 (handle_async_input, process_pending_signals)
6529 (handle_input_available_signal, init_keyboard):
6530 * nsterm.m (ns_read_socket):
6531 * process.c (wait_reading_process_output):
6532 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
6533 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
6534 (emacs_write):
6535 * xterm.c (XTread_socket):
6536 Assume SYNC_INPUT.
6537 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
6538 * eval.c (handling_signal): Remove. All uses removed.
6539 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
6540 All uses replaced with the SYNC_INPUT version.
6541 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
6542 Remove decls.
6543 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6544 Now static.
6545
634b8cac
PE
6546 * font.c (Ffont_shape_gstring): Remove unused local.
6547
83da1b55
GM
65482012-09-16 Glenn Morris <rgm@gnu.org>
6549
518650a5
GM
6550 * Makefile.in (clean): No longer run nextstep's clean.
6551
83da1b55
GM
6552 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
6553 (ns_frag): Remove.
6554 (ns-app): Move here from ns.mk, and simplify.
6555 (clean): Simplify nextstep entry.
6556 * ns.mk: Remove file.
6557
85a43e2e
KH
65582012-09-17 Kenichi Handa <handa@gnu.org>
6559
6560 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
6561 not covert the last few charactes.
6562
ba13e616 65632012-09-16 Kenichi Handa <handa@gnu.org>
ea964864
KH
6564
6565 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
6566 here, but just check the validity of glyphs in the glyph-string.
6567
a8c729af
MR
65682012-09-16 Martin Rudalics <rudalics@gmx.at>
6569
3a880af4
SM
6570 * window.c (Fwindow_parameter, Fset_window_parameter):
6571 Accept any window as argument (Bug#12452).
a8c729af 6572
c077c059
JD
65732012-09-16 Jan Djärv <jan.h.d@swipnet.se>
6574
6575 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
6576 to ns_term_init to avoid memory leak.
6577
6578 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
6579 explicit retain/release.
6580 (ns_term_init): Only allow one display. Initialize outerpool and
6581 ns_*_types.
6582
39a57ad0
PE
65832012-09-15 Paul Eggert <eggert@cs.ucla.edu>
6584
6585 Port _setjmp fix to POSIXish hosts as well as Microsoft.
6586 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
6587 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
6588 the Microsoft problem in a different way, by altering ../nt/config.nt.
6589
7105c8cb
EZ
65902012-09-15 Eli Zaretskii <eliz@gnu.org>
6591
6592 * w32xfns.c:
6593 * w32uniscribe.c:
6594 * w32term.c:
6595 * w32select.c:
6596 * w32reg.c:
6597 * w32proc.c:
6598 * w32menu.c:
6599 * w32inevt.c:
6600 * w32heap.c:
6601 * w32font.c:
6602 * w32fns.c:
6603 * w32console.c:
6604 * w32.c:
6605 * w16select.c: Remove inclusion of setjmp.h, as it is now included
6606 by lisp.h. This completes removal of setjmp.h inclusion
6607 erroneously announced in the previous commit. (Bug#12446)
6608
6609 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
6610 more accurate.
6611
6612 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
6613 not defined as a macro. The latter happens on MS-Windows.
6614 (Bug#12446)
6615
0328b6de
PE
66162012-09-15 Paul Eggert <eggert@cs.ucla.edu>
6617
6618 Port better to POSIX hosts lacking _setjmp (Bug#12446).
6619 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
7105c8cb 6620 Some instances of '#include <setjmp.h>' removed, if the
0328b6de
PE
6621 only reason for the instance was because "lisp.h" was included.
6622 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
6623 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
6624 and _longjmp with the new symbols. Emacs already uses _setjmp if
6625 available, so this change affects only POSIXish hosts that have
6626 sigsetjmp but not _setjmp, such as some versions of Solaris and
6627 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
6628 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
6629 (png_load_body) [HAVE_PNG]:
6630 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
6631 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
6632 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
6633 since PNG requires jmp_buf. This is the only exception to the
6634 general rule that we now use sys_setjmp and sys_longjmp.
6635 This exception is OK since this code does not change the signal
6636 mask or longjmp out of a signal handler.
6637
2af03429
PE
66382012-09-14 Paul Eggert <eggert@cs.ucla.edu>
6639
6640 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
6641 Include "syssignal.h", for 'main_thread'.
6642
2f294edf
DA
66432012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
6644
6645 Avoid out-of-range marker position (Bug#12426).
3a880af4
SM
6646 * insdel.c (replace_range, replace_range_2):
6647 Adjust markers before overlays, as suggested by comments.
2f294edf
DA
6648 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
6649 Remove redundant check before calling offset_intervals.
6650
6b533e9c
MR
66512012-09-14 Martin Rudalics <rudalics@gmx.at>
6652
6653 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
6654 current buffer (Bug#12387).
6655
2a7931e3
JB
66562012-09-14 Juanma Barranquero <lekktu@gmail.com>
6657
6658 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
6659
c18e885b
PE
66602012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6661
6662 Use a more backwards-compatible timer format (Bug#12430).
6663 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
6664 vector element, not from the 4th, since PSECS is now at the end.
6665 (Fcurrent_idle_time): Doc fix.
6666
d59a1afb
DA
66672012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
6668
6669 Function to mark objects and remove killed buffers at once.
6670 * alloc.c (discard_killed_buffers): Rename to ...
6671 (mark_discard_killed buffers) ... new name. Add marking
6672 of remaining objects. Fix comment. Adjust users.
6673 (mark_object): Do not touch frame buffer lists here.
6674 * frame.c (delete_frame): Reset frame buffer lists here.
6675
5f0cb45a
PE
66762012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6677
8ea47e3a
PE
6678 Better workaround for GNOME bug when --enable-gcc-warnings.
6679 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
6680 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
6681 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
6682
4a4bbad2
PE
6683 Simplify SIGIO usage (Bug#12408).
6684 The code that dealt with SIGIO was crufty and confusing, e.g., it
6685 played tricks like "#undef SIGIO" but these tricks were not used
6686 consistently. Simplify mostly by not #undeffing standard symbols,
6687 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
6688 or not as we please) rather than "defined SIGIO" (standard symbol
6689 that we probably shouldn't #undef).
6690 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
6691 Modules that need it can include it.
6692 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
6693 * dispextern.h (ignore_sigio): New decl.
6694 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
6695 unconditionally, since it's now a no-op if !USABLE_SIGIO.
6696 * emacs.c (shut_down_emacs):
6697 * keyboard.c (kbd_buffer_store_event_hold):
6698 Use ignore_sigio rather than invoking 'signal' directly.
6699 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
6700 for FIONREAD.
6701 (FIONREAD, SIGIO): Do not #undef.
6702 (tty_read_avail_input): Use #error rather than a syntax error.
6703 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
6704 for I_PIPE, used by SETUP_SLAVE_PTY.
6705 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
6706 * sysdep.c (croak): Remove; no longer needed. This bit of
6707 temporary code, with Fred N. Fish's comment that it's temporary,
6708 has been in Emacs since at least 1992!
6709 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
6710 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
6711 * syssignal.h (croak): Remove decl.
6712 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
6713 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
6714 now that we're termios-only.
6715 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
6716 * term.c (dissociate_if_controlling_tty): Use #error rather than
6717 a run-time error.
6718
5f0cb45a
PE
6719 Work around GCC and GNOME bugs when --enable-gcc-warnings.
6720 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
6721 to work around GNOME bug 683906.
6722 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
6723 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
6724 This works around GCC bug 54561.
6725
40bce90b
PE
67262012-09-12 Paul Eggert <eggert@cs.ucla.edu>
6727
6728 More fixes for 'volatile' and setjmp/longjmp.
6729 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
6730 * image.c (struct png_load_context) [HAVE_PNG]: New type.
6731 (png_load_body) [HAVE_PNG]:
6732 (jpeg_load_body) [HAVE_JPEG]:
6733 New function, with most of the old parent function's body.
6734 (png_load) [HAVE_PNG]:
6735 (jpeg_load) [HAVE_JPEG]:
6736 Invoke the new function, to avoid longjmp munging our locals.
6737 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
6738 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
6739 longjmp is passed 2, as the C standard doesn't guarantee this.
6740 Instead, store the failure code into mgr->failure_code.
6741
bfeae2cf
SM
67422012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6743
6744 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
6745 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
6746 (syms_of_keyboard): Remove support for unread-command-char.
6747
8099e36b
EZ
67482012-09-12 Eli Zaretskii <eliz@gnu.org>
6749
6750 * w32proc.c (sys_kill): If PID is our process ID and the signal is
6751 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
6752 violation. (Bug#12426)
6753
92547ff9
PE
67542012-09-12 Paul Eggert <eggert@cs.ucla.edu>
6755
6756 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
6757
45b82ad0
SM
67582012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6759
6760 * eval.c: Add `inhibit-debugger'.
6761 (Qinhibit_debugger): New symbol.
6762 (call_debugger): Bind it instead of Qdebug_on_error.
6763 (maybe_call_debugger): Test Vinhibit_debugger.
6764 (syms_of_eval): Define inhibit-debugger.
6765 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
6766 (syms_of_xdisp): Remove inhibit-debug-on-message.
6767
5779a1dc
PE
67682012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6769
50f2e553
PE
6770 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
6771 If a nonvolatile local variable is written before a _longjmp to
6772 the frame containing the variable, and is read after the _longjmp,
6773 the value read is indeterminate. Some local variables of type
6774 'struct handler' and 'struct catchtag' are used in this way, so
6775 mark each of their slots as volatile if the slot can be set before
6776 _longjmp and read afterwards.
6777 * lisp.h (struct handler): var and chosen_clause are now volatile.
6778 (struct catchtag): val, next, and pdlcount are now volatile.
6779
ae1d87e2
PE
6780 * bidi.c (bidi_push_it, bidi_pop_it):
6781 * fns.c (copy_hash_table):
6782 * image.c (define_image_type):
6783 * keyboard.c (kbd_buffer_store_event_hold):
6784 * process.c (Fprocess_send_eof):
6785 * xfaces.c (x_create_gc) [HAVE_NS]:
6786 * xgselect.c (xg_select):
6787 Prefer assignment to memcpy when either will do.
6788
5779a1dc
PE
6789 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
6790 Use pointer-to-a-pointer to simplify and avoid a NILP check each
6791 time an item is removed. No need to mark this function 'inline';
6792 the compiler knows better than we do.
6793
c4c9756b
JD
67942012-09-11 Jan Djärv <jan.h.d@swipnet.se>
6795
6796 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
6797 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
6798 to change_frame_size (Bug#12388).
6799 (windowDidResize:): Pass YES to updateFrameSize.
6800
6801 * nsterm.h: Add delay parameter to updateFrameSize.
6802
d73e321c
DA
68032012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
6804
6805 Discard killed buffers from deleted window and frame objects.
6806 This reduces an amount of references to killed buffers and
6807 helps GC to reclaim them faster.
6808 * alloc.c (discard_killed_buffers): New function.
6809 (mark_object): Use it for deleted windows and frames.
6810 (mark_object): If symbol's value is set up for a killed buffer
1f9f395d 6811 or deleted frame, restore its global binding.
d73e321c
DA
6812 * data.c (swap_in_global_binding): Add GC notice.
6813 (swap_in_symval_forwarding): Use convenient set_blv_where.
6814 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
6815 * window.h: ... to here.
6816
e578f381
DA
68172012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
6818
6819 Convenient macro to check whether the buffer is live.
6820 * buffer.h (BUFFER_LIVE_P): New macro.
6821 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
6822 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
6823
3057e615
YM
68242012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6825
6826 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
6827 composition cases (Bug#12364).
6828
6829 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
6830 overhang of succeeding glyphs overlapping box cursor.
6831
6832 * w32term.c (x_draw_glyph_string): Likewise.
6833
6fda35f2
PE
68342012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6835
c990426a
PE
6836 Simplify, document, and port floating-point (Bug#12381).
6837 The porting part of this patch fixes bugs on non-IEEE platforms
6838 with frexp, ldexp, logb.
6839 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
6840 Now static.
6841 * floatfns.c: Simplify discussion of functions that Emacs doesn't
6842 support, by removing commented-out code and briefly listing the
6843 C89 functions excluded. The commented-out stuff was confusing
6844 maintenance, e.g., we thought we needed cbrt but it was commented out.
6845 (logb): Remove decl; no longer needed.
6846 (isfinite): New macro, if not already supplied.
6847 (isnan): Don't replace any existing macro.
6848 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
6849 are present on all C89 platforms.
6850 (Ffrexp): Do not special-case zero, as frexp does the right thing
6851 for that case.
6852 (Flogb): Do not use logb, as it doesn't have the desired meaning
6853 on hosts that use non-base-2 floating point. Instead, stick with
6854 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
6855 frexp, to avoid getting an unspecified result.
6856
6fda35f2
PE
6857 * xdisp.c (Qinhibit_debug_on_message): Now static.
6858
16130a58
JD
68592012-09-10 Jan Djärv <jan.h.d@swipnet.se>
6860
6861 * nsterm.m (ns_update_begin): Set clip path to whole view by using
6862 NSBezierPath (Bug#12131).
6863
d105a573
CY
68642012-09-10 Chong Yidong <cyd@gnu.org>
6865
6866 * fns.c (Fdelq, Fdelete): Doc fix.
6867
ff55dfe8
PE
68682012-09-10 Paul Eggert <eggert@cs.ucla.edu>
6869
6870 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
6871 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
6872
e7032e7c
SM
68732012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6874
6875 * lisp.h (make_lisp_ptr): New macro to replace XSET.
6876 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
6877 Use it.
6878
e9957956
EZ
68792012-09-09 Eli Zaretskii <eliz@gnu.org>
6880
aba05ce9
EZ
6881 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
6882 left fringe if the window has a left margin. This avoids leaving
6883 traces of the cursor because its leftmost pixel is not drawn over.
6884
e9957956
EZ
6885 * dispnew.c (update_window_line): When the left margin area of a
6886 screen line is updated, set the redraw_fringe_bitmaps_p flag of
6887 that screen line. (Bug#12277)
6888
f6196b87
PE
68892012-09-09 Paul Eggert <eggert@cs.ucla.edu>
6890
6891 Assume C89 or later for math functions (Bug#12381).
6892 This simplifies the code, and makes it a bit smaller and faster,
6893 and (most important) makes it easier to clean up signal handling
6894 since we can stop worring about floating-point exceptions in
6895 library code. That was a problem before C89, but the problem
6896 went away many years ago on all practical Emacs targets.
6897 * data.c, image.c, lread.c, print.c:
6898 Don't include <math.h>; no longer needed.
6899 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
6900 might be autoconfigured, as that never happens.
6901 * data.c (fmod):
6902 * doprnt.c (DBL_MAX_10_EXP):
6903 * print.c (DBL_DIG):
6904 Remove. C89 or later always defines these.
6905 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
6906 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
6907 (arith_error, domain_error, domain_error2):
6908 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
6909 no longer needed -- we simply return what C returns. All uses removed.
6910 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
6911 the wrapped code.
6912 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
6913 Remove. All uses expanded, as these macros are no longer used
6914 more than once and are now more trouble than they're worth.
6915 (Ftan): Use tan, not sin / cos.
6916 (Flogb): Assume C89 frexp.
6917 (fmod_float): Assume C89 fmod.
6918 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
6919 (init_floatfns): Remove. All uses removed.
6920
9d7f1863
JD
69212012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6922
6923 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
6924 compositeToPoint for OSX < 10.6 (Bug#12390).
6925
eabf0404
PE
69262012-09-08 Paul Eggert <eggert@cs.ucla.edu>
6927
6928 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
6929 This produces more-accurate results.
6930
0b3b1d23
JD
69312012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6932
6933 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
6934 changes (Bug#12088).
6935
6dcef6ec
CY
69362012-09-08 Chong Yidong <cyd@gnu.org>
6937
6938 * syntax.c (Fstring_to_syntax): Doc fix.
6939
aa7d57c5
JD
69402012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6941
6942 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
6943 in the internal border.
6944 (x_set_window_size): Remove static variables and their usage.
6945 (ns_redraw_scroll_bars): Fix NSTRACE arg.
3a880af4
SM
6946 (ns_after_update_window_line, ns_draw_fringe_bitmap):
6947 Remove fringe/internal border adjustment (Bug#11052).
aa7d57c5
JD
6948 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
6949 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
6950 (ns_fix_rect_ibw): Remove.
6951 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
6952 (ns_dumpglyphs_box_or_relief): Ditto.
6953 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
6954 adjustment.
6955 (ns_dumpglyphs_image): Ditto.
fc0c31f8 6956 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
aa7d57c5
JD
6957 border adjustment.
6958 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
6959 their usage. Add fringe_extended_p and its use as in other terms.
6960 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
6961 scroll bar was removed.
6962 (updateFrameSize): New function.
6963 (windowDidResize): Move code to updateFrameSize and call it.
6964
6965 * nsterm.h (EmacsView): Add updateFrameSize.
6966
1a5432bc
CY
69672012-09-07 Chong Yidong <cyd@gnu.org>
6968
b4f5313e
CY
6969 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
6970
1a5432bc
CY
6971 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
6972
1a4f1e9b
PE
69732012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6974
6975 More signal-handler cleanup (Bug#12327).
eddb36a7
PE
6976 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
6977 Problem introduced when merging patches. Noted by Eli Zaretskii in
6978 <http://bugs.gnu.org/12327#67>.
1a4f1e9b
PE
6979 * floatfns.c: Comment fix.
6980 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
6981 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
6982 and anyway the declaration is harmless even if SIGDANGER is not defined.
6983 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
6984 defined BROKEN_FIONREAD). systty.h formerly did this, but other
6985 source files not surprisingly expected syssignal.h to define, or
6986 not define, SIGIO, and it's cleaner to do it that way, for consistency.
6987 Include <sys/ioctl.h>, for FIONREAD.
6988 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
6989 This eliminates a problem whereby other files mysteriously had
6990 to include "syssignal.h" before including "systty.h" if they
6991 wanted to use "#ifdef SIGIO".
6992
bc8000ff
EZ
69932012-09-07 Eli Zaretskii <eliz@gnu.org>
6994
3e6d6928
EZ
6995 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
6996
6997 * w32.c (sigemptyset): Empty the set.
6998 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
6999
bc8000ff
EZ
7000 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
7001
b4fa72f2
DA
70022012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
7003
7004 * alloc.c (mark_buffer): Revert unsafe marking optimization.
7005 (mark_object): Likewise for frame objects.
7006
30730c93
PE
70072012-09-07 Paul Eggert <eggert@cs.ucla.edu>
7008
7009 * syssignal.h (handle_on_main_thread): Always declare,
7010 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
7011 This ports to platforms without HAVE_PTHREAD.
7012
2fe28299
PE
70132012-09-06 Paul Eggert <eggert@cs.ucla.edu>
7014
7015 Signal-handler cleanup (Bug#12327).
7016 Emacs's signal handlers were written in the old 4.2BSD style with
7017 sigblock and sigmask and so forth, and this led to some
7018 inefficiencies and confusion. Rewrite these to use
7019 pthread_sigmask etc. without copying signal sets around. Also,
7020 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
7021 'signal', and instead use functions that do not attempt to take
7022 over the system name space. This patch causes Emacs's text
7023 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
7024 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
7025 Do not include <signal.h> or "syssignal.h", as these
7026 modules do not use signals.
7027 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
7028 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
7029 Do not include <signal.h>, as "syssignal.h" does that for us now.
7030 * atimer.c (sigmask_atimers): New function.
7031 (block_atimers, unblock_atimers): New functions,
7032 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
7033 All uses replaced.
7034 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
7035 no longer needed here.
7036 * emacs.c (main): Inspect existing signal handler with sigaction,
fc0c31f8 7037 so that there's no need to block and unblock SIGHUP.
2fe28299
PE
7038 * sysdep.c (struct save_signal): New member 'action', replacing
7039 old member 'handler'.
7040 (save_signal_handlers, restore_signal_handlers):
7041 Use sigaction instead of 'signal' to save and restore.
7042 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
7043 New function. All users of 'signal' modified to use set_sighandler
7044 if they're writeonly, and to use sys_signal if they're read+write.
7045 (emacs_sigaction_init, forwarded_signal): New functions.
7046 (sys_signal): Remove. All uses replaced by calls to sigaction
7047 and emacs_sigaction_init, or by direct calls to 'signal'.
7048 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
7049 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
7050 all uses replaced by pthread_sigmask etc. calls.
7051 * syssignal.h: Include <signal.h>.
7052 (emacs_sigaction_init, forwarded_signal): New decls.
7053 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
7054 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
7055 (sigmask, sys_sigmask): Remove; no longer needed.
7056 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
7057 (sigblock, sigunblock, sigfree):
7058 (sigsetmask) [!defined sigsetmask]:
7059 Remove. All uses replaced by pthread_sigmask.
7060 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
7061 no longer need to be replaced, and its typical old uses
7062 are now done via emacs_sigaction_init and sigaction.
7063 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
7064 (sys_sigdel): Remove; unused.
7065 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
7066
0216c128
EZ
70672012-09-06 Eli Zaretskii <eliz@gnu.org>
7068
7069 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
7070 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
7071
c752cfa9
DA
70722012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
7073
7074 Explicitly mark buffer_defaults and buffer_local_symbols.
7075 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
7076 mark_local_symbols here.
7077 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
7078 since special buffers aren't marked here any more.
7079 (allocate_buffer): Chain new buffer with all_buffers here...
7080 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
7081 not here.
7082 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
7083 (syms_of_buffer): Remove staticpro of the above.
7084 (init_buffer_once): Set names for buffer_defaults and
7085 buffer_local_symbols.
7086
a864ef14
PE
70872012-09-06 Paul Eggert <eggert@cs.ucla.edu>
7088
7089 Use bool for booleans in font-related modules.
7090 * font.c (font_intern_prop, font_style_to_value)
7091 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
7092 (generate_otf_features, font_check_otf_features, font_check_otf)
7093 (font_match_p, font_list_entities, font_at):
7094 * fontset.c (fontset_id_valid_p, reorder_font_vector
7095 (fontset_find_font, Fset_fontset_font)
7096 (face_suitable_for_char_p) [0]:
7097 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
7098 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
7099 (m17n_flt_initialized, ftfont_shape_by_flt):
7100 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
7101 * nsfont.m (nsfont_draw):
7102 * w32font.c (w32font_draw):
7103 * w32term.c (x_draw_glyphless_glyph_string_foreground):
7104 Use bool for booleans.
7105 * font.h: Adjust to above API changes.
7106 (struct font, struct font_driver, struct font_driver_list):
7107 Use bool for booleans.
7108 (struct font): Remove useless member encoding_type.
7109 All users removed.
7110 * fontset.c, xftfont.c: Omit unnecessary static decls.
7111
0699fc18
DA
71122012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
7113
7114 * alloc.c (mark_object): Revert window marking code
7115 since it's unsafe for the Fset_window_configuration.
7116
20ef56db
PE
71172012-09-05 Paul Eggert <eggert@cs.ucla.edu>
7118
2fe28299 7119 Fix race conditions with signal handlers and errno (Bug#12327).
20ef56db
PE
7120 Be more systematic about preserving errno whenever a signal
7121 handler returns, even if it's not in the main thread. Do this by
7122 renaming signal handlers to distinguish between signal delivery
7123 and signal handling. All uses changed.
7124 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
7125 * data.c (deliver_arith_signal): Rename from arith_error.
7126 * dispnew.c (deliver_window_change_signal): Rename from
7127 window_change_signal.
7128 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
7129 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
7130 * keyboard.c (deliver_input_available_signal): Rename from
7131 input_available_signal.
7132 (deliver_user_signal): Rename from handle_user_signal.
7133 (deliver_interrupt_signal): Rename from interrupt_signal.
7134 * process.c (deliver_pipe_signal): Rename from send_process_trap.
7135 (deliver_child_signal): Rename from sigchld_handler.
7136 * atimer.c (handle_alarm_signal):
7137 * data.c (handle_arith_signal):
7138 * dispnew.c (handle_window_change_signal):
7139 * emacs.c (handle_fatal_signal, handle_danger_signal):
7140 * keyboard.c (handle_input_available_signal):
7141 * keyboard.c (handle_user_signal, handle_interrupt_signal):
7142 * process.c (handle_pipe_signal, handle_child_signal):
7143 New functions, with the actual signal-handling code taken from the
7144 original respective signal handlers, sans the sporadic attempts to
7145 preserve errno, since that's now done by handle_on_main_thread.
7146 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
7147 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
7148 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7149 Move to sysdep.c.
7150 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7151 Move initialization of main_thread to sysdep.c's init_signals.
7152 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
7153 our usage, and simplifies the mainline code.
7154 (record_child_status_change): New static function, as a helper
7155 for handle_child_signal, and with most of the old child handler's
7156 contents.
7157 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
7158 (handle_child_signal): Use the above.
7159 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7160 Moved here from emacs.c.
7161 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
7162 code moved here from emacs.c's main function.
7163 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
3a880af4
SM
7164 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
7165 This lets callers save and restore errno properly.
20ef56db 7166
e3ccf108
DA
71672012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
7168
7169 Remove redundant or unused things here and there.
7170 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
7171 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
7172 * editfns.c (Fcompare_buffer_substrings): Likewise.
7173 * frame.h (struct terminal, struct font_driver_list):
7174 Remove redundant declarations.
7175 * window.h (Qleft, Qright): Likewise.
7176
697e1e39
DA
71772012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
7178
7179 Do not mark objects from deleted buffers, windows and frames.
7180 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
7181 (mark_object): Likewise for windows and frames.
7182
c1ca42ca
DA
71832012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
7184
7185 * alloc.c (valid_lisp_object_p): Treat killed buffers,
7186 buffer_defaults and buffer_local_symbols as valid objects.
7187 Return special value to denote them.
7188
014d93be
PE
71892012-09-05 Paul Eggert <eggert@cs.ucla.edu>
7190
f75d7a91
PE
7191 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
7192 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
7193 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
7194 (file_name_absolute_p, Fsubstitute_in_file_name):
7195 (check_executable, check_writable, Ffile_accessible_directory_p)
7196 (Fset_file_selinux_context, Fdefault_file_modes)
7197 (Finsert_file_contents, choose_write_coding_system)
7198 (Fwrite_region, build_annotations, a_write, e_write)
7199 (Fdo_auto_save):
7200 * filelock.c (boot_time_initialized, get_boot_time)
7201 (get_boot_time_1, lock_file_1, within_one_second):
7202 * floatfns.c (in_float):
7203 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
7204 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
7205 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
7206 * lisp.h (struct Lisp_Hash_Table.cmpfn):
7207 * window.c (compare_window_configurations):
7208 Use bool for booleans.
7209 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
7210 (Fdefault_file_modes): Now mode_t, not int, for modes.
7211 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
7212 (internal_delete_file): Now returns void, not a (boolean) int,
7213 since nobody was looking at the return value.
7214 * lisp.h, window.h: Adjust to above API changes.
7215
014d93be
PE
7216 * xdisp.c (set_message): Simplify and reindent last change.
7217
776f29e1
JB
72182012-09-05 Juanma Barranquero <lekktu@gmail.com>
7219
7220 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
7221
7f7e0167
LI
72222012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
7223
7224 * eval.c (call_debugger): Make the function non-static so that we
7225 can call it from set_message.
7226
7227 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
7228 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
7229
cf29dd84
PE
72302012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7231
7232 Give more-useful info on a fatal error (Bug#12328).
7233 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
7234 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
7235 of doing the work ourselves.
7236 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
7237 do most of the work.
7238 (fatal_error_backtrace): New function, taken from the guts
7239 of the old fatal_error_signal, but with a new option to output
7240 a backtrace.
7241 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
7242 info about the signal than just its number.
7243 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
7244 * sysdep.c: Include <execinfo.h>
7245 (emacs_backtrace): New function, taken partly from the previous
7246 code of the 'die' function.
7247 (emacs_abort): Call fatal_error_backtrace rather than abort.
7248
972debf2
SM
72492012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7250
7251 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
7252 eager (load-time) macro-expansion.
7253 * lisp.mk (lisp): Add macroexp.
7254
1088b922
PE
72552012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7256
7257 Simplify redefinition of 'abort' (Bug#12316).
7258 Do not try to redefine the 'abort' function. Instead, redo
7259 the code so that it calls 'emacs_abort' rather than 'abort'.
7260 This removes the need for the NO_ABORT configure-time macro
7261 and makes it easier to change the abort code to do a backtrace.
7262 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
7263 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
7264 Remove; sysdep.c's emacs_abort now takes its place.
7265 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
7266 'abort' changed to use 'emacs_abort'.
7267 * msdos.c (dos_abort) [defined abort]: Remove; not used.
7268 (abort) [!defined abort]: Rename to ...
7269 (emacs_abort): ... new name.
7270 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
7271 the place of the old 'abort' in emacs.c.
7272 * w32.c, w32fns.c (abort): Do not #undef.
7273 * w32.c (emacs_abort): Rename from w32_abort.
7274
30934d33
EZ
72752012-09-04 Eli Zaretskii <eliz@gnu.org>
7276
7277 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
7278 offsets[j].dv, since the y axis of the screen coordinates points
7279 down, while the y axis of the font definition coordinates points
7280 up. This fixes display of Arabic diacritics such as KASRA and
7281 KASRATAN. (Bug#11860)
7282
af26b72c
PE
72832012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7284
7285 Be more systematic about _setjmp vs setjmp.
7286 * alloc.c (test_setjmp, mark_stack):
7287 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
7288 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
7289 (png_load, my_error_exit, jpeg_load):
7290 * process.c (send_process_trap, send_process):
7291 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
7292 The underscored versions are up to 30x faster on some hosts.
7293 Formerly, the code used setjmp+longjmp sometimes and
7294 _setjmp+_longjmp at other times, with no particular reason to
7295 prefer setjmp+longjmp.
7296
26d4541d
PE
72972012-09-03 Paul Eggert <eggert@cs.ucla.edu>
7298
d42f4f0f 7299 Fix minor problem found by static checking.
26d4541d 7300 * buffer.c (Fdelete_all_overlays): Return nil.
26d4541d 7301
c5e28e39
MR
73022012-09-03 Martin Rudalics <rudalics@gmx.at>
7303
7304 * buffer.c (Fdelete_all_overlays): New function.
7305
3eab3ca9
CY
73062012-09-03 Chong Yidong <cyd@gnu.org>
7307
7308 * gtkutil.c: Add extern decl for Qxft.
7309
c04889f8
PE
73102012-09-02 Paul Eggert <eggert@cs.ucla.edu>
7311
1882aa38
PE
7312 * emacs.c, eval.c: Use bool for boolean.
7313 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
7314 (malloc_using_checking) [DOUG_LEA_MALLOC]:
7315 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
7316 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
7317 (main, decode_env_path, Fdaemon_initialized):
7318 * eval.c (call_debugger, Finteractive_p, interactive_p):
7319 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
7320 (maybe_call_debugger, Fbacktrace):
7321 * process.c (read_process_output, exec_sentinel):
7322 Use bool for booleans.
7323 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
7324 All callers changed.
7325 * eval.c (interactive_p): Omit always-true boolean argument
7326 EXCLUDE_SUBRS_P. All callers changed.
7327 * dispextern.h, lisp.h: Reflect above API changes.
7328 * firstfile.c (dummy): Use the address of 'main', whose signature
7329 won't change, instead of the address of 'initialize', whose
7330 signature just changed from int to bool.
7331 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
7332 * msdos.c (fatal_error_in_progress): ... from here.
7333 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
7334 of incrementing it.
7335 (redisplay_internal, unwind_redisplay): Simply clear
7336 REDISPLAYING_P when unwinding, instead of saving its previous,
7337 always-false value and then restoring it.
7338
a411ac43
PE
7339 Clean up some extern decls.
7340 Mostly, this hoists extern decls out of .c files and into .h files.
7341 That way, we're more likely to catch errors if the interfaces change.
7342 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
7343 declare xg_mark_data.
7344 * dispextern.h (x_frame_parm_handlers):
7345 * font.h (Qxft):
7346 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
7347 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
7348 (Qultra_bold, Qoblique, Qitalic):
7349 Move extern decl here from .c file.
7350 * alloc.c (xg_mark_data) [USE_GTK]:
7351 * doc.c (Qclosure):
7352 * eval.c (Qlexical_binding):
7353 * fns.c (time) [!HAVE_UNISTD_H]:
7354 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
7355 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
7356 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
7357 * lread.c (Qinternal_interpreter_environment):
7358 * minibuf.c (Qbuffer):
7359 * process.c (QCfamily, QCfilter):
7360 * widget.c (free_frame_faces):
7361 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
7362 * xfont.c (x_clear_errors):
7363 * xterm.c (x_frame_parm_handlers):
7364 Remove now-redundant extern decls.
7365 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
7366 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
7367 Now static.
7368 * xfaces.c: Remove unnecessary static decls.
7369 * xterm.c (updating_frame): Remove decl of nonexistent object.
7370
c04889f8
PE
7371 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
7372 when building globals.h, as the objects that are not built on
7373 this host are not needed to compile C files on this host.
7374
8b339673
JD
73752012-09-02 Jan Djärv <jan.h.d@swipnet.se>
7376
7377 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
7378
7379 * frame.h: Add missing prototype for x_wm_set_size_hint.
7380
a08d4ba7
PE
73812012-09-02 Paul Eggert <eggert@cs.ucla.edu>
7382
7383 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
7384 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
7385 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
7386 (Fsubstitute_command_keys):
7387 * editfns.c (region_limit, find_field, Fconstrain_to_field)
7388 (save_excursion_save, save_excursion_restore)
7389 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
7390 (format_time_string, general_insert_function)
7391 (make_buffer_string, make_buffer_string_both)
7392 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
7393 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
7394 (copy_text, insert_1, insert_1_both, insert_from_string)
7395 (insert_from_string_before_markers, insert_from_string_1)
7396 (insert_from_buffer, insert_from_buffer_1, replace_range)
7397 (replace_range_2, del_range_1, del_range_byte, del_range_both)
7398 (del_range_2, modify_region):
7399 * intervals.c (intervals_equal, balance_possible_root_interval)
7400 (adjust_intervals_for_insertion, merge_properties_sticky)
7401 (graft_intervals_into_buffer, lookup_char_property)
7402 (adjust_for_invis_intang, set_point_both)
7403 (get_property_and_range, compare_string_intervals)
7404 (set_intervals_multibyte_1, set_intervals_multibyte):
7405 * keyboard.c (decode_timer):
7406 Use bool for boolean.
7407 * intervals.h, lisp.h, systime.h: Reflect above API changes.
7408 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
7409
48c948de
CY
74102012-09-02 Chong Yidong <cyd@gnu.org>
7411
7412 * keymap.c (push_key_description): Print M-TAB as C-M-i
7413 (Bug#11758).
7414
6c49a40b
JB
74152012-09-02 Juanma Barranquero <lekktu@gmail.com>
7416
7417 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
7418 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
7419 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
7420 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
7421 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
7422 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
7423 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7424
4dfbd238
EZ
74252012-09-01 Eli Zaretskii <eliz@gnu.org>
7426
7e510e28
EZ
7427 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
7428 more than one grapheme cluster passed to the shaper: compute the
7429 offset adjustment values separately for each cluster. (Bug#11860)
7430
4dfbd238
EZ
7431 * image.c: Restore mistakenly removed inclusion of w32.h. Without
7432 it, GCC doesn't see prototypes of w32_delayed_load, and complains
7433 about implicit conversions from integer to pointer.
7434
86571ae0
DC
74352012-09-01 Daniel Colascione <dancol@dancol.org>
7436
7437 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
7438 system used too early.
7439
0e23ef9d
PE
74402012-09-01 Paul Eggert <eggert@cs.ucla.edu>
7441
7442 Better seed support for (random).
7443 * emacs.c (main): Call init_random.
7444 * fns.c (Frandom): Set the seed from a string argument, if given.
7445 Remove long-obsolete Gentzel cruft.
7446 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
7447 (init_random): New function.
7448
17a2cbbd
DC
74492012-09-01 Daniel Colascione <dancol@dancol.org>
7450
7451 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
7452 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
7453 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
7454 x_wm_set_size_hint, x_query_colors, x_real_positions,
7455 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
7456 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
7457 all of which have been moved to common code.
7458
7459 * xfaces.c: Include TERM_HEADER instead of listing all possible
7460 window-system headers.
7461
7462 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
7463 to match header.
7464
7465 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
7466 directly accessing frame internals.
7467
f18cbb28 7468 * w32font.h: Include font.h. Define syms_of_w32font and
17a2cbbd
DC
7469 globals_of_w32font.
7470
7471 * process.c: Include TERM_HEADER instead of listing all possible
7472 window-system headers.
7473
3a880af4
SM
7474 * nsterm.h: Remove declarations now in frame.h.
7475 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
17a2cbbd
DC
7476
7477 * menu.c: Include TERM_HEADER instead of listing all possible
7478 window-system headers.
7479
7480 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
7481 window system.
7482
7483 * keyboard.c: Include TERM_HEADER instead of listing all possible
7484 window-system headers.
7485
7486 * image.c: Include TERM_HEADER instead of listing all possible
7487 window-system headers. Declare Vlibrary_cache when compiling for
7488 Windows.
7489
7490 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
7491 window system declarations.
7492
7493 * frame.h: Move common functions here: set_frame_menubar,
7494 x_set_window_size, x_sync, x_get_focus_frame,
7495 x_set_mouse_position, x_set_mouse_pixel_position,
7496 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
7497 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
7498 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
7499 x_activate_menubar, x_real_positions, x_bitmap_icon,
7500 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
7501 and x_query_colors.
7502
7503 * frame.c: Include TERM_HEADER instead of listing all possible
7504 window-system headers.
7505
7506 * font.c: Include TERM_HEADER instead of listing all possible
7507 window-system headers.
7508
7509 * emacs.c: Include TERM_HEADER.
7510
f18cbb28
EZ
7511 * dispnew.c: Include TERM_HEADER instead of listing all possible
7512 window-system headers.
17a2cbbd 7513
f18cbb28 7514 * ccl.h: Include character.h.
17a2cbbd
DC
7515
7516 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
7517 the current window system; include in list of objects to link into
7518 Emacs.
7519
c650a5de
DA
75202012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
7521
7522 Remove mark_ttys function and fix tty_display_info initialization.
7523 * lisp.h (mark_ttys): Remove prototype.
7524 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
7525 to mark_ttys because all possible values of 'top_frame' slot are
7526 the frames which are reachable from Vframe_list.
7527 * term.c (mark_ttys): Remove.
7528 (init_tty): Safely initialize 'top_frame' slot with Qnil.
7529
4e0f6479
DA
75302012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
7531
7532 Change struct frame bitfields from unsigned char to unsigned.
7533 * frame.h (struct frame): Change type of 'display_preempted',
7534 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
7535 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
7536 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
7537 bitfields from unsigned char to unsigned.
7538
8b96a52c
DA
75392012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
7540
7541 Remove unused member of struct x_output and struct w32_output.
7542 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
7543 * w32term.h (struct w32_output): Likewise.
7544
b4444c8a
JD
75452012-08-30 Jan Djärv <jan.h.d@swipnet.se>
7546
7547 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
7548 does not become zero (Bug#12234).
7549
b98521db
PE
75502012-08-30 Paul Eggert <eggert@cs.ucla.edu>
7551
7552 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
7553 for GCC 4.7.1 x86-64.
7554
31d02438
GM
75552012-08-30 Glenn Morris <rgm@gnu.org>
7556
7557 * lread.c (init_lread): For out-of-tree builds, only add the
7558 source directory's site-lisp dir to the load-path if it exists,
7559 consistent with in-tree builds. (Bug#12302)
7560
7f8941d8
JD
75612012-08-28 Jan Djärv <jan.h.d@swipnet.se>
7562
7563 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
fc0c31f8 7564 button_values to NULL. Call setStykeMask so dialogs get a close button.
7f8941d8
JD
7565 (windowShouldClose:): Set window_closed.
7566 (dealloc): New member, free button_values.
fc0c31f8
JB
7567 (process_dialog:): Make member function. Remove window argument,
7568 replace window with self. Count buttons and allocate and store values
7f8941d8
JD
7569 in button_values.
7570 (addButton:value:row:): value is int with the name tag. Call setTag
fc0c31f8 7571 with tag. Remove return self, declare return value as void.
7f8941d8
JD
7572 (addString:row:): Remove return self, declare return value as void.
7573 (addSplit): Remove return self, declare return value as void.
7574 (clicked:): Remove return self, declare return value as void.
fc0c31f8 7575 Set dialog_return to button_values[seltag]. Code formatting change.
7f8941d8
JD
7576 (initFromContents:isQuestion:): Adjust call to process_dialog.
7577 Code formatting change.
7578 (timeout_handler:): Set timer_fired to YES.
7579 (runDialogAt:): Set timer_fired to NO.
7580 Handle click on close button as quit.
7581
7582 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
7583 Add window_closed and button_values. Add void as return value for
7584 add(Button|String|Split). addButton takes int instead of Lisp_Object.
7585 Add process_dialog as new member.
7586
eada0861 75872012-08-28 Eli Zaretskii <eliz@gnu.org>
19c17fc1 7588
eada0861
GM
7589 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
7590 is not one of the heaps we manage. (Bug#12242)
7591
75922012-08-28 Glenn Morris <rgm@gnu.org>
7593
7594 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
7595
457294dd
MR
75962012-08-28 Martin Rudalics <rudalics@gmx.at>
7597
7598 * window.c (Fset_window_configuration): Remove handling of
37b9743e
MR
7599 auto-buffer-name window parameter. Install revision of reverted
7600 fix.
457294dd 7601
4f2daf31
DA
76022012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
7603
7604 Do not allow to set major mode for a dead buffer.
7605 * buffer.c (Fset_buffer_major_mode): Signal an error
7606 if the buffer is dead.
7607 (Fother_buffer, other_buffer_safely): Remove redundant
7608 nested declaration.
7609
66322887
DA
76102012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
7611
7612 Always use set_buffer_if_live to restore original buffer at unwind.
7613 * buffer.h (record_unwind_current_buffer): New function.
7614 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
7615 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
7616 * undo.c, window.c: Adjust users.
7617 * buffer.c (set_buffer_if_live): Fix comment.
7618
a3d794a1
DA
76192012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
7620
7621 Fix usage of set_buffer_internal.
7622 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
7623 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
7624 * coding.c (decode_coding): Omit redundant test.
7625 * fileio.c (decide_coding_unwind): Likewise.
7626 * fns.c (secure_hash): Likewise.
7627 * insdel.c (modify_region): Likewise.
7628 * keyboard.c (command_loop_1): Likewise.
7629 * print.c (PRINTFINISH): Likewise.
7630 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
7631
59ea14cd
PE
76322012-08-27 Paul Eggert <eggert@cs.ucla.edu>
7633
7634 * dispnew.c: Use bool for boolean.
7635 (frame_garbaged, display_completed, delayed_size_change)
7636 (fonts_changed_p, add_window_display_history)
7637 (add_frame_display_history, verify_row_hash)
7638 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
7639 (row_equal_p, realloc_glyph_pool)
7640 (allocate_matrices_for_frame_redisplay)
7641 (showing_window_margins_p)
7642 (adjust_frame_glyphs_for_frame_redisplay)
7643 (build_frame_matrix_from_leaf_window, make_current)
7644 (mirrored_line_dance, mirror_line_dance, update_frame)
7645 (update_window_tree, update_single_window)
7646 (check_current_matrix_flags, update_window, update_text_area)
7647 (update_window_line, set_window_update_flags, scrolling_window)
7648 (update_frame_1, scrolling, buffer_posn_from_coords)
7649 (do_pending_window_change, change_frame_size)
7650 (change_frame_size_1, sit_for):
7651 Use bool for boolean.
7652 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
7653 and remove last int (actually boolean) argument, which was always 0.
7654 All callers changed.
7655 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
7656 * dispextern.h (struct composition_it): Use bool for boolean.
7657 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
7658 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
7659 * dired.c (file_name_completion):
7660 Use bool for boolean. (This was missed in an earlier change.)
7661
95072a94
MR
76622012-08-27 Martin Rudalics <rudalics@gmx.at>
7663
7664 * window.c (Fset_window_configuration): Revert first part of
7665 last change.
7666
0f19feff
JD
76672012-08-27 Jan Djärv <jan.h.d@swipnet.se>
7668
7669 * nsterm.h (NSPanel): New class variable dialog_return.
7670
3a880af4
SM
7671 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
7672 Initialize dialog_return.
0f19feff
JD
7673 (windowShouldClose:): Use stop instead of stopModalWithCode.
7674 (clicked:): Ditto, and also set dialog_return (Bug#12258).
7675 (timeout_handler:): Use stop instead of abortModal. Send a dummy
7676 event.
7677 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
7678 modal loop returns.
7679
f10fe38f
PE
76802012-08-27 Paul Eggert <eggert@cs.ucla.edu>
7681
de1339b0
PE
7682 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
7683 * composite.c (find_composition, composition_gstring_p)
7684 (composition_reseat_it, find_automatic_composition):
7685 * data.c (let_shadows_buffer_binding_p)
7686 (let_shadows_global_binding_p, set_internal, make_blv)
7687 (Fmake_variable_buffer_local, Fmake_local_variable)
7688 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
7689 (cons_to_signed, arith_driver):
7690 * dbusbind.c (xd_in_read_queued_messages):
7691 * dired.c (directory_files_internal, file_name_completion):
7692 Use bool for booleans.
7693 * dired.c (file_name_completion):
7694 * process.h (fd_callback):
7695 Omit int (actually boolean) argument. It wasn't being used.
7696 All uses changed.
7697 * composite.h, lisp.h: Reflect above API changes.
7698
f10fe38f
PE
7699 * cmds.c, coding.c: Use bool for booleans.
7700 * cmds.c (move_point, Fself_insert_command):
7701 * coding.h (struct composition status, struct coding_system):
7702 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
7703 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
7704 (emacs_mule_char, decode_coding_emacs_mule)
7705 (encode_coding_emacs_mule, detect_coding_iso_2022)
7706 (decode_coding_iso_2022, encode_invocation_designation)
7707 (encode_designation_at_bol, encode_coding_iso_2022)
7708 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
7709 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
7710 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
7711 (encode_coding_raw_text, detect_coding_charset)
7712 (decode_coding_charset, encode_coding_charset, detect_eol)
7713 (detect_coding, get_translation_table, produce_chars)
7714 (consume_chars, reused_workbuf_in_use)
7715 (make_conversion_work_buffer, code_conversion_save)
7716 (decode_coding_object, encode_coding_object)
7717 (detect_coding_system, char_encodable_p)
7718 (Funencodable_char_position, code_convert_region)
7719 (code_convert_string, code_convert_string_norecord)
7720 (Fset_coding_system_priority):
7721 * fileio.c (Finsert_file_contents):
7722 Use bool for booleans.
7723 * coding.h, lisp.h: Reflect above API changes.
7724 * coding.c: Remove unnecessary static function decls.
7725 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
7726 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
7727 not a boolean 'int', since callers never look at the return value.
7728 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
7729 * coding.h (decoding_buffer_size, encoding_buffer_size)
7730 (emacs_mule_string_char): Remove unused extern decls.
7731 (struct iso_2022_spec, struct coding_system):
7732 Use 'unsigned int : 1' for boolean fields, since there's more than one.
7733 (struct emacs_mule_spec): Remove unused field 'full_support'.
7734 All initializations removed.
7735 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
7736
5474c384
DA
77372012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
7738
f10fe38f 7739 Fix spare memory change (Bug#12286).
5474c384
DA
7740 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
7741 (valid_lisp_object_p): Likewise.
7742
c4b6914d
MR
77432012-08-27 Martin Rudalics <rudalics@gmx.at>
7744
7745 * window.c (Fset_window_configuration): Record any window's old
7746 buffer if it's replaced (see Bug#8789). If the new current
7747 buffer doesn't appear in the selected window, go to its old
7748 point (Bug#12208).
7749
35aaa1ea
DA
77502012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
7751
7752 Special MEM_TYPE_SPARE to denote reserved memory.
7753 * alloc.c (enum mem_type): New memory type.
7754 (refill_memory_reserve): Use new type for spare memory.
7755 This prevents live_cons_p and live_string_p from incorrect
7756 detection of uninitialized objects from spare memory as live.
7757
6af64513
PE
77582012-08-26 Paul Eggert <eggert@cs.ucla.edu>
7759
8b2e00a3
PE
7760 Spelling fixes.
7761 * Makefile.in (.PHONY): versioclean -> versionclean.
7762
b52d6985
PE
7763 Remove unused external symbols.
7764 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
7765 * window.c (Qwindow_valid_p, decode_valid_window):
7766 Now static, not extern.
7767 * data.c (Qinterval): Remove; unused.
7768 (syms_of_data): Do not define 'interval'.
7769 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
7770 * window.h (decode_valid_window):
7771 Remove decls.
7772
d5172d4f
PE
7773 * character.c, charset.c, chartab.c: Use bool for booleans.
7774 * character.c (lisp_string_width, string_count_byte8)
7775 (string_escape_byte8):
7776 * charset.c (charset_map_loaded, load_charset_map, read_hex):
7777 (load_charset_map_from_file, map_charset_chars)
7778 (Fdefine_charset_internal, define_charset_internal)
7779 (Fdeclare_equiv_charset, find_charsets_in_text)
7780 (Ffind_charset_region, char_charset, Fiso_charset):
7781 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
7782 (sub_char_table_set, sub_char_table_set_range)
7783 (char_table_set_range, optimize_sub_char_table)
7784 (map_sub_char_table):
7785 Use bool for boolean.
7786 * character.c (str_to_unibyte): Omit last boolean argument; it was
7787 always 0. All callers changed.
7788 * character.h, charset.h: Adjust to match previous changes.
7789 * character.h (char_printable_p): Remove decl of nonexistent function.
7790 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
7791 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
7792 are all boolean, so make them single-bit bitfields.
7793
6af64513
PE
7794 * lisp.h (ASET): Remove attempt to detect side effects.
7795 It was meant to be temporary and it often doesn't work,
7796 because when IDX has side effects the behavior of IDX==IDX
7797 is undefined. See Stefan Monnier in
7798 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
7799
e1f29348
BR
78002012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7801
7802 * lisp.h (functionp): New function (extracted from Ffunctionp).
7803 (FUNCTIONP): Use it.
7804 * eval.c (Ffunctionp): Use it.
7805
17c05d74
PE
78062012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7807
0f46bc75
PE
7808 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
7809 as that's faster and simpler than static storage. Don't bother
7810 with the g_main_context_query overhead if g_main_context_pending
7811 says no events are pending.
7812 (gfds, gfds_size): Remove these static vars.
7813 (xgselect_initialize): Remove; no longer needed.
7814 All uses and decls removed.
7815
ee4c0f69
PE
7816 * emacs.c (fatal_error_signal_hook): Remove.
7817 All uses removed. This leftover from old code was always 0.
7818
17c05d74
PE
7819 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
7820 * casefiddle.c (casify_object, casify_region):
7821 * casetab.c (set_case_table):
7822 * category.c, category.h (word_boundary_p):
7823 * category.h (CHAR_HAS_CATEGORY):
7824 Use bool for booleans, instead of int.
7825
391ceac5
EZ
78262012-08-25 Eli Zaretskii <eliz@gnu.org>
7827
7828 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
7829
2f221583
PE
78302012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7831
f4a681b0
PE
7832 On assertion failure, print backtrace if available.
7833 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
7834 (die) [ENABLE_CHECKING]: Print a backtrace if available.
7835 * Makefile.in (LIB_EXECINFO): New macro.
7836 (LIBES): Use it.
7837
2f221583
PE
7838 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
7839 * bytecode.c (exec_byte_code):
7840 * callint.c (check_mark, Fcall_interactively):
7841 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
7842 (getenv_internal, sync_process_alive, call_process_exited):
7843 * lisp.h (USE_SAFE_ALLOCA):
7844 Use bool for booleans, instead of int.
7845 * lisp.h, process.h: Adjust prototypes to match above changes.
7846 * callint.c (Fcall_interactively): Don't assume the mark's
7847 offset fits in 'int'.
7848
37ef52bb
PE
78492012-08-24 Paul Eggert <eggert@cs.ucla.edu>
7850
7851 * buffer.c, buffer.h: Use bool for boolean.
7852 * buffer.c (reset_buffer_local_variables)
7853 (buffer_lisp_local_variables, Fset_buffer_modified_p)
7854 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
7855 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
7856 (overlay_touches_p, overlay_strings, Foverlay_put)
7857 (report_overlay_modification, call_overlay_mod_hooks):
7858 (mmap_enlarge, mmap_set_vars):
7859 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
7860 Use bool for booleans, instead of int.
7861 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
7862 since the 1-or-0 return value is always ignored anyway.
7863 (mmap_initialized_p):
7864 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
7865 * buffer.h, lisp.h: Adjust prototypes to match above changes.
7866
2cc21167
PE
78672012-08-23 Paul Eggert <eggert@cs.ucla.edu>
7868
7869 * bidi.c: Use bool for boolean.
7870 This is a bit more readable, and makes the text segment of bidi.o
7871 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
7872 Presumably it's faster too.
7873 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
7874 Now bool.
7875 (bidi_cache_find_level_change, bidi_cache_iterator_state)
7876 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
7877 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
7878 (bidi_explicit_dir_char, bidi_level_of_next_char)
7879 (bidi_find_other_level_edge, bidi_move_to_visually_next):
7880 Use bool for booleans, instead of int.
7881 * dispextern.h (bidi_init_it, bidi_paragraph_init)
7882 (bidi_unshelve_cache): Adjust decls to match code.
7883
7db4ddf4
MR
78842012-08-23 Martin Rudalics <rudalics@gmx.at>
7885
7886 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
7887 argument.
7888
b1bb8011
PE
78892012-08-23 Paul Eggert <eggert@cs.ucla.edu>
7890
7891 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
7892 * atimer.h: Include <stdbool.h>.
7893
ff687885
DN
78942012-08-22 Dan Nicolaescu <dann@gnu.org>
7895
7896 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
7897 compile time tests instead of run time tests on systems that do
7898 not use them.
7899 (FRAME_MAC_P): Remove leftover from deleted code.
7900 * frame.c (syms_of_frame): Remove leftover from deleted code.
7901
4ce7a138
JD
79022012-08-22 Jan Djärv <jan.h.d@swipnet.se>
7903
7904 * nsterm.m (insertText:): Don't clear modifiers if code is space.
7905
d733ec6d
PE
79062012-08-22 Paul Eggert <eggert@cs.ucla.edu>
7907
7908 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
7909 Otherwise, the compiler complains about (A?B:C) where B is void
fc0c31f8 7910 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
d733ec6d
PE
7911 (fontset_add): Return void, for FONTSET_ADD.
7912
d0d2d26f
PE
79132012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7914
fce31d69
PE
7915 * alloc.c: Use bool for booleans.
7916 (gc_in_progress, abort_on_gc)
7917 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7918 (dont_register_blocks) [GC_MALLOC_CHECK]:
7919 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
7920 (check_string_bytes, make_specified_string, memory_full)
7921 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
7922 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
7923 (mark_stack, valid_pointer_p, make_pure_string)
7924 (Fgarbage_collect, survives_gc_p, gc_sweep):
7925 Use bool for booleans, instead of int.
7926 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7927 Remove unused local.
7928 * alloc.c (PURE_POINTER_P):
7929 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
7930 * editfns.c (Fformat):
7931 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
7932 (Fdo_auto_save):
7933 * fns.c (sweep_weak_table):
7934 * lisp.h (suppress_checking, push_message, survives_gc_p)
7935 (make_pure_string, gc_in_progress, abort_on_gc):
7936 * lread.c (readchar, read1):
7937 * print.c (Fprin1_to_string):
7938 * xdisp.c (push_message):
7939 Use bool for booleans affected directly or indirectly by
7940 alloc.c's changes.
7941
d0d2d26f
PE
7942 Make recently-introduced setters macros.
7943 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
7944 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
7945 (set_fontset_default, set_fontset_fallback): Rename from their
7946 upper-case counterparts, and make them functions rather than macros.
7947 This is more consistent with the other recently-introduced setters.
7948 These don't need to be inline, since they're local.
7949
d18e2bb6
JD
79502012-08-21 Jan Djärv <jan.h.d@swipnet.se>
7951
7952 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
7953 the loop (Bug#12247).
7954
1b9d9d16
PE
79552012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7956
7957 * lisp.h (vcopy): Use memcpy rather than our own loop.
7958 This fixes a performance regression introduced by the recent
7959 addition of vcopy. This means 'vcopy' will need to be modified
7960 for a copying collector, but that's OK. Also, tighten the
7961 checking in the assertion.
7962
b2f09701
EZ
79632012-08-21 Eli Zaretskii <eliz@gnu.org>
7964
7965 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
7966 components for RTL text (Bug#11860). Adjust X-OFFSET of each
7967 non-base glyph for the width of the base character, according to
e1f29348
BR
7968 what x_draw_composite_glyph_string_foreground expects.
7969 Generate WADJUST value according to composition_gstring_width's
b2f09701
EZ
7970 expectations, to produce correct width of the composed character.
7971 Reverse the sign of the DU offset produced by ScriptPlace.
7972
9b994fed
PE
79732012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7974
7975 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
7976
086ca913
DA
79772012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7978
7979 Avoid direct writes to contents member of struct Lisp_Vector.
7980 * lisp.h (vcopy): New function to copy data into vector.
7981 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
7982 * fns.c (Ffillarray): Use ASET.
7983 * keyboard.c (timer_check_2): Use AREF and ASET.
7984 (append_tool_bar_item, Frecent_keys): Use vcopy.
7985 * lread.c (read_vector): Use ASET.
7986 * msdos.c (Frecent_doskeys): Use vcopy.
7987 * xface.c (Finternal_copy_lisp_face): Use vcopy.
7988 (Finternal_merge_in_global_face): Use ASET and vcopy.
7989 * xfont.c (xfont_list_pattern): Likewise.
7990
5481664a
MR
79912012-08-21 Martin Rudalics <rudalics@gmx.at>
7992
7993 * window.c (Fwindow_point): For the selected window always return
7994 the position of its buffer's point.
7995 (Fset_window_point): For the selected window always go in its
7996 buffer to the specified position.
7997
6d470bdd
DA
79982012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7999
8000 Setter macros for fontsets.
8001 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
8002 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
8003 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
8004 Adjust users.
8005
24564fe1
GM
80062012-08-20 Glenn Morris <rgm@gnu.org>
8007
8008 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
8009 Don't assume that `ln -f' works.
8010
0a05a035
EZ
80112012-08-20 Eli Zaretskii <eliz@gnu.org>
8012
8013 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
8014 and later about non-assignments with no effect. See discussion at
8015 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
8016 details.
8017
e46f2325
DA
80182012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8019
8020 Inline setter functions for Lisp_Objects slots of struct specbinding.
8021 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
8022 Adjust users.
8023
734fbd86
MR
80242012-08-20 Martin Rudalics <rudalics@gmx.at>
8025
8026 * window.c (select_window): Always make selected window's buffer
8027 current.
8028
f1a95992
DA
80292012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8030
8031 Use AREF and ASET for docstrings of category tables.
8032 * category.h (CATEGORY_DOCSTRING): Use AREF.
8033 (SET_CATEGORY_DOCSTRING): Use ASET.
8034 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
8035
e83064be
DA
80362012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8037
8038 Inline setter functions for hash table members.
8039 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
8040 (set_hash_hash, set_hash_index): Rename with _slot suffix.
8041 (set_hash_key_and_value, set_hash_index, set_hash_next)
8042 (set_hash_hash): New functions.
8043 * charset.c, fns.c: Adjust users.
8044
4ce60d2e
DA
80452012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8046
8047 Inline getter and setter functions for per-buffer values.
8048 * buffer.h (per_buffer_default, set_per_buffer_default)
8049 (per_buffer_value, set_per_buffer_value): New functions.
8050 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
8051 * buffer.c, data.c: Adjust users.
8052
c06c9690
JB
80532012-08-20 Juanma Barranquero <lekktu@gmail.com>
8054
8055 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
8056
32bd4250
PE
80572012-08-19 Paul Eggert <eggert@cs.ucla.edu>
8058
bad03192 8059 Rely on <config.h> + <unistd.h> to declare 'environ',
b69a6d22
PE
8060 as gnulib does this if the system doesn't.
8061 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
72279493
EZ
8062 Remove declaration. MS-Windows declares it on stdlib.h which is
8063 included by conf_post.h.
b69a6d22
PE
8064 * emacs.c (environ) [DOUG_LEA_MALLOC]:
8065 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
8066 * vm-limit.c: Include <unistd.h>, for 'environ'.
8067
22d7feb2
PE
8068 * unexaix.c, unexcoff.c: Include "mem-limits.h".
8069 (start_of_data): Remove decl; mem-limits.h provides it.
8070
32bd4250
PE
8071 * xdisp.c (handle_invisible_prop): Make it a bit faster
8072 and avoid a gcc -Wmaybe-uninitialized diagnostic.
8073
450809af
CY
80742012-08-19 Chong Yidong <cyd@gnu.org>
8075
8076 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
8077 ends (Bug#3874).
8078
9e677988
AS
80792012-08-19 Andreas Schwab <schwab@linux-m68k.org>
8080
6b1319ce
AS
8081 * .gdbinit: Use call instead of set when calling a function in the
8082 inferior.
8083
9e677988
AS
8084 * data.c (set_internal): Don't use set_blv_found.
8085 (Fkill_local_variable): Likewise.
8086
d7191076
AA
80872012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
8088
8089 * nsfont.m (ns_ascii_average_width): Ensure the string
8090 ascii_printable is initialized with a null-terminated character
8091 array. Otherwise, it can contain undesired extra characters.
8092
e757f1c6
PE
80932012-08-18 Paul Eggert <eggert@cs.ucla.edu>
8094
8095 port new setting code to Sun C 5.8 2005/10/13
8096 * chartab.c, lisp.h (char_table_set, char_table_set_range):
8097 Return void, not Lisp_Object. Otherwise, the compiler
8098 complains about (A?B:C) where B is void and C is Lisp_Object
8099 when compiling CHAR_TABLE_SET, due to the recent change to
8100 the API of sub_char_table_set_contents.
8101
a999ce26
CY
81022012-08-18 Chong Yidong <cyd@gnu.org>
8103
8104 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
8105 for the string case (Bug#3874).
8106
3f22b86f
PE
81072012-08-18 Paul Eggert <eggert@cs.ucla.edu>
8108
39eb03f1
PE
8109 * buffer.h (BSET): Remove (Bug#12215).
8110 Replace all uses with calls to new setter functions.
8111 (bset_bidi_paragraph_direction, bset_case_canon_table)
8112 (bset_case_eqv_table, bset_directory, bset_display_count)
8113 (bset_display_time, bset_downcase_table)
8114 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
8115 (bset_last_selected_window, bset_local_var_alist)
8116 (bset_mark_active, bset_point_before_scroll, bset_read_only)
8117 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
8118 (bset_width_table):
8119 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
8120 (bset_auto_fill_function, bset_auto_save_file_format)
8121 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
8122 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
8123 (bset_cache_long_line_scans, bset_case_fold_search)
8124 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
8125 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
8126 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
8127 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
8128 (bset_header_line_format, bset_indicate_buffer_boundaries)
8129 (bset_indicate_empty_lines, bset_invisibility_spec)
8130 (bset_left_fringe_width, bset_major_mode, bset_mark)
8131 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
8132 (bset_name, bset_overwrite_mode, bset_pt_marker)
8133 (bset_right_fringe_width, bset_save_length)
8134 (bset_scroll_bar_width, bset_scroll_down_aggressively)
8135 (bset_scroll_up_aggressively, bset_selective_display)
8136 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
8137 (bset_word_wrap, bset_zv_marker):
8138 * category.c (bset_category_table):
8139 * syntax.c (bset_syntax_table):
8140 New setter functions.
8141
6a09a33b
PE
8142 * process.h (PSET): Remove (Bug#12215).
8143 Replace all uses with calls to new setter functions.
8144 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8145 (PROCESS_INLINE): New macro.
8146 (pset_childp): New setter function.
8147 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
8148 * process.c (PROCESS_INLINE):
8149 Define to EXTERN_INLINE, so that the corresponding functions
8150 are compiled into code.
8151 (pset_buffer, pset_command, pset_decode_coding_system)
8152 (pset_decoding_buf, pset_encode_coding_system)
8153 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
8154 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
8155 (pset_type, pset_write_queue): New setter functions.
8156
e8c17b81
PE
8157 * window.h (WSET): Remove (Bug#12215).
8158 Replace all uses with calls to new setter functions.
8159 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8160 (WINDOW_INLINE): New macro.
8161 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
8162 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
8163 (wset_total_lines, wset_vertical_scroll_bar)
8164 (wset_window_end_pos, wset_window_end_valid)
8165 (wset_window_end_vpos): New setter functions.
8166 * window.c (WINDOW_INLINE):
8167 Define to EXTERN_INLINE, so that the corresponding functions
8168 are compiled into code.
8169 (wset_combination_limit, wset_dedicated, wset_display_table)
8170 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
8171 (wset_new_normal, wset_new_total, wset_next_buffers)
8172 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
8173 (wset_prev_buffers, wset_right_fringe_width)
8174 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
8175 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
8176 (wset_window_parameters):
8177 * xdisp.c (wset_base_line_number, wset_base_line_pos)
8178 (wset_column_number_displayed, wset_region_showing):
8179 New setter functions.
8180
3f22b86f
PE
8181 * termhooks.h (TSET): Remove (Bug#12215).
8182 Replace all uses with calls to new setter functions.
8183 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8184 (TERMHOOKS_INLINE): New macro.
8185 (tset_charset_list, tset_selection_alist): New setter functions.
8186 * terminal.c (TERMHOOKS_INLINE):
8187 Define to EXTERN_INLINE, so that the corresponding functions
8188 are compiled into code.
8189 (tset_param_alist): New setter function.
8190
742af32f
PE
81912012-08-17 Paul Eggert <eggert@cs.ucla.edu>
8192
15dbb4d6
PE
8193 * keyboard.h (KSET): Remove (Bug#12215).
8194 Replace all uses with calls to new setter functions.
8195 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8196 (KEYBOARD_INLINE): New macro.
8197 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
8198 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
8199 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
8200 New setter functions.
8201 * keyboard.c (KEYBOARD_INLINE):
8202 Define to EXTERN_INLINE, so that the corresponding functions
8203 are compiled into code.
8204 (kset_echo_string, kset_kbd_queue)
8205 (kset_keyboard_translate_table, kset_last_prefix_arg)
8206 (kset_last_repeatable_command, kset_local_function_key_map)
8207 (kset_overriding_terminal_local_map, kset_real_last_command)
8208 (kset_system_key_syms): New setter functions.
8209
f00af5b1
PE
8210 * frame.h (FSET): Remove (Bug#12215).
8211 Replace all uses with calls to new setter functions.
8212 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8213 (FRAME_INLINE): New macro.
8214 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
8215 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
8216 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
8217 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
8218 (fset_param_alist, fset_root_window, fset_scroll_bars)
8219 (fset_selected_window, fset_title, fset_tool_bar_items)
8220 (fset_tool_bar_position, fset_tool_bar_window): New functions.
8221 * frame.c (FRAME_INLINE):
8222 Define to EXTERN_INLINE, so that the corresponding functions
8223 are compiled into code.
8224 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
8225
0c94c8d6
PE
8226 A few more naming-convention fixes for getters and setters.
8227 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
8228 and rename from buffer_overlays_set_before.
8229 (set_buffer_overlays_after): Move here from buffer.h, and rename
8230 from buffer_overlays_set_after.
8231 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
8232 All uses changed.
8233 (set_buffer_intervals): Rename from buffer_set_intervals.
8234 * intervals.c (set_interval_object): Move here from intervals.h,
8235 and rename from interval_set_object.
8236 (set_interval_left): Move here from intervals.h, and rename from
8237 interval_set_left.
8238 (set_interval_right): Move here from intervals.h, and rename from
8239 interval_set_right.
8240 (copy_interval_parent): Move here from intervals.h, and rename from
8241 interval_copy_parent.
8242 * intervals.h (set_interval_parent): Rename from interval_set_parent.
8243 (set_interval_plist): Rename from interval_set_plist.
8244 Return void, not Lisp_Object, since no caller uses the result.
8245 * lisp.h (string_intervals): Rename from string_get_intervals.
8246 (set_string_intervals): Rename from string_set_intervals.
8247
34dabdb7
PE
8248 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
8249 (set_char_table_contents): Rename from char_table_set_contents.
0b390a9d 8250 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
34dabdb7
PE
8251 All uses changed. See the end of
8252 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
8253
742af32f
PE
8254 * lisp.h (CSET): Remove (Bug#12215).
8255 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
8256 (set_char_table_purpose): New functions,
8257 replacing CSET. All uses changed. For example, replace
8258 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
c24eb18a 8259 "set_char_table_parent (char_table, parent);".
742af32f
PE
8260 The old version was confusing because it used the same name
8261 'parent' for two different things.
8262
a04e2c62
DA
82632012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
8264
8265 Functions to get and set Lisp_Object fields of buffer-local variables.
8266 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
8267 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
8268 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
8269 * data.c, eval.c, frame.c: Adjust users.
8270
383dcbf9
CY
82712012-08-17 Chong Yidong <cyd@gnu.org>
8272
8273 * xfaces.c (merge_face_vectors): If the target font specfies a
8274 font spec, make the font's attributes take precedence over
8275 directly-specified attributes.
8276 (merge_face_ref): Recognize :font.
8277
44386687
DA
82782012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
8279
8280 Do not use memcpy for copying intervals.
8281 * intervals.c (reproduce_interval): New function.
8282 (reproduce_tree, reproduce_tree_obj): Use it.
8283 (reproduce_tree_obj): Remove prototype.
8284
927c7216
PE
82852012-08-17 Paul Eggert <eggert@cs.ucla.edu>
8286
8287 * lisp.h (duration_to_sec_usec): Remove unused decl.
8288
93044f7b
AA
82892012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
8290
8291 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
8292 to an allocated instance of NSString, not to the class itself.
8293
9851e4a5
JB
82942012-08-17 Juanma Barranquero <lekktu@gmail.com>
8295
8296 * makefile.w32-in (C_CTYPE_H): New macro.
8297 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
8298 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
8299 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
8300
620f13b0
PE
83012012-08-16 Paul Eggert <eggert@cs.ucla.edu>
8302
8303 Use ASCII tests for character types.
8304 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
8305 * xfns.c, xterm.c:
8306 Don't include <ctype.h>; was not needed.
8307 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
8308 * sysdep.c, xfaces.c:
8309 Include <c-ctype.h> instead of <ctype.h>.
8310 * nsterm.m: Include <c-ctype.h>.
8311 * charset.c (read_hex):
8312 * doc.c (Fsnarf_documentation):
8313 * fileio.c (IS_DRIVE) [WINDOWSNT]:
8314 (DRIVE_LETTER) [DOS_NT]:
8315 (Ffile_name_directory, Fexpand_file_name)
8316 (Fsubstitute_in_file_name):
8317 * font.c (font_parse_xlfd, font_parse_fcname):
8318 * frame.c (x_set_font_backend):
8319 * gtkutil.c (xg_get_font):
8320 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
8321 * nsimage.m (hexchar):
8322 * nsterm.m (ns_xlfd_to_fontname):
8323 * sysdep.c (system_process_attributes):
8324 * xfaces.c (hash_string_case_insensitive):
8325 Use C-locale tests instead of locale-specific tests for character
8326 types, since we want the ASCII interpretation here, not the
8327 interpretation suitable for whatever happens to be the current locale.
8328
52162052
MR
83292012-08-16 Martin Rudalics <rudalics@gmx.at>
8330
8331 Consistently check windows for validity/liveness
8332 (Bug#11984, Bug#12025, Bug#12026).
8333 * lisp.h (CHECK_VALID_WINDOW): New macro.
8334 * window.c (decode_window): Rename to decode_live_window.
8335 (decode_valid_window, Fwindow_valid_p): New functions.
8336 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
8337 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
8338 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
8339 (Fwindow_prev_sibling, Fwindow_combination_limit)
8340 (Fset_window_combination_limit, Fwindow_use_time)
8341 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
8342 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
8343 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
8344 (Fwindow_hscroll, Fset_window_hscroll)
8345 (Fwindow_redisplay_end_trigger)
8346 (Fset_window_redisplay_end_trigger, Fwindow_edges)
8347 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
8348 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
8349 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
8350 (Fwindow_end, Fset_window_point, Fset_window_start)
8351 (Fpos_visible_in_window_p, Fwindow_line_height)
8352 (Fwindow_dedicated_p, Fset_window_dedicated_p)
8353 (Fwindow_prev_buffers, Fset_window_prev_buffers)
8354 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
8355 (Fset_window_parameter, Fwindow_display_table)
8356 (Fset_window_display_table, Fdelete_other_windows_internal)
8357 (Fset_window_buffer, Fset_window_new_total)
8358 (Fset_window_new_normal, Fdelete_window_internal)
8359 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
8360 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
8361 (Fwindow_scroll_bars): Check whether argument window is a valid or
8362 live window. Update doc-strings.
8363 (syms_of_window): New symbol Qwindow_valid_p.
8364 * keyboard.c (Fposn_at_x_y): Check whether argument
8365 frame_or_window denotes a valid window.
8366
2751c80f
DA
83672012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
8368
8369 Fix previous char table change.
8370 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
8371 * chartab.c (optimize_sub_char_table): Likewise.
8372
032a42c8
CY
83732012-08-16 Chong Yidong <cyd@gnu.org>
8374
a2d19368
CY
8375 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
8376
032a42c8
CY
8377 * xfont.c (xfont_open):
8378 * xftfont.c (xftfont_open): Set the font's max_width field.
8379
8380 * nsfont.m (nsfont_open): Similar to the Xft backend, set
8381 min_width to space_width and average_width to the average over
8382 printable ASCII characters.
8383 (ns_char_width): Code cleanup.
8384 (ns_ascii_average_width): New utility function.
8385
8386 * font.h (struct font): Update comments.
8387
a098c930
DA
83882012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
8389
032a42c8 8390 Simple interface to set Lisp_Object fields of character tables.
a098c930
DA
8391 * lisp.h (CSET): New macro.
8392 (char_table_set_extras, char_table_set_contents)
8393 (sub_char_table_set_contents): New function.
8394 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
8395 * syntax.c: Adjust users.
8396
8be3a09c
SM
83972012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
8398
8399 * eval.c (eval_sub): Bind lexical-binding.
8400 * lread.c (Qlexical_binding): Make non-static.
8401
ac4845a6
JD
84022012-08-15 Jan Djärv <jan.h.d@swipnet.se>
8403
ddee6515
JD
8404 * nsmenu.m (popupSession): Remove.
8405 (pop_down_menu): Remove endModalSession.
8406 (timeout_handler:): New method.
8407 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
8408 Call runModalForWindow. Check timer_fired when it returns.
8409 If not set, cancel timer and break out of loop.
8410 Otherwise loop again, with a new timeout.
8411
8412 * nsterm.m: Include fcntl.h if present.
8413 (fd_entry, t_readfds, inNsSelect): Remove.
8414 (select_writefds, select_valid, select_timeout, selfds)
8415 (select_mutex, apploopnr): Add.
8416 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
8417 Otherwise call kbd_buffer_store_event.
8418 (ns_send_appdefined): Remove release of fd_entry.
8419 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
8420 Increment and decrement apploopnr.
8421 (ns_select): If no file descriptors, just do a NSTimer.
8422 Otherwise copy read/write masks and start select thread (fd_handler).
8423 Start main loop and wait for application defined event.
8424 Inform select thread to stop selecting after main loop is exited.
8425 (ns_term_init): Create selfds pipe and set non-blocking.
fc0c31f8 8426 Initialize select_mutex. Start the select thread (fd_handler).
ddee6515
JD
8427 (fd_handler:): Loop forever, wait for info from the main thread
8428 to either start or stop selecting. When select returns, send
8429 and appdefined event.
8430 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
8431 If not call kbd_buffer_store_event.
8432
8433 * nsterm.h (EmacsApp): fd_handler takes id argument.
8434 (EmacsDialogPanel): Add timer_fired and timeout_handler.
8435
ac4845a6
JD
8436 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
8437
eb424fe3
EZ
84382012-08-15 Eli Zaretskii <eliz@gnu.org>
8439
8440 * region-cache.c (move_cache_gap): Update gap_len using the actual
8441 growth of the boundaries array. Do not change cache_len.
8442 (Bug#12196)
8443
4e6a86c6
DA
84442012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
8445
8446 Generalize and cleanup font subsystem checks.
8447 * font.h (FONT_DEBUG, font_assert): Remove.
8be3a09c
SM
8448 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
8449 Change font_assert to eassert. Use eassert where appropriate.
4e6a86c6 8450
5bf192ca
DA
84512012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
8452
8453 * gtkutil.c (xg_get_font): Use pango_units_to_double.
8454
f2045622
CY
84552012-08-15 Chong Yidong <cyd@gnu.org>
8456
8be3a09c
SM
8457 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
8458 When using the new font chooser, use gtk_font_chooser_get_font_desc to
8459 extract the font descriptor instead of just the font name.
8460 In that case, return a font spec instead of a string.
f2045622
CY
8461 (x_last_font_name): Move to this file from xfns.c.
8462
8463 * xfns.c (Fx_select_font): The return value can also be a font
8464 spec. Move x_last_font_name management to gtkutil.c.
8465
8466 * xfaces.c: Make font weight and style symbols non-static.
8467
7f6feb56
SM
84682012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8469
8470 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
8471 (bug#12117).
8472
fecbd8ff
SM
84732012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
8474
8475 * alloc.c (Fgarbage_collect): Use plural form consistently.
8476
9b8d5165
EZ
84772012-08-14 Eli Zaretskii <eliz@gnu.org>
8478
8479 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
8480 iteration through the command loop. Fixes a problem whereby mouse
8481 movements are ignored until the first mouse click.
8482
f5d9e83a
PE
84832012-08-14 Paul Eggert <eggert@cs.ucla.edu>
8484
8485 Use bool, not int, for Lisp booleans.
8486 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
8487 makes Emacs a bit smaller and presumably a bit faster.
8488 * lisp.h: Include <stdbool.h>.
8489 (struct Lisp_Boolfwd, defvar_bool):
8490 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
8491 * regex.c [!emacs]: Include <stdbool.h>.
8492 (false, true): Remove; <stdbool.h> does this for us now.
8493
55802e4a
CY
84942012-08-14 Chong Yidong <cyd@gnu.org>
8495
4abcdac8
CY
8496 * character.c (Fcharacterp): Doc fix (Bug#12076).
8497
8498 * data.c (Findirect_variable): Doc fix (Bug#11040).
8499
55802e4a
CY
8500 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
8501
8502 * editfns.c (Fformat): Doc fix (Bug#12059).
4abcdac8 8503 (Fsave_current_buffer): Doc fix (Bug#11542).
55802e4a 8504
8e99d072
BR
85052012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
8506
8507 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
8508 (bug#12022).
8509
08908aca
MR
85102012-08-14 Martin Rudalics <rudalics@gmx.at>
8511
8512 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
8513 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
8514 * minibuf.c (choose_minibuf_frame, read_minibuf):
8515 * w32fns.c (x_create_tip_frame):
8516 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
8517 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
8518
56120d6f
PE
85192012-08-14 Paul Eggert <eggert@cs.ucla.edu>
8520
8521 * intervals.c (offset_intervals): Remove obsolete comment.
8522
67b77c0b
AS
85232012-08-14 Andreas Schwab <schwab@linux-m68k.org>
8524
8525 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
8526
f48b82fd
GR
85272012-08-14 Gergely Risko <gergely@risko.hu>
8528
8529 * coding.c (decode_coding): Record buffer modification before
8530 disabling undo_list (Bug#11773).
8531
fd318b54
DA
85322012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
8533
8534 Revert and cleanup some recent overlay changes.
8535 * buffer.h (enum overlay_type): Remove.
8536 (buffer_get_overlays, buffer_set_overlays): Likewise.
8537 (buffer_set_overlays_before, buffer_set_overlays_after):
8538 New function. Adjust users.
8539 (unchain_both): Add eassert.
8540
41a62dd9
DA
85412012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
8542
8543 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
8544
5884c324
PE
85452012-08-14 Paul Eggert <eggert@cs.ucla.edu>
8546
8547 * gtkutil.c (xg_mark_data): Don't assume C99.
8548
ca06f160
JD
85492012-08-13 Jan Djärv <jan.h.d@swipnet.se>
8550
8551 * gtkutil.c (xg_frame_tb_info): New struct.
8552 (TB_INFO_KEY): New define.
8553 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
8554 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
8555 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
8556 if not present.
8557 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
fc0c31f8 8558 is up to date. Otherwise store new data.
ca06f160
JD
8559 (free_frame_tool_bar): Free xg_frame_tb_info if present.
8560
7864a3f7
DA
85612012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
8562
8563 Use KSET for write access to Lisp_Object members of struct kboard.
8564 * keyboard.h (KSET): New macro.
8565 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
8566 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
8567 * xterm.c: Adjust users.
8568
4c31be61
DA
85692012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
8570
8571 Use BSET for write access to Lisp_Object members of struct buffer.
8572 * buffer.h (BSET): New macro.
8573 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
8574 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
8575 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
8576 * window.c, xdisp.c, xfns.c: Adjust users.
8577
14ae4239
BT
85782012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
8579
8580 * lread.c (syms_of_lread): Initialize Vlexical_binding.
8581
32bcadb4
JD
85822012-08-11 Jan Djärv <jan.h.d@swipnet.se>
8583
3d29b2ce 8584 * nsterm.m (not_in_argv): New function.
fc0c31f8 8585 (application:openFile, application:openTempFile:):
3d29b2ce
JD
8586 (application:openFileWithoutUI:, application:openFiles:): Open file
8587 if not_in_argv returns non-zero (bug#12171).
8588
32bcadb4 8589 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
14ae4239
BT
8590 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
8591 Define for Gtk+ versions less than 3.2.
32bcadb4
JD
8592 (xg_get_font_name): Use those functions/macros here.
8593 Reported by Frans Oilinki <moilinki@gmail.com>.
8594
9ff9402d 85952012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8ccd072a
YM
8596
8597 * unexmacosx.c (copy_data_segment): Copy initialized data in
8598 statically linked libraries from input file rather than memory.
8599
db74a5fc
YM
8600 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
8601 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
8602 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
8603
25e65510
GM
86042012-08-10 Glenn Morris <rgm@gnu.org>
8605
8606 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
8607 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
8608
7961135c
DA
86092012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8610
8611 Fix last change to allow compilation with low optimization levels.
8612 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
8613 Reported by Jan Djärv <jan.h.d@swipnet.se>.
8614
42b3a444
DA
86152012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8616
8617 Use common inline syntax in intervals.h.
8618 * intervals.h (INTERVALS_INLINE): New macro.
8619 Change all users from LISP_INLINE.
8620
9fb0c957
DA
86212012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8622
8623 Define Qnone once for all platforms.
8624 * frame.c (Qnone): Define here.
8625 (syms_of_frame): DEFSYM it.
8626 * lisp.h (Qnone): New declaration.
8627 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
8628 * xfns.c: Remove duplication. Adjust users.
8629
65e8ee52
DA
86302012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8631
8632 Remove unused macros from intervals.h.
8633 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
8634 * intervals.c: Adjust comment.
8635
9b855fd6
EZ
86362012-08-10 Eli Zaretskii <eliz@gnu.org>
8637
8638 * w32fns.c <w32_unicode_gui>: New static variable.
8639 (globals_of_w32fns): Initialize it according to os_subtype.
8640 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
8641 testing os_subtype.
8642
39cb9e56 86432012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
d30be705
EZ
8644 Eli Zaretskii <eliz@gnu.org>
8645
8646 Fix bug #10299 with Unicode characters sent by customized
8647 keyboards created by MSKLC.
8648 * w32fns.c (INIT_WINDOW_CLASS): New macro.
8649 (w32_init_class): Use it to initialize the Emacs class with either
8650 ANSI or Unicode API calls.
8651 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
8652 later.
8653 (w32_wnd_proc): If the character code sent by WM_CHAR or
8654 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
8655 original message. Call DefWindowProcW on NT and later.
8656
9374581a
GM
86572012-08-10 Glenn Morris <rgm@gnu.org>
8658
4b94e8cf
GM
8659 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
8660
9374581a
GM
8661 * lisp.h (DIRECTORY_SEP): Let configure set it.
8662
a2752828
DA
86632012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
8664
8665 Use TSET for write access to Lisp_Object slots of struct terminal.
8666 * termhooks.h (TSET): New macro.
8667 * coding.c, terminal.c, xselect.c: Adjust users.
8668
cc92c454
SM
86692012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8670
8671 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
8672 the failing expression, include them in the error message.
8673 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
8674 * lisp.h (internal_condition_case_n): Update declaration.
8675
4cb3e6b3
DA
86762012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8677
8678 Inline functions to examine and change buffer overlays.
8679 * buffer.c (unchain_both): New function.
8680 * buffer.h (buffer_get_overlays, buffer_set_overlays):
8681 (buffer_has_overlays): New function.
8682 (enum overlay_type): New enum.
8683 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
8684 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
8685
8707c1e5
DA
86862012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8687
8688 Inline functions to examine and change buffer intervals.
8689 * alloc.c (mark_interval_tree): Remove.
8690 (MARK_INTERVAL_TREE): Simplify.
8691 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
8692 * intervals.c (buffer_balance_intervals): New function.
8693 (graft_intervals_into_buffer): Adjust indentation.
8694 (set_intervals_multibyte): Simplify.
8695 * buffer.h (BUF_INTERVALS): Remove.
8696 (buffer_get_intervals, buffer_set_intervals): New function.
8697 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
8698 * intervals.c, textprop.c: Adjust users.
8699
ad8c997f
DA
87002012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8701
8702 Inline functions to examine and change string intervals.
8703 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
8704 (string_get_intervals, string_set_intervals): New function.
8705 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
8706 * lread.c, print.c, textprop.c: Adjust users.
8707
32ac3a6b
GM
87082012-08-08 Glenn Morris <rgm@gnu.org>
8709
8710 * lisp.mk (lisp): Remove language/persian.elc.
8711
77c7bcb1
DA
87122012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8713
8714 Cleanup intervals.
8715 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
8716 (NULL_INTERVAL_P): Likewise. Adjust users.
14ae4239
BT
8717 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
8718 Adjust comment. Move under #if 0.
77c7bcb1
DA
8719 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
8720 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
8721
9c08a8d4
DA
87222012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8723
8724 Check total length of intervals with eassert.
8725 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
8726 * intervals.c: Change all users to eassert.
8727
26d16b35
EZ
87282012-08-07 Eli Zaretskii <eliz@gnu.org>
8729
14ae4239
BT
8730 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
8731 Rename fields to match removal of FGET and WGET and disuse of
26d16b35
EZ
8732 INTERNAL_FIELD in Lisp_Cons.
8733
c644523b
DA
87342012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8735
8736 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
8737 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
8738 name since all xname users are fixed long time ago. Do not
8739 use INTERNAL_FIELD.
8740 (set_symbol_name, set_symbol_function, set_symbol_plist):
8741 (set_symbol_next, set_overlay_plist): New function.
8742 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
8743 (struct Lisp_Overlay): Likewise.
8744 (CVAR, MVAR, SVAR): Remove.
8745 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
8746 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
8747 * xterm.c: Adjust users.
8748 * .gdbinit: Change to use name field of struct Lisp_Symbol
8749 where appropriate.
8750
6a3d20cc
DA
87512012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8752
8753 Basic functions to set Lisp_Object and pointer slots of intervals.
8754 * intervals.h (interval_set_parent, interval_set_object):
8755 (interval_set_left, interval_set_right, interval_set_plist):
8756 (interval_copy_parent): New function.
8757 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
14ae4239
BT
8758 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
8759 Adjust indentation.
6a3d20cc
DA
8760 (INTERVAL_SIZE): Remove. Adjust users.
8761 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
8762
4d2b044c
DA
87632012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8764
8765 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
8766 * process.h (PGET): Remove.
8767 (struct Lisp_Process): Do not use INTERNAL_FIELD.
8768 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
8769
d3d50620
DA
87702012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8771
8772 Drop WGET and revert read access to Lisp_Objects slots of struct window.
8773 * window.h (WGET): Remove.
8774 (struct window): Do not use INTERNAL_FIELD.
8775 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8776 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8777 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
8778 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
8779 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
8780 Adjust users.
8781
d10a51dc
CY
87822012-08-07 Chong Yidong <cyd@gnu.org>
8783
8784 * window.c (Fwindow_edges, Fwindow_pixel_edges)
8785 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
8786 (Fdelete_window_internal): Signal an error if the window is not on
8787 a live frame (Bug#12025).
8788
e69b0960
DA
87892012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8790
8791 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
8792 * frame.h (FGET): Remove.
8793 (struct frame): Do not use INTERNAL_FIELD.
8794 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
8795 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
8796 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8797 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
8798
25a20a3a
JB
87992012-08-06 Juanma Barranquero <lekktu@gmail.com>
8800
8801 * w32.c: Silence compiler warnings.
8802 (map_w32_filename): Remove unused variable `is_fat'.
8803 (chase_symlinks): Add parentheses around expression.
8804
1c6f11f4
GM
88052012-08-06 Glenn Morris <rgm@gnu.org>
8806
1db4583a
GM
8807 * sysdep.c: Respect BROKEN_GETWD.
8808
1c6f11f4
GM
8809 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
8810 Let configure handle it.
8811 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
8812
2b90362b
DA
88132012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8814
8815 Use GCALIGNMENT where appropriate.
8816 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
8817 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
8818 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
8819
5f50daf2
EZ
88202012-08-06 Eli Zaretskii <eliz@gnu.org>
8821
14ae4239
BT
8822 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
8823 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5f50daf2 8824
cbcc7007
SM
88252012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8826
8827 * buffer.h (struct buffer): Revert `indirections' to a simple int;
8828 that should be sufficient for everyone.
8829
4d365fa4
JD
88302012-08-06 Jan Djärv <jan.h.d@swipnet.se>
8831
8832 * keyboard.c (timer_check_2): Add break so timer_check returns next
8833 timeout.
8834
dd86bd82
DA
88352012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8836
8837 Fix Windows build errors introduced after converting to WGET and WSET.
8838 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
8839 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8840
054e1668
JD
88412012-08-06 Jan Djärv <jan.h.d@swipnet.se>
8842
8843 * nsterm.m (ns_frame_rehighlight): Use FSET.
8844
8845 * nsmenu.m (ns_update_menubar): Use FSET.
8846
21238f11
DA
88472012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8848
8849 Separate read and write access to Lisp_Object slots of Lisp_Process.
8850 * process.h (PGET, PSET): New macros similar to AREF and ASET.
8851 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
8852
077288cf
DA
88532012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8854
8855 Separate read and write access to Lisp_Object slots of struct window.
8856 * window.h (WGET, WSET): New macros similar to AREF and ASET.
8857 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8858 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8859 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
8860 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
8861 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
8862 Adjust users.
8863
71688bd7
DA
88642012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8865
8866 Fix Windows build errors introduced after converting to FGET and FSET.
8867 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
8868 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
8869 (w32_judge_scroll_bars): Change to use FSET.
8870 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8871
f99bac93
DA
88722012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8873
8874 Fix replacement typo.
8875 * window.c (replace_window): Set root_window instead of
8876 selected_window. This fixes a total window subsystem
8877 malfunction reported by Bastien Guerry <bzg@gnu.org>.
8878
8c2a0f2d
GM
88792012-08-06 Glenn Morris <rgm@gnu.org>
8880
8881 * lisp.mk (lisp): Add language/persian.elc.
8882
edd74c35
DA
88832012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8884
8885 Separate read and write access to Lisp_Object slots of struct frame.
8886 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
8887 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
8888 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
8889 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8890 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
8891
8671676c
AS
88922012-08-05 Andreas Schwab <schwab@linux-m68k.org>
8893
8894 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
8895
663e2b3f
DA
88962012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8897
8898 Generalize common compile-time constants.
8899 * lisp.h (header_size, bool_header_size, word_size): Now here.
8900 (struct Lisp_Vector): Add comment.
8901 (struct Lisp_Bool_Vector): Move up to define handy constants.
8902 (VECSIZE, PSEUDOVECSIZE): Simplify.
8903 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
8904 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
8905 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
8906 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
8907 * xfont.c, xmenu.c: Use word_size where appropriate.
8908
d32e47af
LM
89092012-08-05 Lawrence Mitchell <wence@gmx.li>
8910
8911 * search.c (Freplace_match): Treat \? in the replacement text
8912 literally (Bug#8161).
8913
e5d9c0d1
CY
89142012-08-05 Chong Yidong <cyd@gnu.org>
8915
8916 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
8917 * frame.c (Vdelete_frame_functions):
8918 * emacs.c (Vkill_emacs_hook): Doc fix.
8919
8da0576b
EZ
89202012-08-04 Eli Zaretskii <eliz@gnu.org>
8921
8922 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
8923 --with-x-toolkit=no builds.
8924 Reported by Carsten Mattner <carstenmattner@gmail.com>.
8925
02676e5d
CY
89262012-08-04 Chong Yidong <cyd@gnu.org>
8927
8928 * syntax.c (Fmodify_syntax_entry): Doc fix.
8929
97147da9
EZ
89302012-08-04 Eli Zaretskii <eliz@gnu.org>
8931
76151e2c
EZ
8932 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
8933 * w32.c (init_environment): Change the default values of many
8934 environment variables in dflt_envvars[] to NULL, to avoid pushing
14ae4239
BT
8935 them into environment when they were not already defined.
8936 Remove the code that deletes site-lisp subdirectories from the default
76151e2c 8937 value of EMACSLOADPATH, as it is no longer needed.
14ae4239
BT
8938 (check_windows_init_file): Now external, not static.
8939 Use Vload_path as is, without adding anything, as this function is now
76151e2c
EZ
8940 called when Vload_path is already set up.
8941
8942 * w32.h (check_windows_init_file): Add prototype.
8943
8944 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
8945 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
8946 compatibility with Posix platforms.
8947 (main): Move the call to check_windows_init_file to here from
8948 w32.c.
8949 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
8950 any, in the DEFALT argument into the root of the Emacs build or
8951 installation tree, as appropriate.
8952
8953 * callproc.c (init_callproc_1): Call decode_env_path instead of
8954 doing its equivalent by hand.
8955 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
8956 the code that sets Vexec_path run on MS-Windows.
8957
8958 * lread.c (init_lread): Add comments to #ifdef's.
8959
97147da9
EZ
8960 * msdos.c (dos_set_window_size, IT_update_begin)
8961 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
8962 instead of direct references.
8963
185ee146
PE
89642012-08-04 Paul Eggert <eggert@cs.ucla.edu>
8965
8966 Export DEFAULT_REHASH_* to GDB.
8967 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
8968 Now constants, not macros.
8969
8834c57a
PE
89702012-08-03 Paul Eggert <eggert@cs.ucla.edu>
8971
98c6f1e3
PE
8972 Remove unnecessary casts involving pointers.
8973 These casts are no longer needed now that we assume C89 or later,
8974 since they involve casting to or from void *.
8975 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
8976 (make_pure_float, make_pure_vector):
8977 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
8978 * macros.c (Fstart_kbd_macro):
8979 * menu.c (find_and_return_menu_selection):
8980 * minibuf.c (read_minibuf_noninteractive):
8981 * sysdep.c (closedir):
8982 * xdisp.c (x_produce_glyphs):
8983 * xfaces.c (compare_fonts_by_sort_order):
8984 * xfns.c (x_real_positions, select_visual):
8985 * xselect.c (x_stop_queuing_selection_requests)
8986 (x_get_window_property, x_get_window_property_as_lisp_data):
8987 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
8988 Remove unnecessary pointer casts.
8989 * alloc.c (record_xmalloc): New function.
8990 * lisp.h (record_xmalloc): New decl.
8991 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
8992 more like a function. This is because the pointer cast is not
8993 needed. All uses changed.
8994 * print.c (print_string, print_error_message): Avoid length recalc.
8995
8834c57a
PE
8996 Improve fix for macroexp crash with debugging (Bug#12118).
8997 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
8998 ARRAY_MARK_FLAG when checking subscripts, because ASET is
8999 not supposed to be invoked from the garbage collector.
9000 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
9001 (gc_aset): New function, which is like ASET but can be
9002 used in the garbage collector.
9003 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
9004 (set_hash_index): Use it instead of ASET.
9005
6dad7178
EZ
90062012-08-03 Eli Zaretskii <eliz@gnu.org>
9007
9008 Support symlinks on latest versions of MS-Windows.
9009 * w32.c: Include winioctl.h and aclapi.h.
9010 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
9011 (revert_to_self): Forward declarations of static functions.
9012 <static BOOL g_b_init_get_security_info>:
9013 <g_b_init_create_symbolic_link>: New static flags.
9014 (globals_of_w32): Initialize them to zero.
9015 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
9016 (map_w32_filename): Improve commentary. Simplify switch.
9017 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
9018 headers (most versions of MinGW w32api don't).
9019 (get_security_info, create_symbolic_link)
9020 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
9021 New functions.
9022 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
9023 in the argument file name.
9024 (sys_access): Call unc_volume_file_attributes only if
9025 GetFileAttributes fails with network-related error codes.
9026 (sys_rename): Diagnose renaming of a symlink when the user doesn't
9027 have the required privileges.
14ae4239 9028 (get_file_security_desc_by_name): Rename from
6dad7178
EZ
9029 get_file_security_desc.
9030 (stat_worker): New function, with most of the guts of 'stat', and
14ae4239
BT
9031 with addition of handling of symlinks and support for 'lstat'.
9032 If possible, get file's attributes and security information by
6dad7178
EZ
9033 handle, not by name. Produce S_IFLNK bit for symlinks, when
9034 called from 'lstat'.
9035 (stat, lstat): New functions, call 'stat_worker'.
9036 (symlink, readlink, careadlinkat): Rewritten to create and resolve
9037 symlinks when the underlying filesystem supports them.
9038
f162bcc3
PE
90392012-08-02 Paul Eggert <eggert@cs.ucla.edu>
9040
79ea6c20
PE
9041 Fix macroexp crash on Windows with debugging (Bug#12118).
9042 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
9043 checking subscripts; problem introduced with the recent
9044 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
9045 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
9046 since it's used in non-static inline functions now.
9047
c0ce93fd
PE
9048 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
9049 Don't assume buffer size fits in 'int'. Remove unused local.
c71f5156 9050
f162bcc3
PE
9051 Use C99-style 'extern inline' if available.
9052 * buffer.h (BUFFER_INLINE):
9053 * category.h (CATEGORY_INLINE):
9054 * character.h (CHARACTER_INLINE):
9055 * charset.h (CHARSET_INLINE):
9056 * composite.h (COMPOSITE_INLINE):
9057 * dispextern.h (DISPEXTERN_INLINE):
9058 * lisp.h (LISP_INLINE):
9059 * systime.h (SYSTIME_INLINE):
9060 New macro, replacing 'static inline' in this header.
9061 * buffer.h, category.h, character.h, charset.h, composite.h:
9062 * dispextern.h, lisp.h, systime.h:
9063 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
9064 * alloc.c (LISP_INLINE):
9065 * buffer.c (BUFFER_INLINE):
9066 * category.c (CATEGORY_INLINE):
9067 * character.c (CHARACTER_INLINE):
9068 * charset.c (CHARSET_INLINE):
9069 * composite.c (COMPOSITE_INLINE):
9070 * dispnew.c (DISPEXTERN_INLINE):
9071 * sysdep.c (SYSTIME_INLINE):
9072 Define to EXTERN_INLINE, so that the corresponding functions
9073 are compiled into code.
9074 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
9075 (INLINE_HEADER_END): New macros.
9076 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
9077 since it's used in non-static inline functions now.
a8333d03 9078 (VALMASK) [!USE_LSB_TAG]: Likewise.
f162bcc3 9079
837b365b
GM
90802012-08-02 Glenn Morris <rgm@gnu.org>
9081
d66b744d
GM
9082 * s/: Remove empty directory.
9083
837b365b
GM
9084 * s/ms-w32.h: Move to ../nt/inc.
9085 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
9086 Update for new ms-w32.h location.
9087
13294f95
PE
90882012-08-02 Paul Eggert <eggert@cs.ucla.edu>
9089
9090 Port to Solaris 8.
9091 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
9092
90df0db3
GM
90932012-08-02 Glenn Morris <rgm@gnu.org>
9094
9095 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
9096 hard-coding the path separator.
9097
4939150c
PE
90982012-08-01 Paul Eggert <eggert@cs.ucla.edu>
9099
9100 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
9101 This how ASET and AREF are supposed to work, and makes
9102 it easier to think about future improvements. See
9103 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
9104 * charset.h (set_charset_attr): New function.
9105 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
9106 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
9107 (aref_addr): New function. All uses of &AREF(...) changed.
9108 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
9109 (set_hash_index): New functions. All lvalue-style uses of
9110 HASH_KEY etc. changed.
9111 * keyboard.c (set_prop): New function. All lvalue-style uses
9112 of PROP changed.
9113
947b2afd
AA
91142012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
9115
9116 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
9117 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
1f9f395d 9118 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
947b2afd
AA
9119 * nsfns.m (ns_set_name_as_filename): Likewise.
9120 * nsmenu.m (ns_update_menubar): Likewise.
9121 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
9122
4f5d0325
EZ
91232012-08-01 Eli Zaretskii <eliz@gnu.org>
9124
2008beae
EZ
9125 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
9126 Adapt to latest changes in field names of the corresponding Lisp
288479f6 9127 objects.
2008beae 9128
4f5d0325
EZ
9129 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
9130
fe3cc771
GM
91312012-08-01 Glenn Morris <rgm@gnu.org>
9132
9133 * s/msdos.h: Remove file.
9134 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
9135 * Makefile.in (S_FILE): Remove.
9136 (config_h): Remove S_FILE.
9137
c90acc54
JB
91382012-08-01 Juanma Barranquero <lekktu@gmail.com>
9139
9140 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
9141 Remove; moved to nt/config.nt.
9142
d8a05828
DA
91432012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9144
9145 Use INTERNAL_FIELD for conses and overlays.
9146 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
9147 Remove obsolete comment.
9148 (MVAR): New macro.
9149 (struct Lisp_Overlay): Use INTERNAL_FIELD.
9150 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
9151
8271d590
DA
91522012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9153
9154 Use INTERNAL_FIELD for symbols.
9155 * lisp.h (SVAR): New macro. Adjust users.
9156 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
9157 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
9158
3193acd2
DA
91592012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9160
9161 Use INTERNAL_FIELD for processes.
9162 * process.h (PVAR): New macro. Adjust style.
9163 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
9164 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
9165
3a45383a
DA
91662012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9167
9168 Use INTERNAL_FIELD for windows.
9169 * window.h (WVAR): New macro.
9170 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
9171 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9172 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9173 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
9174 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
9175 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
9176
c1dbc63c
PE
91772012-08-01 Paul Eggert <eggert@cs.ucla.edu>
9178
9179 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
9180
5c0c0e8a
GM
91812012-08-01 Glenn Morris <rgm@gnu.org>
9182
9183 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
9184 Move to configure.ac.
9185
552a99b4
JB
91862012-08-01 Juanma Barranquero <lekktu@gmail.com>
9187
9188 * makefile.w32-in (CONFIG_H): Update dependencies.
9189 (CONF_POST_H): New macro.
9190
9191 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
9192
8d8e2dfe
GM
91932012-07-31 Glenn Morris <rgm@gnu.org>
9194
bc96620a
GM
9195 * Makefile.in (S_FILE): No longer set by configure.
9196
476b1b2d
GM
9197 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
9198 is available.
9199 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
9200
b2c7a106
GM
9201 * process.h (NULL_DEVICE):
9202 * emacs.c (SEPCHAR):
9203 * editfns.c (USER_FULL_NAME): Let configure set them.
9204
d53d062a
GM
9205 * s/README, s/template.h: Remove files.
9206
4515017f
GM
9207 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
9208
8d8e2dfe
GM
9209 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
9210 Move to configure.ac.
9211
5b20b3cc
EZ
92122012-07-31 Eli Zaretskii <eliz@gnu.org>
9213
1e0afd9a
EZ
9214 * .gdbinit (xframe): Adapt to introduction of FVAR and the
9215 resulting renaming of 'struct frame' members.
9216
5b20b3cc
EZ
9217 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
9218
9219 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
9220 after introduction of FVAR.
9221
f1310128
JD
92222012-07-31 Jan Djärv <jan.h.d@swipnet.se>
9223
79e721e0
JD
9224 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
9225
9226 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
9227 instead of compositeToPoint.
9228 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
9229
8d7c7eed 9230 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
f1310128 9231
e34f7f79
DA
92322012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
9233
9234 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
9235 * lisp.h (INTERNAL_FIELD): New macro.
14ae4239 9236 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
e34f7f79
DA
9237 (BVAR): Change to use INTERNAL_FIELD.
9238 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
9239 (KVAR): Change to use INTERNAL_FIELD.
9240 * frame.h (FVAR): New macro.
9241 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
3a45383a
DA
9242 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
9243 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
9244 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
e34f7f79
DA
9245 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
9246
c09bfb2f
DA
92472012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
9248
9249 Miscellaneous fixes for non-default X toolkits.
9250 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
9251 * xterm.c (x_frame_of_widget): Remove redundant prototype.
9252 Move under #ifdef USE_LUCID.
9253 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
9254 definition and usage to avoid warnings.
9255
14c114ae
JD
92562012-07-31 Jan Djärv <jan.h.d@swipnet.se>
9257
9258 * nsterm.m (openFiles): Fix previous checkin.
9259
3bd21e82
PE
92602012-07-31 Paul Eggert <eggert@cs.ucla.edu>
9261
9262 * indent.c (compute_motion): Remove unused local.
9263
c1529ded
GM
92642012-07-31 Glenn Morris <rgm@gnu.org>
9265
400d5621
GM
9266 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
9267
268e2432
GM
9268 * conf_post.h [USG5_4]:
9269 Move remaining contents of s/usg5-4-common.h here.
9270 * s/usg5-4-common.h: Remove file.
9271
7552f3ee
GM
9272 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
9273 * s/irix6-5.h: Remove file.
9274
6a381852
GM
9275 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
9276 * s/darwin.h: Remove file.
9277
c1529ded
GM
9278 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
9279 * s/hpux10-20.h: Remove file, which is now empty.
9280
b429a4ee
GM
92812012-07-30 Glenn Morris <rgm@gnu.org>
9282
9283 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
9284 * Makefile.in (config_h): Add conf_post.h.
9285 * makefile.w32-in (CONFIG_H): Add conf_post.h.
9286
adff3182
JD
92872012-07-30 Jan Djärv <jan.h.d@swipnet.se>
9288
9289 * nsterm.m (ns_do_open_file): New variable.
b9031d69 9290 (ns_term_init): Set ns_do_open_file to YES after run returns.
14ae4239
BT
9291 (openFile, openTempFile, openFileWithoutUI, openFiles):
9292 Open files only if ns_do_open_file.
adff3182 9293
c32af1e4
PE
92942012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9295
7393bcbb
PE
9296 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
9297 This no-op macro hasn't been needed for many years.
9298 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
9299
c32af1e4
PE
9300 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
9301 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
9302 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
9303 gdb_make_enums_visible.
9304 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
9305 (DIRECTORY_SEP): Now a constant, not a macro.
9306
302fc036
EZ
93072012-07-30 Eli Zaretskii <eliz@gnu.org>
9308
9309 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
9310 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
9311
9312 * w32term.c <w32_keyboard_codepage>: Renamed from
9313 keyboard_codepage and now external. All users changed.
9314
9315 * w32term.h: Add declaration of w32_keyboard_codepage.
9316
9317 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
9318 the codepage to translate keys to Unicode. If this argument is
9319 -1, use the value returned by GetConsoleCP. All callers changed.
9320
88fb40b4
PE
93212012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9322
0aee6912
PE
9323 Update .PHONY listings in makefiles.
9324 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
9325 bootstrap-clean, distclean, maintainer-clean, versioclean,
9326 extraclean, frc.
9327
88fb40b4
PE
9328 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
9329 This is a bit clearer. Fix some commentary typos.
9330
0a763bd1
GM
93312012-07-30 Glenn Morris <rgm@gnu.org>
9332
32bac6d6
GM
9333 * s/netbsd.h: Let configure include signal.h if needed.
9334 Remove file, which is now empty.
9335
b65e7c46
GM
9336 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
9337 Let configure set them.
9338 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
9339 No more need to undefine.
0a763bd1 9340
169304bd
AS
93412012-07-30 Andreas Schwab <schwab@linux-m68k.org>
9342
9343 * keymap.c (Fkey_description): Don't remove 0x80 bit from
9344 non-single-byte char when adding meta modifier. (Bug#12090)
9345
6cd7a139
DA
93462012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
9347
9348 Convert safe_call to use variable number of arguments.
9349 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
9350 (safe_call2): Fix comment.
9351 * lisp.h (safe_call): Adjust prototype.
9352 * coding.c (encode_coding_object): Change to use safe_call2.
9353 * xfaces.c (merge_face_heights): Change to use safe_call1.
9354
d34d6ffc
GM
93552012-07-30 Glenn Morris <rgm@gnu.org>
9356
7b8a48e4 9357 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
227f5bd0 9358 does that unconditionally. Remove file, which is now empty.
7b8a48e4 9359
d34d6ffc
GM
9360 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
9361 Remove empty files.
9362
03a660a6
PE
93632012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9364
9365 Export to GDB most of lisp.h's remaining object-like macros.
9366 * lisp.h (min, max): Move earlier, because they're used earlier now.
9367 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
9368 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
9369 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
9370 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
9371 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
9372 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
9373 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
9374 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
9375 Now constants, for GDB. They need not be macros.
9376 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
9377 Now constants, for GDB, as well as macros, for static initializers.
9378 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
9379 Move to after the definition of struct Lisp_Char_Table,
9380 since the former now needs that type defined.
9381 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
9382 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
9383 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
9384 New enums, for gdb_make_enums_visible.
9385 (GLYPH_MODE_LINE_FACE): Remove; unused.
88fb40b4 9386 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
03a660a6
PE
9387 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
9388 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
9389 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
9390 enum maxargs, enum MAX_ALLOCA.
9391 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
9392 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
9393 no longer needed, now that they are done in lisp.h.
9394
e499d0ee
DA
93952012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
9396
9397 Cleanup string bytes checking.
9398 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
9399 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
9400 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
9401 (check_sblock, compact_small_strings): Simplify.
9402
d5040d2d
PE
94032012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9404
9405 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
9406 These macros are confusing and no longer need to be defined, as
9407 the enum values now suffice. All uses replaced with definiens.
9408 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
9409
7f259ae6
JB
94102012-07-29 Juanma Barranquero <lekktu@gmail.com>
9411
9412 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
9413 ($(BLD)/w32console.$(O)): Update dependencies.
9414
7e63e0c3
DA
94152012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
9416
9417 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
9418 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
9419 time. Adjust users.
9420 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
9421
ffd817eb
JD
94222012-07-29 Jan Djärv <jan.h.d@swipnet.se>
9423
9424 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
9425 setting sitelisp (Bug#12010).
9426
417a7a0e
EZ
94272012-07-29 Eli Zaretskii <eliz@gnu.org>
9428
14ae4239 9429 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
417a7a0e
EZ
9430
9431 * w32heap.c (cache_system_info):
9432 * w32.c (sys_rename):
9433 * w32proc.c (find_child_console, sys_kill): All users changed.
9434
387d4d92
PE
94352012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9436
9437 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
9438
55a6cca6
EZ
94392012-07-29 Eli Zaretskii <eliz@gnu.org>
9440
9441 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
9442
dbcf001c
DA
94432012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
9444
9445 Cleanup statistics calculation in Fgarbage_collect.
14ae4239
BT
9446 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
9447 Fix zombies percentage calculation. Simplify elapsed time calculation.
dbcf001c 9448
e2688e4a
DA
94492012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
9450
9451 Generalize marker debugging code under MARKER_DEBUG and use eassert.
9452 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
9453 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
9454 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
9455 (replace_range, replace_range_2, del_range_2): Change to eassert.
9456 * marker.c (byte_char_debug_check): Adjust style.
9457
b46a6a83
PE
94582012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9459
9460 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
9461 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
9462 long-ago-commented-out code that talks about "WIN32".
9463 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
9464 All uses changed.
9465
e32a5799
PE
94662012-07-28 Paul Eggert <eggert@cs.ucla.edu>
9467
9468 Use Gnulib stdalign module (Bug#9772, Bug#9960).
9469 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
9470 Simplify by using alignof.
9471 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
9472 * lisp.h: Include <stdalign.h>.
9473 (GCALIGNMENT): New macro and constant.
9474 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
9475 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
9476 (stdalign): New macro, if not already defined.
9477
df81cd29
EZ
94782012-07-28 Eli Zaretskii <eliz@gnu.org>
9479
01bd1b0d
EZ
9480 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
9481 * w32inevt.c: Include w32inevt.h.
9482 (w32_read_console_input): New inline function, calls either
9483 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
9484 w32_console_unicode_input.
9485 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
9486 (w32_kbd_patch_key, key_event): Use the codepage returned by
9487 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
9488 (key_event): use uChar.UnicodeChar only if
9489 w32_console_unicode_input is non-zero.
9490
9491 * w32console.c: Include w32heap.h.
9492 <w32_console_unicode_input>: New global variable.
9493 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
9494 family of Windows, zero otherwise.
9495
9496 * w32inevt.h: Declare w32_console_unicode_input.
9497
df81cd29
EZ
9498 * xdisp.c (init_iterator): Don't reference tip_frame in a build
9499 --without-x. (Bug#11742)
9500
c20fdd9e
PE
95012012-07-27 Paul Eggert <eggert@cs.ucla.edu>
9502
9503 Adjust GDB to reflect pvec_type changes (Bug#12036).
9504 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
14ae4239
BT
9505 2012-07-04 changes to pseudovector representation.
9506 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
c20fdd9e 9507
32770973 95082012-07-27 Michael Albinus <michael.albinus@gmx.de>
e518bc71
MA
9509
9510 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
9511 bus address.
9512 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
9513
3438fe21
EZ
95142012-07-27 Eli Zaretskii <eliz@gnu.org>
9515
bcfbc9de
EZ
9516 * alloc.c (listn): Fix the order the arguments are consed onto the
9517 list.
9518
3438fe21
EZ
9519 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
9520 enumeration constants, as PURE and HEAP are too general, and clash
9521 with other headers and sources, such as gmalloc.c and the
9522 MS-Windows system headers. All users changed.
9523
eeaea515
DA
95242012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9525
9526 Revert last save_excursion_save and save_excursion_restore changes.
9527 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
9528 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
9529
073c88c2
DA
95302012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9531
9532 Fix recently-introduced typos in Windows port.
9533 Reported by Martin Rudalics <rudalics@gmx.at>.
9534 * w32.c (init_environment): Replace comma with semicolon.
eeaea515 9535 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
073c88c2 9536
4706125e
PE
95372012-07-27 Paul Eggert <eggert@cs.ucla.edu>
9538
9539 Improve GDB symbol export (Bug#12036).
9540 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
9541 arms of an 'if', not using conditional expressions; otherwise GDB
9542 complains about the types in the unevaluated arm when the argument
9543 is an integer literal.
9544 (xgetint): Simplify expression.
9545 * alloc.c (gdb_make_enums_visible): New constant. This ports to
9546 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
9547 Zaretskii in <http://bugs.gnu.org/12036#13>.
9548 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
9549 needed now that we have gdb_make_enums_visible.
9550 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
9551 (enum enum_USE_LSB_TAG):
9552 New enum types, packaging up enums that need to be exported to GDB.
9553
694b6c97
DA
95542012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9555
9556 Utility function to make a list from specified amount of objects.
9557 * lisp.h (enum constype): New datatype.
9558 (listn): New prototype.
9559 * alloc.c (listn): New function.
9560 (Fmemory_use_count, syms_of_alloc): Use it.
9561 * buffer.c (syms_of_buffer): Likewise.
9562 * callint.c (syms_of_callint): Likewise.
9563 * charset.c (define_charset_internal): Likewise.
9564 * coding.c (syms_of_coding): Likewise.
9565 * keymap.c (syms_of_keymap): Likewise.
9566 * search.c (syms_of_search): Likewise.
9567 * syntax.c (syms_of_syntax): Likewise.
9568 * w32.c (init_environment): Likewise.
9569 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
9570 * xdisp.c (syms_of_xdisp): Likewise.
9571 * xfns.c (syms_of_xfns): Likewise.
9572
6195f384
DA
95732012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9574
9575 Fast save_excursion_save and save_excursion_restore.
9576 * lisp.h (struct Lisp_Excursion): New data type.
9577 (PVEC_EXCURSION): New pseudovector type.
9578 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
9579 to deal with it. Adjust comments.
9580 (init_marker, attach_marker): New prototype.
9581 (unchain_marker): Adjust prototype.
9582 * marker.c (attach_marker): Change to global.
9583 (init_marker): New function.
9584 * alloc.c (Fmake_marker, build_marker): Use it.
9585 (build_marker): More easserts.
9586 (mark_object): Handle struct Lisp_Excursion.
9587 * editfns.c (save_excursion_save, save_excursion_restore):
9588 Reimplement to use struct Lisp_Excursion. Add comments.
9589
5eceb8fb
PE
95902012-07-26 Paul Eggert <eggert@cs.ucla.edu>
9591
9592 Fix export of symbols to GDB (Bug#12036).
9593 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
9594 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
9595 emacs.c, as this is a more-suitable home. Had this been done earlier
9596 the fix for 12036 would have avoided some of the problems noted in
9597 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
9598 would have been more obvious.
562157c8
PE
9599 * emacs.c: Do not include <verify.h>; no longer needed.
9600 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
5eceb8fb
PE
9601 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
9602 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
9603 Remove; now done in lisp.h.
9604 * lisp.h (PUBLISH_TO_GDB): New macro.
9605 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
9606 (DATA_SEG_BITS): Use it.
9607 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
9608 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
9609 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
9610 not be usable in #if. This simplifies things.
9611
d6749401
JB
96122012-07-26 Juanma Barranquero <lekktu@gmail.com>
9613
9614 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
9615
1781b9e9
PE
96162012-07-26 Paul Eggert <eggert@cs.ucla.edu>
9617
d89518db 9618 Simplify export of symbols to GDB (Bug#12036).
1781b9e9
PE
9619 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
9620 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
9621 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
9622 Adjust to changes in lisp.h and emacs.c, by using
9623 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
9624 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
9625 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
9626 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
9627 instead of gdb_valbits.
9628 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
9629 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
9630 instead of gdb_array_mark_flag.
9631 (xboolvector): Get size from $->size, not $->header.size.
9632 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
9633 (xreload, hook-run, hookpost-run): Remove.
9634 * emacs.c: Include <verify.h>.
9635 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
9636 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
9637 Remove.
9638 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
9639 (gdb_USE_LSB_TAG): New enum constants.
9640 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
9641 Also define these as enum constants, so they're visible to GDB.
9642 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
9643 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
9644 as constants, so they're visible to GDB.
9645 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
9646 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
9647 Now enum constants, not macros, so they're visible to GDB.
9648 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
9649 more convenient now. All uses changed.
9650 (VALMASK) [USE_LSB_TAG]: Also define in this case.
9651 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
9652
3628596a
DA
96532012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
9654
9655 Explicitly free restriction data that are not needed anymore.
9656 * editfns.c (save_restriction_restore): Free restriction data.
9657
7abaf5cc
SM
96582012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9659
9660 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
9661 add argument, tune behavior, and adjust all callers.
9662
71f88e00
PE
96632012-07-25 Paul Eggert <eggert@cs.ucla.edu>
9664
9665 Use typedef for EMACS_INT, EMACS_UINT.
9666 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
9667 than macros. This simplifies debugging in the usual case, since
9668 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
9669 and it allows expressions involving EMACS_INT casts.
9670 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
9671
57ec3034
JD
96722012-07-25 Jan Djärv <jan.h.d@swipnet.se>
9673
9674 * nsterm.m (ns_read_socket): Return early if there is a modal
9675 window (Bug#12043).
9676
8137e7b3
MR
96772012-07-25 Martin Rudalics <rudalics@gmx.at>
9678
9679 * frame.c (Fredirect_frame_focus): In doc-string don't mention
9680 that FOCUS-FRAME can be omitted.
9681
04e9897c
DA
96822012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
9683
9684 Adjust buffer text indirection counters at the end of Fkill_buffer.
9685 * buffer.c (Fkill_buffer): Adjust indirection counters when the
9686 buffer is definitely dead. This should really fix an issue reported
9687 by Christoph Scholtes again. (Bug#12007).
9688 (init_buffer_once): Initialize indirection counters of
9689 buffer_defaults and buffer_local_symbols (for sanity and safety).
9690
8a0484e1
EZ
96912012-07-24 Eli Zaretskii <eliz@gnu.org>
9692
9693 * xdisp.c (init_iterator): Don't compute dimensions of truncation
9694 and continuation glyphs on tooltip frames, leave them at zero.
9695 Avoids continued lines in tooltips. (Bug#11832)
9696
fa691a83
DA
96972012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
9698
9699 Simplify copy_overlay.
04e9897c 9700 * buffer.c (copy_overlay): Simplify. Use build_marker.
fa691a83
DA
9701 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
9702
436bc8e0
EZ
97032012-07-23 Eli Zaretskii <eliz@gnu.org>
9704
9705 * print.c (print_object): Don't crash when a frame's name is nil
9706 or invalid. (Bug#12025)
9707
9708 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
9709 it signals an error when a tooltip frame is being created.
9710
d7a7fda3
DA
97112012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
9712
9713 Cleanup miscellaneous objects allocation and initialization.
9714 * alloc.c (allocate_misc): Change to static. Add argument to
9715 specify the subtype. Adjust comment and users.
9716 (build_overlay): New function.
9717 * buffer.c (copy_overlays, Fmake_overlay): Use it.
9718 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
9719 (allocate_misc): Remove prototype.
9720 (build_overlay): Add prototype.
9721
97222012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
372f8ffc
DA
9723
9724 Swap buffer text indirection counters in Fbuffer_swap_text.
9725 * buffer.c (Fbuffer_swap_text): Swap indirections too.
9726 This avoids crash reported by Christoph Scholtes at
9727 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
9728
9d7fa573
JD
97292012-07-22 Jan Djärv <jan.h.d@swipnet.se>
9730
9731 * nsmenu.m (Popdown_data): New struct.
9732 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
9733 free Popdown_data.
9734 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
9735 (initWithContentRect): Make imgView and contentView non-static
9736 and autorelease them. Also autorelease img and matrix (Bug#12005).
9737 (dealloc): Remove (Bug#12005).
9738
0dd6d66d
DA
97392012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
9740
9741 Adjust consing_since_gc when objects are explicitly freed.
9742 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
9743 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
9744 (free_cons, free_misc): Subtract object size from consing_since_gc.
9745
d36d71df
DA
97462012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
9747
9748 Simplify and cleanup markers positioning code.
9749 * marker.c (attach_marker): More useful eassert.
9750 (live_buffer, set_marker_internal): New function.
9751 (Fset_marker, set_marker_restricted): Use set_marker_internal.
9752 (set_marker_both, set_marker_restricted_both): Use live_buffer.
9753
fb9ea40f
PE
97542012-07-22 Paul Eggert <eggert@cs.ucla.edu>
9755
9756 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
9757 as it's limited by the amount of memory, not by INT_MAX.
9758
2d5c5f7d
EZ
97592012-07-21 Eli Zaretskii <eliz@gnu.org>
9760
07fb592e
EZ
9761 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
9762 in special-event-map. See the discussion at
9763 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
9764 for the reasons.
9765
37a9eac8 9766 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
14ae4239
BT
9767 info.dwItemData. Fixes crashes on 64-bit Windows.
9768 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2d5c5f7d 9769
c4328746
JD
97702012-07-21 Jan Djärv <jan.h.d@swipnet.se>
9771
fc0c31f8 9772 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
4b17afa7 9773 (conversationIdentifier): Return value is NSInteger.
784051c4 9774 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
c4328746 9775
6e5d1c12
CY
97762012-07-21 Chong Yidong <cyd@gnu.org>
9777
9778 * window.c (decode_any_window): Signal an error if the window is
9779 on a dead frame (Bug#11984).
9780
9928463d
DA
97812012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9782
9783 Add indirection counting to speed up Fkill_buffer.
9784 * buffer.h (struct buffer): New member.
9785 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
9786 (Fmake_indirect_buffer): Set indirection counter to -1, increment
9787 base buffer indirection counter.
9788 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
9789 (Fkill_buffer): Adjust indirection counters as needed, don't walk
9790 through buffer list if indirection counter is 0.
9791
f8643a6b
DA
97922012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9793
9794 Extend the value returned by Fgarbage_collect with heap statistics.
9795 * alloc.c (Qheap): New symbol.
9796 (syms_of_alloc): DEFSYM it.
9797 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
9798 (Fmemory_free): Remove.
9799 (syms_of_alloc): Don't defsubr it.
9800 * buffer.c (Fcompact_buffer): Remove.
9801 (syms_of_buffer): Don't defsubr it.
9802
dac616ff
DA
98032012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9804
9805 Make maybe_gc inline.
9806 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
9807 * lisp.h (consing_since_gc, gc_relative_threshold)
9808 (memory_full_cons_threshold): Revert declaration.
9809 (maybe_gc): Remove prototype, define as inline.
9810 * alloc.c: Remove old commented-out code.
9811 (consing_since_gc, gc_relative_threshold)
9812 (memory_full_cons_threshold): Revert to global.
9813 (maybe_gc): Remove.
9814
d7ea76b4
DA
98152012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9816
9817 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
9818 * lisp.h (build_unibyte_string): New function.
9819 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
9820 * sysdep.c, w32fns.c, xfns.c: Use it.
9821 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
9822 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
9823 Adjust users accordingly.
9824 * font.h (font_open_by_name): Adjust prototype.
9825
765e61e3
DA
98262012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9827
9828 Cleanup calls to Fgarbage_collect.
9829 * lisp.h (maybe_gc): New prototype.
9830 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9831 Remove declarations.
9832 * alloc.c (maybe_gc): New function.
9833 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9834 Make them static.
9835 * bytecode.c (MAYBE_GC): Use maybe_gc.
9836 * eval.c (eval_sub, Ffuncall): Likewise.
9837 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
9838 to avoid dependency from auto-save feature.
9839
52b852c7
PE
98402012-07-19 Paul Eggert <eggert@cs.ucla.edu>
9841
9842 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
9843 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
9844 'for_each_per_buffer_object_at'.
9845 All uses changed. It's better to use upper-case for macros that
9846 cannot be implemented as functions, to give the reader a clue
9847 that they're special.
9848
5db81e33
SM
98492012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9850
9851 * alloc.c (Fgarbage_collect): Tweak docstring.
9852
5b835e1d
DA
98532012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9854
9855 Tweak the value returned from Fgarbage_collect again.
9856 * alloc.c (Fgarbage_collect): New return value, as confirmed in
9857 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
9858 Adjust documentation.
9859 (total_vector_bytes): Rename to total_vector_slots, adjust
9860 accounting.
9861 (total_free_vector_bytes): Rename to total_free_vector_slots,
9862 adjust accounting.
9863 (Qstring_bytes, Qvector_slots): New symbols.
9864 (syms_of_alloc): DEFSYM them.
9865
9cd47b72
DA
98662012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9867
9868 Buffer compaction primitive which may be used from Lisp.
9869 * buffer.c (compact_buffer, Fcompact_buffer): New function.
9870 (syms_of_buffer): Register Fcompact_buffer.
9871 * alloc.c (Fgarbage_collect): Use compact_buffer.
9872 * buffer.h (compact_buffer): New prototype.
9873 (struct buffer_text): New member.
9874
d17337e5
DA
98752012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9876
9877 New macro to iterate over all buffers, miscellaneous cleanups.
9878 * lisp.h (all_buffers): Remove declaration.
9879 * buffer.h (all_buffers): Add declaration, with comment.
9880 (for_each_buffer): New macro.
9881 * alloc.c (Fgarbage_collect, mark_object): Use it.
9882 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
9883 (init_buffer): Likewise.
9884 * data.c (Fset_default): Likewise.
9885 * coding.c (code_conversion_restore): Remove redundant check
9886 for dead buffer.
9887 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
9888
60cfd278
AS
98892012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9890
9891 Fix bug that created negative-length intervals.
9892 * intervals.c (merge_interval_right, merge_interval_left):
9893 Do not zero out this interval if it is absorbed by its children,
9894 as this interval's total length doesn't change in that case. See
9895 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
9896
d06714cb
PE
98972012-07-18 Paul Eggert <eggert@cs.ucla.edu>
9898
83713154
PE
9899 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
9900 when invoking (make-bool-vector N t) and N is a positive
9901 multiple of 8 -- the last 8 bits were mistakenly cleared.
9902
d06714cb
PE
9903 Remove some struct layout assumptions in bool vectors.
9904 * alloc.c (bool_header_size): New constant.
9905 (header_size, word_size): Move earlier, as they're now used earlier.
9906 Use 'word_size' in a few more places, where it's appropriate.
9907 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
9908 padding before the data member of a bool vector.
9909 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
9910 than doing the check by hand with an abort ().
9911
464d5a5e
SM
99122012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9913
5fbc0409
SM
9914 * eval.c (Fdefvar): Don't check constants since we only set the var if
9915 it's not yet defined anyway (bug#11904).
9916
464d5a5e
SM
9917 * lisp.h (last_undo_boundary): Declare new var.
9918 * keyboard.c (command_loop_1): Set it.
9919 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
9920 were auto-added by the command loop (bug#11774).
9921
8dc2e44a
AS
99222012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9923
9924 * w32font.c (Qsymbol): Remove local definition.
9925 (syms_of_w32font): Don't DEFSYM it.
9926
169925ec
DA
99272012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9928
9929 Fix sweep_vectors to handle large bool vectors correctly.
9930 * alloc.c (sweep_vectors): Account total_vector_bytes for
9931 bool vectors larger than VBLOCK_BYTES_MAX.
9932
5fbfb018
CY
99332012-07-18 Chong Yidong <cyd@gnu.org>
9934
9935 * frame.c (x_set_frame_parameters): Revert bogus change introduced
9936 in 2012-05-25 commit by Paul Eggert (Bug#11738).
9937
3ab6e069
DA
99382012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9939
9940 Return more descriptive data from Fgarbage_collect.
9941 Suggested by Stefan Monnier in
9942 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
9943 * alloc.c (bounded_number): New function.
9944 (total_buffers, total_vectors): New variable.
9945 (total_string_size): Rename to total_string_bytes, adjust users.
9946 (total_vector_size): Rename to total_vector_bytes, adjust users.
9947 (sweep_vectors): Account total_vectors and total_vector_bytes.
9948 (Fgarbage_collect): New return value. Adjust documentation.
9949 (gc_sweep): Account total_buffers.
9950 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
9951 (VECTOR_SIZE): Remove.
9952 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
9953 (Qinterval, Qmisc): New symbols.
9954 (syms_of_data): Initialize them.
9955 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
9956 (Qcons, Qbuffer): New declarations.
9957
6d02fe5b
PE
99582012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9959
9960 * alloc.c (Fmemory_free): Account for memory-free's own storage.
9961 Round up, not down. Improve doc.
9962
b7ffe040
DA
99632012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9964
9965 Restore old code in allocate_string_data to avoid Faset breakage.
9966 Reported by Julien Danjou <julien@danjou.info> in
9967 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
9968 * alloc.c (allocate_string_data): Restore old code with minor
9969 adjustments, fix comment to explain this subtle issue.
9970
4dc7c8d5
SM
99712012-07-17 Eli Zaretskii <eliz@gnu.org>
9972
9973 Remove FILE_SYSTEM_CASE.
9974 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
9975
9976 * fileio.c (FILE_SYSTEM_CASE): Don't define.
9977 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
9978 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
9979 call-process-region passes it through expand-file-name.
9980
9981 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
9982
99832012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9984
9985 Fix crash when creating indirect buffer (Bug#11917)
9986 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
9987 Don't handle unbound variables specially if non-zero.
9988 (Fbuffer_local_variables): Pass zero.
9989 (clone_per_buffer_values): Pass non-zero.
9990
99912012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9992
9993 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
9994 to make the loop interruptible.
9995
99962012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9997
9998 * gnutls.c (emacs_gnutls_handshake): Only retry if
9999 GNUTLS_E_INTERRUPTED.
10000
cce7fefc
DA
100012012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10002
10003 Cleanup and convert miscellaneous checks to eassert.
10004 * alloc.c (mark_interval): Fix comment, partially rephrase
10005 old comment from intervals.h (see below).
10006 * intervals.c (find_interval, adjust_intervals_for_insertion)
10007 (delete_interval, adjust_intervals_for_deletion)
10008 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
10009 Convert to eassert.
10010 (adjust_intervals_for_insertion, make_new_interval):
10011 Remove obsolete and unused code.
10012 * intervals.h (struct interval): Remove obsolete comment.
10013 * textprotp.c (erase_properties): Remove unused code.
10014 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
10015 (Fremove_list_of_text_properties): Convert to eassert.
10016
9ea10cc3
CY
100172012-07-17 Chong Yidong <cyd@gnu.org>
10018
10019 * editfns.c (Finsert_char): Doc fix.
10020
3900d5de
DA
100212012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10022
10023 Fix previous change to make Fmemory_free always accurate.
10024 * alloc.c (make_interval): Update total_free_intervals.
10025 (make_float): Likewise for total_free_floats.
10026 (free_cons, Fcons): Likewise for total_free_conses.
10027 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
10028 Likewise for total_free_vector_bytes.
10029 (Fmake_symbol): Likewise for total_free_symbols.
10030 (bytes_free): Remove.
10031
7098646f
DA
100322012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10033
10034 Simple free memory accounting feature.
10035 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
10036 (sweep_vectors): Accumulate size of free vectors.
10037 (Fgarbage_collect): Setup bytes_free.
10038 (Fmemory_free): New function.
10039 (syms_of_alloc): Register it.
10040
22657b40
DA
100412012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10042
10043 Cleanup overlays checking.
10044 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
10045 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
10046 eassert and OVERLAYP.
10047 (sort_overlays): Change to use OVERLAYP.
10048
ddfc8813
RK
100492012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
10050
10051 * editfns.c (Finsert_char): Make it interactive, and make the
10052 second arg optional. Copy interactive spec and docstring from
10053 ucs-insert.
10054
7c26cf3c
PE
100552012-07-17 Paul Eggert <eggert@cs.ucla.edu>
10056
10057 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
10058 Unlike the other wrapped functions, fabs has an unspecified
10059 effect on errno.
10060
5d127af9
JD
100612012-07-16 Jan Djärv <jan.h.d@swipnet.se>
10062
10063 * nsterm.m (keyDown): Interpret flags without left/right bits
10064 as the left key (Bug#11670).
10065
6a0dd1d7
DA
100662012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
10067
10068 Remove empty and useless init functions.
10069 * lisp.h (init_character_once, init_fns, init_image)
10070 (init_filelock, init_sound): Remove prototype.
10071 * character.c (init_character_once): Remove.
10072 * filelock.c (init_filelock): Likewise.
10073 * fns.c (init_fns): Likewise.
10074 * image.c (init_image): Likewise.
10075 * sound.c (init_sound): Likewise.
10076 * emacs.c (main): Adjust accordingly.
10077
7a6136fd
DA
100782012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
10079
10080 * gtkutil.h: Tiny cleanups.
10081 (use_old_gtk_file_dialog): Remove useless declaration.
10082 (xg_uses_old_file_dialog): Add suggested const attribute.
10083
ce811ad9
EZ
100842012-07-15 Eli Zaretskii <eliz@gnu.org>
10085
10086 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
10087 (bidi_paragraph_init): Use it to limit search forward for a strong
10088 directional character in abnormally large paragraphs full of
10089 neutral or weak characters. (Bug#11943)
10090
c9adfeaa
SF
100912012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
10092
10093 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
10094 the toolbar (Bug#9451).
10095 (xg_make_tool_item): Give the widget event box a transparent
10096 background.
10097
fff62aa9
DA
100982012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
10099
10100 Cleanup basic allocation variables and functions.
10101 * alloc.c (ignore_warnings, init_intervals, init_float)
10102 (init_cons, init_symbol, init_marker): Remove.
10103 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
10104 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
10105 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
10106 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
10107 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
10108 (staticidx, init_alloc_once, init_strings, free_ablock):
10109 Remove redundant initialization.
10110 * fns.c (init_weak_hash_tables): Remove.
10111 * lisp.h (init_weak_hash_tables): Remove prototype.
10112
9730daca
DA
101132012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
10114
10115 Use zero_vector where appropriate.
10116 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
10117 accordingly.
10118 * lisp.h (zero_vector): New declaration.
10119 * font.c (null_vector): Remove.
10120 (syms_of_font): Remove initialization and staticpro.
10121 (font_list_entities, font_find_for_lface): Change to use zero_vector.
10122 * keymap.c (Faccessible_keymaps): Likewise.
10123
2e2d2a13
LL
101242012-07-15 Leo Liu <sdl.web@gmail.com>
10125
10126 * fringe.c: Fix typo in comments.
10127
cd276f6e
LL
101282012-07-14 Leo Liu <sdl.web@gmail.com>
10129
10130 * fringe.c: Add a new bitmap exclamation-mark.
10131
5a1131d9
EZ
101322012-07-14 Eli Zaretskii <eliz@gnu.org>
10133
10134 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
10135
10136 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
10137 (HAVE_MENUS): Don't define, defined by editing config.in with
10138 msdos/sed2v2.inp.
10139 (GMALLOC_INHIBIT_VALLOC): Don't define.
10140 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
10141
22e983b7
JB
101422012-07-14 Juanma Barranquero <lekktu@gmail.com>
10143
10144 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
10145
5b3f250f
GM
101462012-07-14 Glenn Morris <rgm@gnu.org>
10147
10148 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
10149 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
10150 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
10151
33d63ff4
GM
101522012-07-13 Glenn Morris <rgm@gnu.org>
10153
5b633342
GM
10154 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
10155
33d63ff4
GM
10156 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
10157 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
10158
b55b9f85
JD
101592012-07-13 Jan Djärv <jan.h.d@swipnet.se>
10160
0dc8cf50
JD
10161 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
10162 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
10163 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
10164 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
10165 where appropriate.
10166 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
10167 as boolean expression.
10168 (x_set_window_size): Remove unused variable toolbar.
10169 (ns_get_color_default, ns_mod_to_lisp): Remove.
10170 (ns_mouse_position): Remove unused variables xchar and ychar.
10171 (ns_compute_glyph_string_overhangs): Remove unused variable face.
10172 (ns_set_vertical_scroll_bar): Remove unused variable count.
10173 (ns_delete_terminal): Remove unused variable i.
10174 (ns_term_init): Remove unused variables r, g and b.
10175 (mouseDown): Remove unused variable window.
10176 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
10177 (initFrameFromEmacs): Remove unused variable vbextra.
10178 (mouseEntered): Remove unused variables p and dpyinfo.
10179 (mouseExited): Remove unused variables p and r.
10180 (ns_define_frame_cursor, ns_clear_frame_area)
10181 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
10182 (menuDown): Assign [sender tag] to variable and cast the variable.
10183
10184 * nsterm.h (menuDown): Add id as type to argument sender.
10185 (ns_display_info_for_name): Add Lisp_Object argument.
10186 (ns_term_init): Add Lisp_Object argument.
10187 (ns_map_event_to_object): Add void argument.
10188 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
10189 prototype with arguments and only declare if __OBJC__.
10190 (nxatoms_of_nsselect): Add void argument.
10191 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
10192 (ns_alloc_autorelease_pool): Add void argument.
10193 (ns_release_autorelease_pool): Add void* argument.
10194 (ns_get_defaults_value): Add const char* argument.
10195
10196 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
10197 (initFromContents): Use SSDATA where appropriate.
10198 (ns_update_menubar): Add braces to ambigous if-else.
10199 (initWithTitle): Put () around assignment in if statement.
10200 (ns_menu_show): Remove unused variables window and keymap.
10201 (update_frame_tool_bar): Remove unused variable selected_p.
10202 (initWithContentRect): Remove unused variable this_cmd_name.
10203
10204 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
10205 appropriate.
10206 (setXBMColor): Remove unused variable len.
10207 (setPixmapData): Put () around assignment in loop statement.
10208
10209 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
10210 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
10211 where appropriate.
10212 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
10213 around assignment in loop statement.
10214 (nsfont_open): Remove unused variable i.
10215 (nsfont_open): Remove unused variable len.
10216 (nsfont_draw): Remove unused variable cs.
10217
10218 * nsfns.m (x_set_icon_name, ns_set_name_internal)
10219 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
10220 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
10221 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
10222 (Fns_font_name, Fns_perform_service)
10223 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
10224 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
10225 (ns_set_name): Remove unused variable view.
10226 (x_set_menu_bar_lines): Remove unused variable olines.
10227 (x_set_tool_bar_lines): Remove unused variable root_window.
10228 (Fns_list_colors): Put () around assignment in while statement.
10229 (Fns_perform_service): Remove unused variable len.
10230 (Fns_display_usable_bounds): Remove unused variable top.
10231 (syms_of_nsfns): Remove unused variable i.
10232
b55b9f85
JD
10233 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
10234 memcpy (Bug#11907).
10235
ed9265fc 102362012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
2277de02
JD
10237
10238 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
10239 and free it with DestroyExceptionInfo (Bug#11558).
10240
ef099b57
JB
102412012-07-13 Juanma Barranquero <lekktu@gmail.com>
10242
10243 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
10244 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
10245 Set here, not in nt/config.nt.
10246
ea814a5d
EZ
102472012-07-13 Eli Zaretskii <eliz@gnu.org>
10248
10249 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
10250 cursor overflow into the last glyph on display line when the right
10251 fringe is off. (Bug#11832)
10252
1a952767
PE
102532012-07-13 Paul Eggert <eggert@cs.ucla.edu>
10254
10255 * xdisp.c (produce_special_glyphs): Now static.
10256 * dispextern.h (produce_special_glyphs): Remove decl.
10257
983188fd
GM
102582012-07-13 Glenn Morris <rgm@gnu.org>
10259
8d7c7eed 10260 * s/bsd-common.h, s/cygwin.h: Remove empty files.
32fb4bb6
GM
10261 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
10262
983188fd
GM
10263 * s/usg5-4-common.h (USG, USG5):
10264 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
10265 * s/sol2-6.h (SOLARIS2):
10266 * s/irix6-5.h (IRIX6_5):
10267 * s/hpux10-20.h (USG, USG5, HPUX):
10268 * s/gnu-linux.h (USG, GNU_LINUX):
10269 * s/freebsd.h (BSD_SYSTEM):
10270 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
10271 * s/cygwin.h (CYGWIN):
10272 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
10273 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
10274
d1e68667 102752012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
24ef80ae
PE
10276
10277 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
24ef80ae 10278
6de0e799
GM
102792012-07-13 Glenn Morris <rgm@gnu.org>
10280
739ae010
GM
10281 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
10282
dbee5793
GM
10283 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
10284
6de0e799
GM
10285 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
10286 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
10287
b82da769
GM
102882012-07-12 Glenn Morris <rgm@gnu.org>
10289
4fae5a7a 10290 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
b82da769
GM
10291
10292 * process.c (init_process_emacs): Rename from init_process.
10293 The old name is also the name of a Mach system call.
10294 * lisp.h, emacs.c: Update for this name change.
10295 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
10296 longer needed.
10297
5a979817
EZ
102982012-07-12 Eli Zaretskii <eliz@gnu.org>
10299
10300 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
10301 memmove call that removes glyphs covered by the left truncation
10302 glyph. Improve commentary.
10303 (display_line): Fix display of continuation glyphs on GUI frames
10304 when the right fringe is turned off and variable-size fonts are
10305 used in the window. Move the code that appends a stretch glyph to
10306 produce_special_glyphs, so that it could be used for truncation
10307 and continuation glyphs alike.
10308 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
10309 glyph of a suitably computed width, to align the special glyphs at
10310 the window margin. Code moved from display_line. (Bug#11832)
10311
3e91a053
GM
103122012-07-12 Glenn Morris <rgm@gnu.org>
10313
ba9e4b84
GM
10314 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
10315
10316 * s/gnu-linux.h, s/hpux10-20.h:
10317 Do not unconditionally define HAVE_XRMSETDATABASE.
10318
3e91a053
GM
10319 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
10320
b300b1f4
PE
103212012-07-12 Paul Eggert <eggert@cs.ucla.edu>
10322
10323 Fix typos that broke OS X build.
10324 Reported by Randal L. Schwartz in
10325 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
10326 * nsterm.m (ns_timeout): Add missing local decl.
10327 (ns_get_color): snprintf -> sprintf, to fix typo.
10328
6e777848
GM
103292012-07-12 Glenn Morris <rgm@gnu.org>
10330
3f922c37
GM
10331 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
10332 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
10333 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
10334 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
10335
0ab7b23a
GM
10336 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
10337 Move PTY_OPEN to configure.
10338
6e777848
GM
10339 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
10340 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
10341 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
10342
4a7edc24
DA
103432012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
10344
10345 Use empty_unibyte_string where applicable.
10346 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
10347 * lread.c (read1): Likewise.
10348 * xsettings.c (syms_of_xsettings): Likewise.
10349
308aab79
GM
103502012-07-12 Glenn Morris <rgm@gnu.org>
10351
42bd1719
GM
10352 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
10353 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7ccad002
GM
10354 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
10355 * s/hpux10-20.h (RUN_TIME_REMAP):
10356 * s/bsd-common.h (TABDLY): Move to configure.
10357
10358 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
10359
10360 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
10361
ea0bbd17 10362 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
42bd1719 10363 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
ea0bbd17
GM
10364
10365 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
51c3b9b4 10366
308aab79
GM
10367 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
10368 * s/template.h: Move NARROWPROTO to configure.
10369
ee1cf5cf
GM
103702012-07-11 Glenn Morris <rgm@gnu.org>
10371
30fe9bf4
GM
10372 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
10373 unused since 2011-01-17 change to systty.h.
10374
ee1cf5cf
GM
10375 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
10376 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
10377 Move HAVE_PTYS and HAVE_SOCKETS to configure.
10378
63e47e07
PE
103792012-07-11 Paul Eggert <eggert@cs.ucla.edu>
10380
10381 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
10382
c43fb4c3
GM
103832012-07-11 Glenn Morris <rgm@gnu.org>
10384
10385 * s/darwin.h, s/gnu-linux.h, s/template.h:
10386 Move INTERRUPT_INPUT to configure.
10387
e8df9267
DA
103882012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
10389
10390 Minor adjustments to interning code.
10391 * lisp.h (intern, intern_c_string): Redefine as static inline
10392 wrappers for intern_1 and intern_c_string_1, respectively.
10393 (intern_1, intern_c_string_1): Rename prototypes.
14ae4239
BT
10394 * lread.c (intern_1, intern_c_string_1, oblookup):
10395 Simplify Vobarray checking.
e8df9267
DA
10396 * font.c (font_intern_prop): Likewise. Adjust comment.
10397 * w32font.c (intern_font_name): Likewise.
10398
34348bd4
AS
103992012-07-11 Andreas Schwab <schwab@linux-m68k.org>
10400
d96a1e0c
AS
10401 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
10402
34348bd4
AS
10403 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
10404 of Fcar/Fcdr if possible.
10405 * font.c (check_otf_features): Likewise.
10406 * fontset.c (Fnew_fontset): Likewise.
10407 * gnutls.c (Fgnutls_boot): Likewise.
10408 * minibuf.c (read_minibuf): Likewise.
10409 * msdos.c (IT_set_frame_parameters): Likewise.
10410 * xmenu.c (Fx_popup_dialog): Likewise.
10411 * w32menu.c (Fx_popup_dialog): Likewise.
10412
c8add24e
GM
104132012-07-11 Glenn Morris <rgm@gnu.org>
10414
4b575b3c
GM
10415 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
10416 since nothing has defined it on these platforms.
10417
09f4e3b0
GM
10418 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
10419 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
10420
172bedef
GM
10421 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
10422 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
10423 Move CLASH_DETECTION to configure.
10424
249685df
GM
10425 * s/gnu.h: Remove file, which is now empty.
10426
c8add24e
GM
10427 * s/gnu.h, s/gnu-linux.h:
10428 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
10429
b41253a3
JW
104302012-07-11 John Wiegley <johnw@newartisans.com>
10431
10432 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
10433 function attribute, so we only use it if it exists in the
10434 compiler.
10435
d923b542
DA
104362012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
10437
10438 Avoid call to strlen in fast_c_string_match_ignore_case.
10439 * search.c (fast_c_string_match_ignore_case): Change to use
10440 length argument. Adjust users accordingly.
10441 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
10442
5ebbef1d
PE
104432012-07-11 Paul Eggert <eggert@cs.ucla.edu>
10444
bb352260
PE
10445 Assume mkdir, rmdir.
10446 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
10447 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
10448
57054ddd
PE
10449 Assume rename.
10450 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
10451
b747d3f7
PE
10452 Assume perror.
10453 * s/hpux10-20.h (HAVE_PERROR): Remove.
10454 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
10455 Remove dummy definition, as this problem was obsolete long ago.
10456
5ebbef1d
PE
10457 Assume strerror.
10458 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
10459
984e7f30
DA
104602012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
10461
10462 Avoid calls to strlen in font processing functions.
10463 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
14ae4239
BT
10464 (font_open_by_name): Change to use length argument.
10465 Adjust users accordingly.
d923b542
DA
10466 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
10467 Adjust prototypes.
10468 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
10469 Change to return ptrdiff_t.
984e7f30
DA
10470 (xfont_list_pattern, xfont_match): Use length returned by
10471 xfont_decode_coding_xlfd.
10472 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
10473
20e94fdd
GM
104742012-07-11 Glenn Morris <rgm@gnu.org>
10475
9d596af3
GM
10476 * s/darwin.h, s/freebsd.h, s/netbsd.h:
10477 Move DONT_REOPEN_PTY to configure.
10478
20e94fdd
GM
10479 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
10480 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
10481
e99a530f
PE
104822012-07-10 Paul Eggert <eggert@cs.ucla.edu>
10483
22ffb973
PE
10484 Remove "#define unix" that is no longer needed (Bug#11905).
10485 * s/aix4-2.h (unix): Remove; no longer needed.
10486
e9a9ae03
PE
10487 EMACS_TIME simplification (Bug#11875).
10488 This replaces macros (which typically do not work in GDB)
10489 with functions, typedefs and enums, making the code easier to debug.
10490 The functional style also makes code easier to read and maintain.
10491 * systime.h: Include <sys/time.h> on all hosts, not just if
10492 WINDOWSNT, since 'struct timeval' is needed in general.
10493 (EMACS_TIME): Now a typedef, not a macro.
10494 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
10495 not macros.
10496 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
10497 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
10498 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
10499 (EMACS_TIME_LE): Now functions, not macros.
10500 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
10501 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
10502 which are not functions. All uses rewritten to use:
10503 (make_emacs_time): New function.
10504 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
10505 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
10506 not functions. All uses rewritten to use the following, respectively:
10507 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
10508 (add_emacs_time, sub_emacs_time): New functions.
ed9265fc 10509 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
e9a9ae03
PE
10510 * fileio.c (Fcopy_file):
10511 * xterm.c (XTflash): Get the current time closer to when it's used.
10512 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
10513
ffacb126
PE
10514 * bytecode.c (targets): Suppress -Woverride-init warnings.
10515
e99a530f
PE
10516 Simplify by avoiding confusing use of strncpy etc.
10517 * doc.c (Fsnarf_documentation):
10518 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
10519 * frame.c (Fmake_terminal_frame):
10520 * gtkutil.c (get_utf8_string):
10521 * lread.c (openp):
10522 * nsmenu.m (ns_update_menubar):
10523 * regex.c (regerror):
10524 Prefer memcpy to strncpy and strncat when either will do.
10525 * fileio.c (Fsubstitute_in_file_name):
10526 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
10527 (menu_separator_name_p):
10528 * nsmenu.m (ns_update_menubar):
10529 Prefer memcmp to strncmp when either will do.
10530 * nsterm.m: Include <ftoastr.h>.
10531 (ns_get_color):
10532 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
10533 Prefer snprintf to strncpy.
10534 * nsterm.m (ns_term_init):
10535 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
10536 * nsterm.m (ns_term_init):
10537 Avoid the need for strncpy, by using build_string or
10538 make_unibyte_string directly. Use dtoastr, not snprintf.
10539 * process.c (Fmake_network_process): Diagnose service names that
10540 are too long, rather than silently truncating them or creating
10541 non-null-terminated names.
10542 (Fnetwork_interface_info): Likewise, for interface names.
10543 * sysdep.c (system_process_attributes) [GNU_LINUX]:
10544 Prefer sprintf to strncat.
10545 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
10546 Prefer vsnprintf to vsprintf + strncpy.
10547
c59592b3
GM
105482012-07-10 Glenn Morris <rgm@gnu.org>
10549
10550 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
10551 Clarify fallback case.
10552
7d7bbefd
DA
105532012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10554
10555 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
10556 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
10557 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
d923b542 10558 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7d7bbefd
DA
10559 where argument type is known to be a Lisp_Cons.
10560
3a4c8000
TT
105612012-07-10 Tom Tromey <tromey@redhat.com>
10562
10563 * bytecode.c (BYTE_CODE_THREADED): New macro.
10564 (BYTE_CODES): New macro. Replaces all old byte-code defines.
10565 (enum byte_code_op): New type.
10566 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
10567 (exec_byte_code): Use them. Use token threading when applicable.
10568
2a0213a6
DA
105692012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10570
10571 Optimize pure C strings initialization.
10572 * lisp.h (make_pure_string): Fix prototype.
10573 (build_pure_c_string): New function, defined as static inline. This
10574 provides a better opportunity to optimize away calls to strlen when
10575 the function is called with compile-time constant argument.
10576 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
10577 argument, adjust users accordingly. Use build_pure_c_string where
10578 appropriate.
10579 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
10580 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
10581 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
10582
cb1caeaf
DA
105832012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10584
10585 Avoid calls to strlen in miscellaneous functions.
10586 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
10587 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
10588 * lread.c (openp): Likewise.
10589
c293e30c
DA
105902012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10591
10592 Avoid calls to strlen in path processing functions.
10593 * fileio.c (file_name_as_directory): Add comment. Change to add
10594 srclen argument and return the length of result. Adjust users
10595 accordingly.
10596 (directory_file_name): Fix comment. Change to add srclen argument,
14ae4239
BT
10597 swap 1st and 2nd arguments to obey the common convention.
10598 Adjust users accordingly.
c293e30c
DA
10599 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
10600
9e059e3f
GM
106012012-07-10 Glenn Morris <rgm@gnu.org>
10602
d02eb359
GM
10603 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
10604 Move PENDING_OUTPUT_COUNT definition to configure.
10605
882cf227
GM
10606 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
10607 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
10608 * s/gnu.h (DATA_START): Move definitions to configure.
10609
af6e839f
GM
10610 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
10611 We include usg5-4-common.h, which defines them both.
10612
40289a12
GM
10613 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
10614 O_RDONLY already includes it).
10615
9e059e3f
GM
10616 Stop ns builds setting the EMACSLOADPATH environment variable.
10617 * nsterm.m (ns_load_path): Rename from ns_init_paths.
10618 Now it does not set EMACSLOADPATH, just returns the load-path string.
10619 * nsterm.h: Update accordingly.
10620 * lread.c [HAVE_NS]: Include nsterm.h.
10621 (init_lread) [HAVE_NS]: Use ns_load_path.
10622 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
10623
7c4e8ec0
GM
106242012-07-09 Glenn Morris <rgm@gnu.org>
10625
d4f600ff
GM
10626 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
10627 since the included bsd-common.h does so.
10628
cbb31951
GM
10629 Stop ns builds setting the EMACSPATH environment variable.
10630 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
10631 (ns_init_paths): Do not set EMACSPATH.
10632 * nsterm.h (ns_exec_path): Add it.
10633 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
10634 Use ns_exec_path.
10635
7c4e8ec0
GM
10636 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
10637
26bccfae
PE
106382012-07-09 Paul Eggert <eggert@cs.ucla.edu>
10639
a0bee46f
PE
10640 * process.c (wait_reading_process_output): 'waitchannels' was unset
10641 when read_kbd || !NILP (wait_for_cell); fix this.
10642
5994c183
PE
10643 Add GCC-style 'const' attribute to functions that can use it.
10644 * character.h (char_resolve_modifier_mask):
10645 * keyboard.h (make_ctrl_char):
10646 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
10647 (init_character_once, next_almost_prime, init_fns, init_image)
10648 (flush_pending_output, init_sound):
10649 * mem-limits.h (start_of_data):
10650 * menu.h (finish_menu_items):
10651 Add ATTRIBUTE_CONST.
10652 * emacs.c (DEFINE_DUMMY_FUNCTION):
10653 Declare the dummy function with ATTRIBUTE_CONST.
10654 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
10655 Add decls with ATTRIBUTE_CONST.
10656
26bccfae
PE
10657 Minor improvements to make_formatted_string.
10658 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
10659 where int is good enough, as vsprintf returns an int.
10660 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
10661
a8290ec3
DA
106622012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
10663
10664 Use make_formatted_string to avoid double length calculation.
10665 * lisp.h (make_formatted_string): New prototype.
10666 * alloc.c (make_formatted_string): New function.
10667 * buffer.c (Fgenerate_new_buffer_name): Use it.
220cb2bd 10668 * dbusbind.c (syms_of_dbusbind): Likewise.
a8290ec3
DA
10669 * editfns.c (Fcurrent_time_zone): Likewise.
10670 * filelock.c (get_boot_time): Likewise.
10671 * frame.c (make_terminal_frame, set_term_frame_name)
10672 (x_report_frame_params): Likewise.
10673 * image.c (gs_load): Likewise.
10674 * minibuf.c (get_minibuffer): Likewise.
10675 * msdos.c (dos_set_window_size): Likewise.
10676 * process.c (make_process): Likewise.
10677 * xdisp.c (ensure_echo_area_buffers): Likewise.
10678 * xsettings.c (apply_xft_settings): Likewise.
10679
d01ba2f1
GM
106802012-07-09 Glenn Morris <rgm@gnu.org>
10681
10682 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
10683 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
10684 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
10685 * nsterm.h (ns_etc_directory): Add it.
10686 * callproc.c [HAVE_NS]: Include nsterm.h.
10687 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
10688
f1f924b6
DA
106892012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
10690
10691 Move marker debugging code under MARKER_DEBUG.
10692 * marker.c (MARKER_DEBUG): Move marker debugging code under
10693 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
10694 for bootstrap with --enable-checking (~3x slowdown reported
10695 by Juanma Barranquero <lekktu@gmail.com>).
10696 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
10697
ab531b66
PE
106982012-07-08 Paul Eggert <eggert@cs.ucla.edu>
10699
10700 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
10701 See <http://bugs.gnu.org/11825#29>.
10702
c4b3bc8a
EZ
107032012-07-08 Eli Zaretskii <eliz@gnu.org>
10704
10705 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
10706 has no font, use the frame's font. (Bug#11813)
3434fe8a
EZ
10707 (display_line): Add commentary about displaying truncation glyphs
10708 on GUI frames.
10709 (produce_special_glyphs): Move here from term.c.
10710
10711 * term.c (produce_special_glyphs): Move to xdisp.c.
10712
10713 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
10714 section.
c4b3bc8a 10715
b676b881
AS
107162012-07-07 Andreas Schwab <schwab@linux-m68k.org>
10717
f17c5273
AS
10718 * xdisp.c (display_line): Avoid warning about implicit declaration
10719 of FRAME_FONT.
10720
298819b9
AS
10721 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
10722
b676b881
AS
10723 * lisp.h: Remove empty conditional.
10724
6045c4fd
PE
107252012-07-07 Paul Eggert <eggert@cs.ucla.edu>
10726
b3350bf9
PE
10727 * lread.c (load_path_check): Now static.
10728
6045c4fd
PE
10729 Fix some minor --with-ns problems found by static checking.
10730 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
10731 (x_set_font) [!HAVE_X_WINDOWS]:
10732 * image.c (xpm_load_image) [HAVE_NS]:
10733 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
10734 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
10735 Remove unused local.
10736 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
10737 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
10738 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
10739 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
10740 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
10741 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
10742 Fix pointer signedness problem.
10743 * xfaces.c (FRAME_X_FONT_TABLE):
10744 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
10745
929e7845
GM
107462012-07-07 Glenn Morris <rgm@gnu.org>
10747
10748 * lread.c (load_path_check): New function, split from init_lread.
10749 (init_lread): Reorganize. Motivation:
10750 If EMACSLOADPATH is set, check/warn about that rather than the
10751 defaults, which we are not going to use. Hence we can remove
10752 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
10753 Don't warn if site-lisp directories are missing.
10754 If not installed, start from a blank load-path, since
10755 PATH_LOADSEARCH refers to the eventual installation directories.
10756
58dd0aa4
EZ
107572012-07-07 Eli Zaretskii <eliz@gnu.org>
10758
10759 Support truncation and continuation glyphs on GUI frames, when
10760 fringes are disabled. (Bug#11832)
10761 * xdisp.c (init_iterator): Get dimensions of truncation and
14ae4239
BT
10762 continuation glyphs even if on GUI frames.
10763 Adjust it->last_visible_x on GUI frames when the left or right fringes,
58dd0aa4
EZ
10764 or both, are absent.
10765 (start_display, move_it_in_display_line_to): Handle the case of a
10766 GUI frame without a fringe to display continuation or truncation
10767 glyphs.
10768 (insert_left_trunc_glyphs): Support GUI frames: make sure
10769 truncation glyphs overwrite enough glyphs from the current line to
10770 have sufficient space in pixels.
10771 (display_line): Support truncation and continuation glyphs on GUI
10772 frames. If some spare pixels are left on the line after inserting
10773 the truncation glyphs, fill that space with a stretch glyph of a
10774 suitably computed width.
10775
10776 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
10777 produce_glyphs, to support GUI sessions.
10778
31571fd7
PE
107792012-07-07 Paul Eggert <eggert@cs.ucla.edu>
10780
5a16b9bc
PE
10781 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
10782
f3047c75
PE
10783 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
10784
31571fd7
PE
10785 Do not require float-time's arg to fit in time_t (Bug#11825).
10786 This works better on hosts where time_t is unsigned, and where
10787 float-time is applied to the (negative) difference between two times.
10788 * editfns.c (decode_time_components): Last arg is now double *,
10789 not int *, and means to store all the result as a double, without
10790 worrying about whether the seconds part fits in time_t.
10791 All callers changed.
10792 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
10793 All callers changed.
10794 (Ffloat_time): Do not fail merely because the specified time falls
10795 outside of time_t range.
10796
4516fbef
GM
107972012-07-07 Glenn Morris <rgm@gnu.org>
10798
10799 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
10800 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
10801 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
10802
07adc2c6
JB
108032012-07-07 Juanma Barranquero <lekktu@gmail.com>
10804
10805 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
10806 Update dependencies.
10807
10808 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
10809
fd573f31
PE
108102012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10811
fee5959d
PE
10812 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
10813 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
10814 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
10815 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
10816 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
10817 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
10818
fd573f31
PE
10819 * xfont.c (compare_font_names): Redo to omit the need for casts.
10820
ddadbc0e
AS
108212012-07-06 Andreas Schwab <schwab@linux-m68k.org>
10822
fca8d6b6
AS
10823 * xfns.c (Fx_change_window_property): Doc fix.
10824 * w32fns.c (Fx_change_window_property): Doc fix.
10825
ddadbc0e
AS
10826 * w32fns.c (Fx_window_property): Accept the same arguments as the
10827 X Windows version. Doc fix.
10828 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
10829
ed9265fc 108302012-07-06 Juanma Barranquero <lekktu@gmail.com>
f247498e
JB
10831 Eli Zaretskii <eliz@gnu.org>
10832
10833 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
10834 Windows-specific code from nt/config.nt moved here.
10835 Obsolete settings removed.
10836
216ee680
PE
108372012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10838
10839 * process.c: Avoid unnecessary calls to gettime.
10840 (wait_reading_process_output): Don't get the time of day
10841 when gobbling data immediately and not waiting, as there's no need
10842 for it in that case. This removes a FIXME.
10843
bdd091e4
JD
108442012-07-06 Jan Djärv <jan.h.d@swipnet.se>
10845
10846 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
10847 is defined (Bug#11768).
10848
9d44f8ce
DA
108492012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10850
10851 Fix marker debugging code.
10852 * marker.c (byte_char_debug_check): Do not perform the check
10853 if buffer is not multibyte.
090bd7cb
JB
10854 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10855 Call byte_char_debug_check with correct arguments.
9d44f8ce 10856
90fc4786
DA
108572012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10858
10859 Compile marker debugging code only if ENABLE_CHECKING is defined.
090bd7cb
JB
10860 * marker.c (byte_char_debug_check, count_markers):
10861 Use only if ENABLE_CHECKING is defined.
90fc4786
DA
10862 (byte_debug_flag): Remove.
10863 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10864 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
10865
7b7ae965
DA
108662012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10867
4e57b342
DA
10868 Avoid code repetition in marker-related functions.
10869 * marker.c (attach_marker): New function.
10870 (Fset_marker, set_marker_restricted, set_marker_both)
10871 (set_marker_restricted_both): Use it.
10872 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
10873 Consistently rename charno to charpos.
10874 (marker_position): Add eassert.
10875 (marker_byte_position): Convert to eassert.
10876
108772012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10878
10879 Simplify list operations in unchain_overlay and unchain_marker.
7b7ae965 10880 * buffer.c (unchain_overlay): Simplify. Add comment.
4e57b342 10881 * marker.c (unchain_marker): Simplify. Fix comments.
7b7ae965 10882
657924ff
DA
108832012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10884
10885 Introduce fast path for the widely used marker operation.
10886 * alloc.c (build_marker): New function.
10887 * lisp.h (build_marker): New prototype.
10888 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
10889 * composite.c (autocmp_chars): Likewise.
10890 * editfns.c (buildmark): Remove.
10891 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
10892 (save_restriction_save): Use build_marker.
10893 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
10894 * window.c (save_window_save): Likewise.
10895
041a49a6
DA
108962012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10897
10898 Do not use Fdelete_overlay in delete_all_overlays
10899 to avoid redundant calls to unchain_overlay.
10900 * buffer.c (drop_overlay): New function.
10901 (delete_all_overlays, Fdelete_overlay): Use it.
10902 * minibuf.c (get_minibuffer): Fix comment.
10903
7dca65a4
PE
109042012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10905
10906 Port to OpenBSD 5.1 amd64.
10907 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
10908 This is needed for OpenBSD, and should be harmless on all BSD systems.
10909 Also, include <sys/sysctl.h>, as it should be available on all
10910 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
10911 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
10912 use p_pid member, not kp_proc.pid.
10913
8eb876e2
GM
109142012-07-06 Glenn Morris <rgm@gnu.org>
10915
10916 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
10917
38182d90
PE
109182012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10919
10920 More xmalloc and related cleanup.
10921 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
10922 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
10923 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
10924 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
10925 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
10926 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
10927 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
10928 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
10929 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
10930 * xterm.c:
10931 Omit needless casts involving void * pointers and allocation.
10932 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
10933 as the former is more robust if P's type is changed.
10934 Prefer xzalloc to xmalloc + memset 0.
10935 Simplify malloc-or-realloc to realloc.
10936 Don't worry about xmalloc returning a null pointer.
10937 Prefer xstrdup to xmalloc + strcpy.
10938 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
10939 growing it.
10940 * keyboard.c (apply_modifiers_uncached): Prefer local array to
10941 alloca of a constant.
10942
6dd5a677
EZ
109432012-07-05 Eli Zaretskii <eliz@gnu.org>
10944
10945 * xdisp.c (display_line): Fix horizontal pixel coordinates when
10946 hscroll is larger than the line width. Fixes long and futile
10947 looping inside extend_face_to_end_of_line (on a TTY) producing
10948 glyphs that are not needed and thrown away.
10949
6b312f0f
DA
109502012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10951
10952 * marker.c (set_marker_restricted_both): Simplify by using
10953 clip_to_bounds.
10954
f520ef9b
PE
109552012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10956
10957 * editfns.c (region_limit): Simplify by using clip_to_bounds.
10958
383b7c95
JD
109592012-07-05 Jan Djärv <jan.h.d@swipnet.se>
10960
10961 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
10962 not defined (Bug#11768).
10963 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
10964 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
10965 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
10966 followed by gtk_box_set_homogeneous (Bug#11768).
10967 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
090bd7cb
JB
10968 (update_theme_scrollbar_width, xg_create_scroll_bar):
10969 Use gtk_scrollbar_new (Bug#11768).
383b7c95
JD
10970 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
10971 (is_box_type): New function (Bug#11768).
10972 (xg_tool_item_stale_p): Call is_box_type.
5293d758 10973 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
383b7c95
JD
10974 with default display (Bug#11768).
10975
d6e7bf45
EZ
109762012-07-05 Eli Zaretskii <eliz@gnu.org>
10977
10978 * xdisp.c (window_hscroll_limited): New function.
10979 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
10980 coordinates when window's hscroll is set to insanely large
10981 values. (Bug#11857)
10982
431391ec
JB
109832012-07-05 Juanma Barranquero <lekktu@gmail.com>
10984
10985 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
10986 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
10987
23f86fce
DA
109882012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10989
10990 Cleanup xmalloc.
10991 * lisp.h (xzalloc): New prototype. Omit needless casts.
10992 * alloc.c (xzalloc): New function. Omit needless casts.
10993 * charset.c: Omit needless casts. Convert all calls to
10994 xmalloc with following memset to xzalloc.
10995 * dispnew.c: Likewise.
10996 * fringe.c: Likewise.
10997 * image.c: Likewise.
10998 * sound.c: Likewise.
10999 * term.c: Likewise.
11000 * w32fns.c: Likewise.
11001 * w32font.c: Likewise.
11002 * w32term.c: Likewise.
11003 * xfaces.c: Likewise.
11004 * xfns.c: Likewise.
11005 * xterm.c: Likewise.
11006 * atimer.c: Omit needless casts.
11007 * buffer.c: Likewise.
11008 * callproc.c: Likewise.
11009 * ccl.c: Likewise.
11010 * coding.c: Likewise.
11011 * composite.c: Likewise.
11012 * doc.c: Likewise.
11013 * doprnt.c: Likewise.
11014 * editfns.c: Likewise.
11015 * emacs.c: Likewise.
11016 * eval.c: Likewise.
11017 * filelock.c: Likewise.
11018 * fns.c: Likewise.
11019 * gtkutil.c: Likewise.
11020 * keyboard.c: Likewise.
11021 * lisp.h: Likewise.
11022 * lread.c: Likewise.
11023 * minibuf.c: Likewise.
11024 * msdos.c: Likewise.
11025 * print.c: Likewise.
11026 * process.c: Likewise.
11027 * region-cache.c: Likewise.
11028 * search.c: Likewise.
11029 * sysdep.c: Likewise.
11030 * termcap.c: Likewise.
11031 * terminal.c: Likewise.
11032 * tparam.c: Likewise.
11033 * w16select.c: Likewise.
11034 * w32.c: Likewise.
11035 * w32reg.c: Likewise.
11036 * w32select.c: Likewise.
11037 * w32uniscribe.c: Likewise.
11038 * widget.c: Likewise.
11039 * xdisp.c: Likewise.
11040 * xmenu.c: Likewise.
11041 * xrdb.c: Likewise.
11042 * xselect.c: Likewise.
11043
0497dc44
PE
110442012-07-05 Paul Eggert <eggert@cs.ucla.edu>
11045
11046 * fileio.c (time_error_value): Check the right error number.
11047 Problem reported by Troels Nielsen in
11048 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
11049
356e7178
PE
110502012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11051
4e71fd89
PE
11052 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
11053 This should be fixed in a better way; see Eli Zaretskii in
11054 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
11055 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
11056
f0941253
PE
11057 * fileio.c (time_error_value): Rename from special_mtime.
11058 The old name's problems were noted by Eli Zaretskii in
11059 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
11060
065c9eb4
PE
11061 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
11062 This variable's comment says Emacs needs at least one GDB-visible
11063 symbol of type enum pvec_type, to work around GDB problems.
11064 The symbol's value doesn't matter.
11065
356e7178
PE
11066 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
11067 that causes compilation to fail on pre-C99 compilers.
11068
ed9265fc 110692012-07-04 Juanma Barranquero <lekktu@gmail.com>
95f61aa2
JB
11070
11071 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
11072 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
11073
3884d954
DA
110742012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
11075
d209e2fb 11076 * buffer.c (init_buffer_once): Fix initialization of
3884d954
DA
11077 headers for buffer_defaults and buffer_local_symbols.
11078 Reported by Juanma Barranquero <lekktu@gmail.com>.
11079
ee28be33
SM
110802012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11081
11082 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
11083 * lisp.h (enum pvec_type): Use fewer bits.
11084 (PSEUDOVECTOR_SIZE_BITS): New constant.
11085 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
11086 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
11087 change in pvec_type.
11088 (PSEUDOVECTOR_TYPEP): New macro.
11089 (TYPED_PSEUDOVECTORP): Use it.
11090 * fns.c (internal_equal): Adapt code to extract pvectype.
11091 * emacs.c (gdb_pvec_type): Update type.
11092 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
11093 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
11094 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
11095 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
11096 (sweep_vectors): Use it. Use local var `total_bytes' instead of
11097 abusing vector->header.next.nbytes.
11098 (live_vector_p): Use PVEC_TYPE.
11099 (mark_object): Adapt code to extract pvectype. Use switch.
11100
c7f2cd7f
PE
111012012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11102
11103 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
11104 Tighten new eassert a bit.
11105
8ce70ed2
DA
111062012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
11107
11108 Fix compilation with --enable-gcc-warnings and -O1
11109 optimization level.
11110 * doprnt.c (doprnt): Change type of tem to int, initialize
11111 to avoid compiler warning. Add eassert.
11112 * search.c (simple_search): Initialize match_byte to avoid
11113 compiler warning. Add eassert.
11114
dea7f1e5
PE
111152012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11116
24a212eb
PE
11117 Avoid weird behavior with large horizontal scrolls.
11118 Without this change, for example, large hscroll values would
11119 mess up Emacs's display on Fedora 15 x86, presumably due to
11120 overflows in int calculations in the display code.
11121 Also, if buffers had long lines, Emacs would freeze.
11122 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
11123 (set_window_hscroll): New function, containing the old guts of
11124 Fset_window_hscroll. Return the clipped value.
11125 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
11126 This avoids the need to check against PTRDIFF_MAX.
11127
dea7f1e5
PE
11128 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
11129
76046526
DA
111302012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
11131
11132 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
11133
39adff0d
PE
111342012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11135
63807d47
PE
11136 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
11137 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
11138 since GCC 4.4.6 issues a bogus warning for them.
11139
39adff0d
PE
11140 Fix bugs in file timestamp newness comparisons.
11141 * fileio.c (Ffile_newer_than_file_p):
11142 * lread.c (Fload): Use full timestamp resolution of files,
11143 not just the 1-second resolution, so that files that are only
11144 slightly newer still count as newer.
11145 * fileio.c (Ffile_newer_than_file_p): Don't assume file
11146 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
11147
dbeed9a6
PE
111482012-07-03 Paul Eggert <eggert@cs.ucla.edu>
11149
11150 * fileio.c: Improve handling of file time marker. (Bug#11852)
11151 (special_mtime): New function.
11152 (Finsert_file_contents, Fverify_visited_file_modtime):
11153 Use it to set special mtime values consistently.
11154
636334d6
AS
111552012-07-03 Andreas Schwab <schwab@linux-m68k.org>
11156
11157 * fileio.c (Finsert_file_contents): Properly handle st_mtime
11158 marker for non-existing file. (Bug#11852)
11159
e2017fe2
GM
111602012-07-03 Glenn Morris <rgm@gnu.org>
11161
11162 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
11163 and did not make it into globals.h).
11164
404dbd37
TT
111652012-07-03 Tom Tromey <tromey@redhat.com>
11166
11167 * window.c (Fset_window_margins, Fset_window_fringes)
11168 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
11169 * textprop.c (Fprevious_property_change): No longer static.
11170 * syntax.c (Fsyntax_table_p): No longer static.
11171 * process.c (Fget_process, Fprocess_datagram_address): No longer
11172 static.
11173 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
11174 * keyboard.c (Fcommand_execute): No longer static.
11175 Remove EXFUN.
11176 * insdel.c (Fcombine_after_change_execute): No longer static.
11177 * image.c (Finit_image_library): No longer static.
11178 * fileio.c (Fmake_symbolic_link): No longer static.
11179 * eval.c (Ffetch_bytecode): No longer static.
11180 * editfns.c (Fuser_full_name): No longer static.
d209e2fb
JB
11181 * doc.c (Fdocumentation_property, Fsnarf_documentation):
11182 No longer static.
404dbd37
TT
11183 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
11184 static.
11185 * dired.c (Ffile_attributes): No longer static.
11186 * composite.c (Fcomposition_get_gstring): No longer static.
11187 * callproc.c (Fgetenv_internal): No longer static.
11188
11189 * ccl.h: Remove EXFUNs.
11190 * buffer.h: Remove EXFUNs.
11191 * dispextern.h: Remove EXFUNs.
11192 * intervals.h: Remove EXFUNs.
11193 * fontset.h: Remove EXFUN.
11194 * font.h: Remove EXFUNs.
11195 * dosfns.c (system_process_attributes): Remove EXFUN.
11196 * keymap.h: Remove EXFUNs.
11197 * lisp.h: Remove EXFUNs.
11198 * w32term.h: Remove EXFUNs.
11199 * window.h: Remove EXFUNs.
11200 * xsettings.h: Remove EXFUN.
11201 * xterm.h: Remove EXFUN.
11202
8e4fd1e1
GM
112032012-07-03 Glenn Morris <rgm@gnu.org>
11204
11205 * lisp.h (Frandom): Make it visible to C.
11206 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
11207 buffer for invisible buffers. (Bug#1229)
11208
ca95b3eb
DA
112092012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11210
11211 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
11212 values which aren't power of 2.
14ae4239 11213 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
1f9f395d 11214 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
ca95b3eb
DA
11215 accordingly.
11216
7555c33f
SM
112172012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
11218
11219 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
11220
11221 * alloc.c (mark_object): Revert part of last patch to use `switch'.
11222
d12e8f5a
DA
112232012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11224
11225 * alloc.c (allocate_vector_block): Remove redundant
11226 calls to mallopt if DOUG_LEA_MALLOC is defined.
11227 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
11228 avoid calls to mallopt if zero_vector is returned.
11229
296094c3
DA
112302012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11231
11232 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
11233 is enabled, avoid dereferencing NULL current_sblock if
11234 running undumped.
11235
36429c89
DA
112362012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11237
11238 Cleanup basic buffer management.
11239 * buffer.h (struct buffer): Change layout to use generic vector
11240 marking code. Fix some comments. Change type of 'clip_changed'
11241 to bitfield. Remove unused #ifndef old.
11242 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
11243 (GET_OVERLAYS_AT): Fix indentation.
11244 (for_each_per_buffer_object_at): New macro.
11245 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
11246 (Fbuffer_local_variables): Use it.
11247 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
11248 * alloc.c (allocate_buffer): Adjust to match new layout of
11249 struct buffer. Fix comment.
11250 (mark_overlay): New function.
11251 (mark_buffer): Use it. Use mark_vectorlike to mark normal
11252 Lisp area of struct buffer.
11253 (mark_object): Use it. Adjust marking of misc objects
11254 and related comments.
11255
3b3e4cac
PE
112562012-07-02 Paul Eggert <eggert@cs.ucla.edu>
11257
11258 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
11259 wrapper that is not needed because the wrapped code is a no-op (zero
11260 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
11261 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
11262
cf5c0175
DA
112632012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
11264
11265 * alloc.c (mark_buffer): Simplify. Remove prototype.
11266 (mark_object): Add comment. Reorganize marking of vector-like
faf611c7 11267 objects. Use CHECK_LIVE for all vector-like objects except buffers
14ae4239
BT
11268 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
11269 Avoid redundant calls to mark_vectorlike for bool vectors.
cf5c0175 11270
ca26824c
GM
112712012-06-30 Glenn Morris <rgm@gnu.org>
11272
2e4c5312
GM
11273 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
11274
ca26824c
GM
11275 * epaths.in (PATH_SITELOADSEARCH): New.
11276 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
11277 This is rather than relying on --enable-locallisppath elements
11278 having "site-lisp" in their names. (Bug#10208#25, 11658)
11279
0d23c240
EZ
112802012-06-30 Eli Zaretskii <eliz@gnu.org>
11281
c9240d7a
EZ
11282 * w32proc.c (sys_select): Accept and ignore one more argument.
11283
11284 * w32.c (emacs_gnutls_pull): Call select with one more argument.
11285
0d23c240 11286 * sysselect.h [DOS_NT]: Don't include sys/select.h.
9ff8f76b 11287 (pselect) [!MS_DOS]: Redirect to sys_select.
0d23c240
EZ
11288
11289 * sysdep.c: Don't include dos.h and dosfns.h.
11290
11291 * process.c (sys_select):
11292 * msdos.c (sys_select): Accept one more argument and ignore it.
11293
11294 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
11295 adapt data types and code to that.
11296
11297 * dosfns.c:
11298 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
11299 which clashes with the gnulib function of the same name.
11300
af5a5a98
AS
113012012-06-30 Andreas Schwab <schwab@linux-m68k.org>
11302
c5e4379c
AS
11303 * font.c (font_style_to_value, font_style_symbolic)
11304 (font_prop_validate_style): Add type checks for values in
11305 font_style_table.
11306
af5a5a98
AS
11307 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
11308 argument.
11309 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
11310 uses.
11311
8d38f461
EZ
113122012-06-29 Eli Zaretskii <eliz@gnu.org>
11313
2e5a6631
EZ
11314 * xdisp.c (try_window_id): Undo last change.
11315
8d38f461
EZ
11316 * w32.c (getwd): Adjust commentary about startup_dir.
11317 (init_environment): Always call sys_access, even in non-MSVC
11318 builds. Don't chdir to the directory of the Emacs executable.
11319 This undoes code from 1997 which was justified by the need to
11320 "avoid conflicts when removing and renaming directories". But its
11321 downside was that every relative file name was being interpreted
11322 relative to the directory of the Emacs executable, which can never
11323 be TRT. In particular, it broke sys_access when called with
11324 relative file names.
11325 (sys_access): Map GetLastError to errno.
11326
2af3565e
DA
113272012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
11328
11329 * window.h (struct window): Change type of 'fringes_outside_margins'
11330 to bitfield. Fix comment. Adjust users accordingly.
cf5c0175 11331 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
2af3565e
DA
11332 Adjust comment.
11333 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
11334 to ptrdiff_t.
11335
c8d3a25c 113362012-06-29 Andreas Schwab <schwab@linux-m68k.org>
57570cd3 11337
c8d3a25c
GM
11338 * gnutls.c (emacs_gnutls_handshake):
11339 Add QUIT to make the loop interruptible.
57570cd3 11340
c8d3a25c 113412012-06-29 Glenn Morris <rgm@gnu.org>
d01fd55f 11342
c8d3a25c
GM
11343 * charset.c (init_charset): Make lack of etc/charsets fatal.
11344
3e984ee8
DA
113452012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
11346
11347 * editfns.c (region_limit): Fix type mismatch.
11348
ef884f23
DA
113492012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
11350
11351 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
11352 undefined. Convert from xassert to eassert.
11353 * nsmenu.m: Convert from xassert to eassert.
11354 * nsterm.m: Likewise.
11355
7d7e0027
SM
113562012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
11357
11358 * editfns.c (region_limit): Clip to narrowing (bug#11770).
11359
aa754e6a
PE
113602012-06-28 Paul Eggert <eggert@cs.ucla.edu>
11361
11362 Avoid integer overflow on scroll-left and scroll-right.
11363 * window.c (HSCROLL_MAX): New macro.
11364 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
11365 overflow when requested scroll falls outside ptrdiff_t range.
11366
80b00b08
DA
113672012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11368
11369 * window.h (struct window): Change type of 'hscroll',
11370 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
11371 'last_modified' and 'last_overlay_modified' to EMACS_INT.
11372 Adjust users accordingly.
11373 * xdisp.c (try_cursor_movement): Replace type check with eassert.
11374 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
11375 from EMACS_INT to ptrdiff_t.
11376 (make_window): Omit redundant initialization.
11377
62b2bcf6
JB
113782012-06-28 Juanma Barranquero <lekktu@gmail.com>
11379
11380 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
11381
45942c7d
DA
113822012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11383
11384 * window.h (struct window): Change type of 'use_time' and
11385 'sequence_number' from Lisp_Object to int.
11386 * frame.c (make_frame): Adjust users accordingly.
11387 * print.c (print_object): Likewise.
11388 * window.c (select_window, Fwindow_use_time, make_parent_window)
11389 (make_window): Likewise.
11390
e509cfa6
DA
113912012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11392
11393 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
11394 enabled with --enable-checking=[all,glyphs] configure option.
11395 Fix GLYPH_DEBUG usage assuming that it may be undefined,
11396 adjust comments accordingly.
11397 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
11398 undefined, adjust comments accordingly.
11399 * image.c: Likewise.
11400 * scroll.c: Likewise.
11401 * w32fns.c: Likewise.
11402 * w32term.c: Likewise.
11403 * xdisp.c: Likewise.
11404 * xfaces.c: Likewise.
11405 * xfns.c: Likewise.
11406 * xterm.c: Likewise.
11407
a54e2c05
DA
114082012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11409
11410 Generalize run-time debugging checks.
11411 * dispextern.h (XASSERTS): Remove.
11412 * fontset.c (xassert): Remove.
11413 Convert from xassert to eassert.
11414 * alloc.c: Convert from xassert to eassert.
11415 * bidi.c: Likewise.
11416 * dispnew.c: Likewise.
11417 * fns.c: Likewise.
11418 * fringe.c: Likewise.
11419 * ftfont.c: Likewise.
11420 * gtkutil.c: Likewise.
11421 * image.c: Likewise.
11422 * keyboard.c: Likewise.
11423 * menu.c: Likewise.
11424 * process.c: Likewise.
11425 * scroll.c: Likewise.
11426 * sound.c: Likewise.
11427 * term.c: Likewise.
11428 * w32console.c: Likewise.
11429 * w32fns.c: Likewise.
11430 * w32term.c: Likewise.
11431 * window.c: Likewise.
11432 * xdisp.c: Likewise.
11433 * xfaces.c: Likewise.
11434 * xfns.c: Likewise.
11435 * xselect.c: Likewise.
11436 * xterm.c: Likewise.
11437
1ec4b7b2
SM
114382012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11439
11440 * fns.c (maybe_resize_hash_table): Output message when growing the
11441 purify-hashtable.
11442
2014308a
DA
114432012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11444
11445 * alloc.c (allocate_string_data): Remove dead code.
11446 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
11447 avoid GCC warning about unused macro.
11448
246155eb
DA
114492012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11450
11451 * alloc.c (allocate_string): Omit intervals initialization.
11452 * alloc.c (make_uninit_multibyte_string): Initialize intervals
11453 as in make_pure_string and make_pure_c_string.
11454
43184b7b
DA
114552012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11456
d209e2fb 11457 * alloc.c (allocate_string): Fix last change.
43184b7b 11458
3fe6dd74
DA
114592012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11460
d209e2fb 11461 * alloc.c (allocate_string): Remove two redundant calls
3fe6dd74
DA
11462 to memset, add explicit initialization where appropriate.
11463
1ba6038a
GM
114642012-06-27 Glenn Morris <rgm@gnu.org>
11465
11466 * lisp.mk (lisp): Remove paths.elc.
11467
c89926a5
CY
114682012-06-27 Chong Yidong <cyd@gnu.org>
11469
11470 * doc.c (Fsubstitute_command_keys): Fix punctuation.
11471
ed6b3510
JW
114722012-06-26 John Wiegley <johnw@newartisans.com>
11473
1ec4b7b2 11474 * unexmacosx.c (copy_data_segment): Add two section names used
157e99e4
JW
11475 on Mac OS X Lion: __mod_init_func and __mod_term_func.
11476
ed6b3510
JW
11477 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
11478 when building with Clang.
11479
8edd4a2b
SM
114802012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11481
11482 * eval.c (Fapply): Allow calling it with a single argument.
11483
f6f62d1b
EZ
114842012-06-26 Eli Zaretskii <eliz@gnu.org>
11485
11486 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
11487 _stricmp and _strnicmp.
11488 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
11489
62efea5e
DA
114902012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
11491
11492 * alloc.c (allocate_window): Zero out non-Lisp part of newly
11493 allocated window.
11494 (allocate_process): Likewise for new process.
8edd4a2b 11495 (allocate_terminal): Change to use offsetof.
62efea5e
DA
11496 (allocate_frame): Likewise.
11497 * frame.c (make_frame): Omit redundant initialization.
11498 * window.c (make_parent_window): Use memset.
11499 (make_window): Omit redundant initialization.
11500 * process.c (make_process): Omit redundant initialization.
11501 * terminal.c (create_terminal): Likewise.
11502
42997f4d
DA
115032012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
11504
11505 * term.c (delete_tty): Remove redundant call to memset.
11506
1130ecfc
DA
115072012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
11508
11509 * alloc.c: Remove build_string.
11510 * lisp.h: Define build_string as static inline. This provides
11511 a better opportunity to optimize away calls to strlen when the
11512 function is called with compile-time constant argument.
11513 * image.c (imagemagick_error): Convert to build_string.
11514 * w32proc.c (sys_spawnve): Likewise.
11515 * xterm.c (x_term_init): Likewise.
11516
cf38a720
PE
115172012-06-26 Paul Eggert <eggert@cs.ucla.edu>
11518
99027bdd
PE
11519 Use sprintf return value instead of invoking strlen on result.
11520 In the old days this wasn't portable, since some sprintf
11521 implementations returned char *. But they died out years ago and
11522 Emacs already assumes sprintf returns int.
11523 Similarly for float_to_string.
11524 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
11525 * ccl.c (ccl_driver):
11526 * character.c (string_escape_byte8):
11527 * data.c (Fnumber_to_string):
11528 * doprnt.c (doprnt):
11529 * print.c (print_object):
11530 * xdisp.c (message_dolog):
11531 * xfns.c (syms_of_xfns):
11532 Use sprintf or float_to_string result to avoid need to call strlen.
11533 * data.c (Fnumber_to_string):
11534 Use make_unibyte_string, since the string must be ASCII.
11535 * lisp.h, print.c (float_to_string): Now returns int length.
11536 * term.c (produce_glyphless_glyph):
11537 Use sprintf result rather than recomputing it.
11538
cf38a720
PE
11539 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
11540 * Makefile.in (ALL_CFLAGS):
11541 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
11542 * gmalloc.c, regex.c: Include <config.h> unconditionally.
11543
3511c784
DA
115442012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
11545
0a08eb21 11546 * dispextern.h (xstrcasecmp): Define to library function
3511c784
DA
11547 strcasecmp if available.
11548 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
11549
fb7da12e
AS
115502012-06-25 Andreas Schwab <schwab@linux-m68k.org>
11551
11552 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
11553 Avoid comma operator.
11554 * menu.c (push_submenu_start, push_submenu_end)
11555 (push_left_right_boundary, push_menu_pane): Likewise.
11556 * msdos.c (dos_rawgetc): Likewise.
11557
afa2ffd8
DA
115582012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
11559
11560 * xfns.c (xic_create_fontsetname): Remove redundant calls
11561 to memset.
11562
b3b4476b
PE
115632012-06-25 Paul Eggert <eggert@cs.ucla.edu>
11564
4495ff38
PE
11565 * gtkutil.c (get_utf8_string): Remove redundant assignment.
11566 sprintf already null-terminates its output.
11567
b3b4476b
PE
11568 * xfns.c (x_window): Remove redundant cast.
11569
b00876c9
DA
115702012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
11571
11572 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
11573 `const char *' to `char *' to avoid compiler warning.
11574
d188e26b
PE
115752012-06-24 Paul Eggert <eggert@cs.ucla.edu>
11576
885d1d74
PE
11577 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
11578 instead of truncating it to 63 (admittedly a generous limit).
11579
d188e26b
PE
11580 * process.c: Fix spelling and caps in comments.
11581
e2f560b1
DN
115822012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
11583
e86db54b 11584 * emacs.c (setpgrp): Remove definition, unused.
e2f560b1
DN
11585 * sysdep.c (setpgrp): Remove definition, not used in this file.
11586
7583a3a1
JB
115872012-06-24 Juanma Barranquero <lekktu@gmail.com>
11588
11589 * makefile.w32-in: Update dependencies.
11590
696056c2
EZ
115912012-06-24 Eli Zaretskii <eliz@gnu.org>
11592
11593 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
11594 (SYSTIME_H): Add nt/inc/sys/time.h.
11595
11596 * systime.h [WINDOWSNT]: Include sys/time.h.
11597
11598 * s/ms-w32.h (struct timespec): Definition moved from
11599 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
11600
845ca893
PE
116012012-06-24 Paul Eggert <eggert@cs.ucla.edu>
11602
11603 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
11604 * buffer.h (buffer_slot_type_mismatch):
11605 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
11606 * eval.c (unwind_to_catch):
11607 * image.c (my_png_error, my_error_exit):
11608 * keyboard.c (quit_throw_to_read_char, user_error)
11609 (Fexit_recursive_edit, Fabort_recursive_edit):
11610 * lisp.h (die, args_out_of_range, args_out_of_range_3)
11611 (wrong_type_argument, buffer_overflow, __executable_start)
11612 (memory_full, buffer_memory_full, string_overflow, Fthrow)
11613 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
11614 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
11615 (fatal):
11616 (child_setup) [!DOS_NT]:
11617 * lread.c (end_of_file_error, invalid_syntax):
11618 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
11619 * puresize.h (pure_write_error):
11620 * search.c (matcher_overflow):
11621 * sound.c (sound_perror, alsa_sound_perror):
11622 * sysdep.c, syssignal.h (croak):
11623 * term.c (maybe_fatal, vfatal):
11624 * textprop.c (text_read_only):
11625 * undo.c (user_error):
11626 * unexmacosx.c (unexec_error):
11627 * xterm.c (x_ins_del_lines, x_delete_glyphs):
11628 Use _Noreturn rather than NO_RETURN.
11629 No need for separate decl merely because of _Noreturn.
11630 * sound.c (sound_warning, parse_sound):
11631 Remove unnecessary forward decls.
11632
f1dd8073
PE
116332012-06-24 Paul Eggert <eggert@cs.ucla.edu>
11634
11635 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
11636 * lisp.h (WAIT_READING_MAX): New macro.
11637 * dispnew.c (Fsleep_for, sit_for):
11638 * keyboard.c (kbd_buffer_get_event):
11639 * process.c (Faccept_process_output):
11640 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
11641 This improves on the previous patch, which introduced a bug
11642 when time_t is unsigned and as wide as intmax_t.
11643 See <http://bugs.gnu.org/9000#51>.
11644
b82c1755
EZ
116452012-06-23 Eli Zaretskii <eliz@gnu.org>
11646
11647 * dispnew.c (sit_for, Fsleep_for):
11648 * keyboard.c (kbd_buffer_get_event):
11649 * process.c (Faccept_process_output): Avoid compiler warnings when
11650 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
11651
ca300656
JB
116522012-06-23 Juanma Barranquero <lekktu@gmail.com>
11653
049ec95b
JB
11654 * makefile.w32-in: Update dependencies.
11655
ca300656
JB
11656 * w32.c (ltime): Add return type and declare static.
11657 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
11658
db7b8d06
PE
116592012-06-23 Paul Eggert <eggert@cs.ucla.edu>
11660
11661 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
11662 Privately reported by Herbert J. Skuhra.
11663 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
11664 All uses changed.
11665 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
11666 not make_lisp_timeval, when the argument is of type EMACS_TIME.
11667
0bd8297f
EZ
116682012-06-23 Eli Zaretskii <eliz@gnu.org>
11669
96512555
EZ
11670 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
11671 last argument of make_unibyte_string.
11672
0bd8297f
EZ
11673 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
11674 language ID in the event parameters.
11675
11676 * w32term.c (w32_read_socket): Put the new keyboard codepage into
11677 event.code, not the obscure "character set ID".
11678
63def6b6
CY
116792012-06-23 Chong Yidong <cyd@gnu.org>
11680
11681 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
11682
e8a02204
EZ
116832012-06-23 Eli Zaretskii <eliz@gnu.org>
11684
388cdec0
EZ
11685 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
11686 * w32.c (fdutimens): New function.
11687
11688 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
11689
11690 * s/ms-w32.h (pselect): Redirect to sys_select.
11691
11692 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
11693
e8a02204
EZ
11694 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
11695 in the logic of incrementing and decrementing the value of
11696 use_relocatable_buffers.
11697
d054f3fb
PE
116982012-06-23 Paul Eggert <eggert@cs.ucla.edu>
11699
11700 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
11701 Privately reported by Herbert J. Skuhra.
11702 [__FreeBSD__]: Remove "*/" typo after "#include".
11703 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
11704 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
11705 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
11706 Don't assume EMACS_TIME and struct timeval are the same type.
11707
d35af63c
PE
117082012-06-22 Paul Eggert <eggert@cs.ucla.edu>
11709
11710 Support higher-resolution time stamps (Bug#9000).
11711 The time stamps are only nanosecond-resolution at the C level,
11712 since that's the best that any real-world system supports now.
11713 But they are picosecond-resolution at the Lisp level, as that's
11714 easy, and leaves room for future OS improvements.
11715
11716 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
11717 (LIBES): Use it.
11718
11719 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
11720 Don't get current time unless it's needed.
11721
11722 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
11723 now provides it if it's absent.
11724 (start_atimer): Port to higher-res time stamps.
11725 Check for time stamp overflow. Don't get current time more
11726 often than is needed.
11727
11728 * buffer.h (struct buffer): Buffer modtime now has high resolution.
11729 Include systime.h, not time.h.
11730 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
11731
11732 * dired.c: Include stat-time.h.
11733 (Ffile-attributes): File times now have higher resolution.
11734
11735 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
11736 (struct image): Timestamp now has higher resolution.
11737
11738 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
11739 has at least microseconds now. All uses removed.
11740 (update_frame, update_single_window, update_window, update_frame_1)
11741 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
927c7216 11742 (duration_to_sec_usec): Remove; no longer needed.
d35af63c
PE
11743
11744 * editfns.c (time_overflow): Now extern.
11745 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
11746 (float-time, Fformat_time_string, Fcurrent_time_string)
11747 (Fcurrent_time_zone): Accept and generate higher-resolution
11748 time stamps.
11749 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
11750 (decode_time_components, lisp_seconds_argument): New functions.
11751 (make_time): Now static.
11752 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
11753 Report an error if the time is invalid, rather than having the caller
11754 do that.
11755
11756 * fileio.c: Include <stat-time.h>
11757 (Fcopy_file): Copy higher-resolution time stamps.
11758 Prefer to set the time stamp via a file descriptor if that works.
11759 (Fset_file_times, Finsert_file_contents, Fwrite_region)
11760 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
11761 (Fvisited_file_modtime, Fset_visited_file_modtime):
11762 Support higher-resolution time stamps.
11763
11764 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
11765
11766 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
11767
11768 * image.c (prepare_image_for_display, clear_image_cache)
11769 (lookup_image): Port to higer-resolution time stamps.
11770
11771 * keyboard.c (start_polling, bind_polling_period):
11772 Check for time stamp overflow.
11773 (read_char, kbd_buffer_get_event, timer_start_idle)
11774 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
11775 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
11776 Port to higher-resolution time stamps. Do not assume time_t is signed.
11777 (decode_timer): New function. Timers are now vectors of length 9,
11778 not 8, to accommodate the picosecond component.
11779 (timer_check_2): Use it.
11780
11781 * nsterm.m (select_timeout, timeval_subtract): Remove.
11782 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
11783 as they're a bit more accurate and handle overflow better.
11784 (ns_select): Change prototype to be compatible with pselect.
11785 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
11786 * nsterm.h (ns_select): Adjust prototype.
11787
11788 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
11789 us-resolution time stamps.
11790 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
11791
11792 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
11793
11794 * lisp.h (time_overflow): New decl.
11795 (wait_reading_process_output): First arg is now intmax_t, not int,
11796 to accommodate larger waits.
11797
11798 * process.h (struct Lisp_Process.read_output_delay):
11799 Now counts nanoseconds, not microseconds.
11800 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
11801 EMACS_HAS_USECS.
11802 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
11803 (wait_reading_process_output):
11804 Port to ns-resolution time stamps.
11805 (Faccept_process_output, wait_reading_process_output):
11806 Check for time stamp overflow. Do not assume time_t is signed.
11807 (select_wrapper): Remove; we now use pselect.
11808 (Fprocess_attributes): Now generates ns-resolution time stamps.
11809
11810 * sysdep.c: Include utimens.h. Don't include utime.h
11811 or worry about struct utimbuf; gnulib does that for us now.
11812 (gettimeofday): Remove; gnulib provides a substitute.
11813 (make_timeval): New function.
11814 (set_file_times): Now sets ns-resolution time stamps.
11815 New arg FD; all uses changed.
11816 (time_from_jiffies, ltime_from_jiffies, get_up_time)
11817 (system_process_attributes):
11818 Now returns ns-resolution time stamp. All uses changed.
11819 Check for time stamp overflow.
11820
11821 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
11822 provides a substitute now.
11823
11824 * systime.h: Include timespec.h rather than sys/time.h and time.h,
11825 since it guarantees struct timespec.
11826 (EMACS_TIME): Now struct timespec, so that we can support
11827 ns-resolution time stamps.
11828 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
11829 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
11830 (EMACS_USECS): Remove.
11831 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
11832 so multiply the arg by 1000 before storing it.
11833 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
11834 New macros.
11835 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
11836 Port to ns-resolution time stamps.
11837 (EMACS_TIME_NEG_P): Remove; replaced by....
11838 (EMACS_TIME_SIGN): New macro.
11839 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
11840 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
11841 (set_file_times, make_time, lisp_time_argument): Adjust signature.
11842 (make_timeval, make_lisp_time, decode_time_components): New decls.
11843 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
11844 that it mishandled time_t overflow. You can't compare by subtracting!
11845 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
11846 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
11847
11848 * term.c: Include <sys/time.h>.
11849 (timeval_to_Time): New function, for proper overflow wraparound.
11850 (term_mouse_position, term_mouse_click): Use it.
11851
11852 * undo.c (record_first_change): Support higher-resolution time stamps
11853 in the undo buffer.
11854 (Fprimitive_undo): Use them when restoring time stamps.
11855
11856 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
11857 (w32_get_internal_run_time):
11858 Port to higher-resolution Emacs time stamps.
11859 (ltime): Now accepts single 64-bit integer, as that's more convenient
11860 for callers.
11861
11862 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
11863
11864 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
11865 for compatibility with pselect. Support ns-resolution time stamps.
11866
11867 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
11868
11869 * xselect.c (wait_for_property_change, x_get_foreign_selection):
11870 Check for time stamp overflow, and support ns-resolution time stamps.
11871
11872 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
11873 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
11874 (timeval_subtract): Remove; no longer needed.
11875 (XTflash, XTring_bell, x_wait_for_event):
11876 Port to ns-resolution time stamps. Don't assume time_t is signed.
11877
b6a92dfe
CY
118782012-06-22 Chong Yidong <cyd@gnu.org>
11879
11880 * xdisp.c (x_consider_frame_title): Revert last change.
11881
d251c37c
EZ
118822012-06-22 Eli Zaretskii <eliz@gnu.org>
11883
11884 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
11885 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
11886 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
11887 staticidx goes up to 1597 out of 1600 = 0x640.)
11888
f10deafb
PE
118892012-06-20 Paul Eggert <eggert@cs.ucla.edu>
11890
11891 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
11892 Otherwise, the umask might be mistakenly 0 while handling input signals.
11893
ec6de1e2
SM
118942012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11895
11896 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
11897
28be1ada
DA
118982012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
11899
11900 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
11901 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
11902 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
11903 access to `contents' member of Lisp_Vector objects with AREF and ASET
11904 where appropriate.
11905
c6bf3022
CY
119062012-06-19 Chong Yidong <cyd@gnu.org>
11907
11908 * frame.c (delete_frame): When selecting a frame on a different
11909 text terminal, do not alter the terminal's top-frame.
11910
11911 * xdisp.c (format_mode_line_unwind_data): Record the target
11912 frame's selected window and its terminal's top-frame.
11913 (unwind_format_mode_line): Restore them.
11914 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
11915 Callers changed.
11916 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
11917 since tty frames can be explicitly named.
11918 (prepare_menu_bars): Likewise.
11919
11920 * term.c (Ftty_top_frame): New function.
11921
defd4196
PE
119222012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11923
11924 Port byte-code-meter to modern targets.
11925 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
11926 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
8b5257e1 11927 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
defd4196
PE
11928 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
11929 (METER_1, METER_2): Simplify.
11930
1053a871
SM
119312012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11932
11933 * data.c (Fdefalias): Return `symbol' (bug#11686).
11934
b7e8d081
MR
119352012-06-18 Martin Rudalics <rudalics@gmx.at>
11936
11937 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
1053a871
SM
11938 gets killed during executing of this function (Bug#11665).
11939 Try to always return Qt when the buffer has been actually killed.
b7e8d081
MR
11940 (Vkill_buffer_query_functions): In doc-string say that functions
11941 run by this hook should not change the current buffer.
11942
7ea2b339
PE
119432012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11944
11945 Fix recently-introduced process.c problems found by static checking.
11946 * process.c (write_queue_push, write_queue_pop, send_process):
11947 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
11948 (write_queue_pop): Fix pointer signedness problem.
11949 (send_process): Remove unused local.
11950
96a313a1
CY
119512012-06-17 Chong Yidong <cyd@gnu.org>
11952
11953 * xdisp.c (redisplay_internal): No need to redisplay terminal
11954 frames that are not on top.
11955
20ca2e94
TN
119562012-06-17 Troels Nielsen <bn.troels@gmail.com>
11957
11958 * process.c (make_process): Initialize write_queue.
11959 (write_queue_push, write_queue_pop): New functions.
11960 (send_process): Use them to maintain correct ordering of process
11961 writes (Bug#10815).
11962
9a900ca9
PE
119632012-06-17 Paul Eggert <eggert@cs.ucla.edu>
11964
310fbfa8
PE
11965 * lisp.h (eassert): Assume C89 or later.
11966 This removes the need for CHECK.
11967 (CHECK): Remove. Its comments about always evaluating its
11968 argument were confusing, as 'eassert' typically does not evaluate
11969 its argument.
11970
27bb1ca4
PE
11971 * coding.c (produce_chars): Use ptrdiff_t, not int.
11972
9a900ca9
PE
11973 * xterm.c (x_draw_underwave): Check for integer overflow.
11974 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
11975
41b7f8bc 119762012-06-17 Jan Djärv <jan.h.d@swipnet.se>
50a93863
JD
11977
11978 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
11979 referenced (Bug#11583).
11980
9b0e3eba
AA
119812012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
11982
11983 Implement wave-style variant of underlining.
11984 * dispextern.h (face_underline_type): New enum.
11985 (face): Add field for underline type.
11986 * nsterm.m (ns_draw_underwave): New function.
11987 (ns_draw_text_decoration): Use it.
11988 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
11989 New functions.
11990 (x_draw_glyph_string): Use them.
11991 * xfaces.c (Qline, Qwave): New Lisp objects.
11992 (check_lface_attrs, merge_face_ref)
1053a871
SM
11993 (Finternal_set_lisp_face_attribute, realize_x_face):
11994 Handle wave-style underline face attributes.
9b0e3eba
AA
11995 * xterm.c (x_draw_underwave): New function.
11996 (x_draw_glyph_string): Use it.
11997
0fb52f11
JB
119982012-06-16 Juanma Barranquero <lekktu@gmail.com>
11999
12000 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
12001 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
12002 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
12003 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
12004 ($(BLD)/w32select.$(O)): Update dependencies.
12005
e5560ff7
AS
120062012-06-16 Andreas Schwab <schwab@linux-m68k.org>
12007
12008 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
12009 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
12010 * character.c (_fetch_multibyte_char_p): Remove.
12011 * alloc.c: Include "character.h" before "buffer.h".
12012 * bidi.c: Likewise.
12013 * buffer.c: Likewise.
12014 * bytecode.c: Likewise.
12015 * callint.c: Likewise.
12016 * callproc.c: Likewise.
12017 * casefiddle.c: Likewise.
12018 * casetab.c: Likewise.
12019 * category.c: Likewise.
12020 * cmds.c: Likewise.
12021 * coding.c: Likewise.
12022 * composite.c: Likewise.
12023 * dired.c: Likewise.
12024 * dispnew.c: Likewise.
12025 * doc.c: Likewise.
12026 * dosfns.c: Likewise.
12027 * editfns.c: Likewise.
12028 * emacs.c: Likewise.
12029 * fileio.c: Likewise.
12030 * filelock.c: Likewise.
12031 * font.c: Likewise.
12032 * fontset.c: Likewise.
12033 * fringe.c: Likewise.
12034 * indent.c: Likewise.
12035 * insdel.c: Likewise.
12036 * intervals.c: Likewise.
12037 * keyboard.c: Likewise.
12038 * keymap.c: Likewise.
12039 * lread.c: Likewise.
12040 * macros.c: Likewise.
12041 * marker.c: Likewise.
12042 * minibuf.c: Likewise.
12043 * nsfns.m: Likewise.
12044 * nsmenu.m: Likewise.
12045 * print.c: Likewise.
12046 * process.c: Likewise.
12047 * regex.c: Likewise.
12048 * region-cache.c: Likewise.
12049 * search.c: Likewise.
12050 * syntax.c: Likewise.
12051 * term.c: Likewise.
12052 * textprop.c: Likewise.
12053 * undo.c: Likewise.
12054 * unexsol.c: Likewise.
12055 * w16select.c: Likewise.
12056 * w32fns.c: Likewise.
12057 * w32menu.c: Likewise.
12058 * window.c: Likewise.
12059 * xdisp.c: Likewise.
12060 * xfns.c: Likewise.
12061 * xmenu.c: Likewise.
12062 * xml.c: Likewise.
12063 * xselect.c: Likewise.
12064
2f07e6af
EZ
120652012-06-16 Eli Zaretskii <eliz@gnu.org>
12066
1053a871
SM
12067 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
12068 If all the glyphs of the glyph row came from strings, and we have no
2f07e6af 12069 cursor positioning clues, put the cursor on the first glyph of the
1097afe4
EZ
12070 row.
12071 (handle_face_prop): Use chunk-relative overlay string index when
12072 indexing into it->string_overlays array. (Bug#11653)
946fdb73
EZ
12073 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
12074 the rightmost. (Bug#11720)
2f07e6af 12075
29b83cec
AS
120762012-06-16 Andreas Schwab <schwab@linux-m68k.org>
12077
12078 * category.h (CHAR_HAS_CATEGORY): Define as inline.
12079 (CATEGORY_MEMBER): Enforce 1/0 value.
12080 * category.c (_temp_category_set): Remove.
12081
4c5501e9
EZ
120822012-06-16 Eli Zaretskii <eliz@gnu.org>
12083
12084 * window.c (Fdelete_other_windows_internal)
12085 (Fdelete_window_internal): Don't access frame's mouse highlight
12086 info of the initial frame. (Bug#11677)
12087
2b570124
PE
120882012-06-14 Paul Eggert <eggert@cs.ucla.edu>
12089
e93864f9
PE
12090 * .gdbinit (xgetint): Fix recently-introduced paren typo.
12091 Assume USE_2_TAGS_FOR_INTS.
12092 (xreload): Adjust $tagmask width to match recent lisp.h change.
12093
2b570124
PE
12094 Simplify lisp.h in minor ways that should not affect code.
12095 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
12096 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
12097 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
12098 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
12099 (INTTYPEBITS): New macro, for clarity.
12100 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
1053a871
SM
12101 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
12102 Simplify now that USE_LSB_TAG is always defined.
2b570124
PE
12103 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
12104 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
12105
81755f69
JB
121062012-06-13 Juanma Barranquero <lekktu@gmail.com>
12107
12108 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
12109
16192a57
GM
121102012-06-13 Glenn Morris <rgm@gnu.org>
12111
12112 * s/bsd-common.h (BSD4_3):
12113 * s/usg5-4-common.h (USG5_4): No longer define; unused.
12114
646b5f55
AS
121152012-06-13 Andreas Schwab <schwab@linux-m68k.org>
12116
12117 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
12118 instead of union.
12119 (XLI, XIL): Define.
1053a871
SM
12120 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
12121 Use them.
12122 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
646b5f55 12123 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
1053a871 12124 * alloc.c (widen_to_Lisp_Object): Remove.
646b5f55
AS
12125 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
12126 * frame.c (delete_frame): Remove outdated comment.
12127 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
12128 USE_LISP_UNION_TYPE.
12129 (Fw32_unregister_hot_key): Likewise.
12130 (Fw32_toggle_lock_key): Likewise.
12131 * w32menu.c (add_menu_item): Likewise.
12132 (w32_menu_display_help): Use XIL instead of checking
12133 USE_LISP_UNION_TYPE.
12134 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
12135 (init_heap): Likewise.
12136 * w32term.c (w32_read_socket): Update comment.
12137
1d3823c9
GM
121382012-06-13 Glenn Morris <rgm@gnu.org>
12139
c62ff706
GM
12140 * s/usg5-4-common.h, src/s/unixware.h:
12141 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
12142
1d3823c9
GM
12143 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
12144
bfe3e0a2
PE
121452012-06-13 Paul Eggert <eggert@cs.ucla.edu>
12146
12147 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
12148 * alloc.c (make_number) [!defined make_number]:
12149 Remove, as lisp.h always defines this now.
12150 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
12151 (roundup_size): Verify that it is a power of 2.
12152 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
12153 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
12154 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
12155 -DUSE_LSB_TAG=0, to override the automatically-selected default.
12156 USE_LSB_TAG now is always defined to be either 0 or 1.
12157 All uses changed.
12158 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
12159 code works fine either way, and efficiency is not a concern here,
12160 as the union type is for debugging, not for production.
12161 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
12162 Use an inline function on all platforms when using the union type,
12163 since this is simpler and 'static inline' can be used portably
12164 within Emacs now.
12165 (LISP_INITIALLY_ZERO): New macro.
12166 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
12167 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
12168
45fa9c0f
GM
121692012-06-12 Glenn Morris <rgm@gnu.org>
12170
b4492cba
GM
12171 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
12172
12173 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
0d369729 12174
45fa9c0f
GM
12175 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
12176 Move BROKEN_SIGIO to configure.
12177
12178 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
12179 Move NO_TERMIO to configure.
12180
0e25d334
CY
121812012-06-12 Chong Yidong <cyd@gnu.org>
12182
12183 * image.c (imagemagick_load_image): Use MagickFlattenImage if
12184 MagickMergeImageLayers is undefined. Use pixel pusher loop if
12185 MagickExportImagePixels is undefined.
12186
43682bb6
PE
121872012-06-12 Paul Eggert <eggert@cs.ucla.edu>
12188
12189 * image.c (imagemagick_load_image): Remove unused label.
12190
a9be7d2b
GM
121912012-06-11 Glenn Morris <rgm@gnu.org>
12192
12193 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
12194 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
12195 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
12196 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
12197
3017f87f
SM
121982012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12199
12200 * alloc.c (make_byte_code): New function.
12201 (Fmake_byte_code): Use it. Don't purify here.
12202 * lread.c (read1): Use it as well to avoid extra allocation.
12203
1b9b4cf4
CY
122042012-06-11 Chong Yidong <cyd@gnu.org>
12205
12206 * image.c (imagemagick_load_image): Implement transparency.
12207
95988fcf
AS
122082012-06-10 Andreas Schwab <schwab@linux-m68k.org>
12209
12210 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
12211 account for preceding backslashes. (Bug#11663)
12212
cd4eb164
CY
122132012-06-09 Chong Yidong <cyd@gnu.org>
12214
12215 * term.c: Support italics in capable terminals (Bug#9652).
12216 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
12217 (turn_on_face): Output using TS_enter_italic_mode if available.
12218 Don't handle unused blinking and alt-charset cases.
12219 (turn_off_face): Handle italic case; discard unused tty_blinking_p
12220 and tty_alt_charset_p cases.
12221 (tty_capable_p, init_tty): Support italics.
12222
12223 * termchar.h (struct tty_display_info): Add field for italics.
12224 Remove unused blink field.
12225
12226 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
12227 Handle slant.
12228
12229 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
12230 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
12231 tty_alt_charset_p. Add tty_italic_p.
12232
ff88beb8
MA
122332012-06-09 Michael Albinus <michael.albinus@gmx.de>
12234
12235 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
12236 dbus_type_is_basic if available.
12237 (xd_extract_signed, xd_extract_unsigned): Rename from
12238 extract_signed and extract_unsigned, respectively. Adapt callers.
12239
44286096
CY
122402012-06-09 Chong Yidong <cyd@gnu.org>
12241
1682701f
CY
12242 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
12243
44286096
CY
12244 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
12245 case (Bug#9752).
12246
d86feb17
PE
122472012-06-08 Paul Eggert <eggert@cs.ucla.edu>
12248
12249 * xdisp.c (vmessage): Treat frame message as multibyte.
12250 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
12251 would generate the diagnostic "Making \302\247 buffer-local while
12252 let-bound!".
12253
d5c20fe8
EZ
122542012-06-08 Eli Zaretskii <eliz@gnu.org>
12255
12256 * dispnew.c (showing_window_margins_p): Undo last change, which
12257 was done due to an inadvertent commit.
12258 (adjust_frame_glyphs_for_frame_redisplay): Do call
12259 showing_window_margins_p.
12260
513749ee
SM
122612012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
12262
12263 * eval.c (Fmake_var_non_special): New primitive.
12264 (syms_of_eval): Defsubr it.
12265 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
12266
d4a8f5c1
JB
122672012-06-08 Juanma Barranquero <lekktu@gmail.com>
12268
12269 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
12270 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
12271
8bbbc977
EZ
122722012-06-08 Eli Zaretskii <eliz@gnu.org>
12273
12274 * alloc.c (allocate_vectorlike): Fix last change.
12275
f3372c87
DA
122762012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
12277
12278 Block-based vector allocation of small vectors.
12279 * lisp.h (struct vectorlike_header): New field `nbytes',
12280 adjust comment accordingly.
12281 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
fc0c31f8 12282 to denote vector blocks. Adjust users (live_vector_p,
f3372c87
DA
12283 mark_maybe_pointer, valid_lisp_object_p) accordingly.
12284 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
f4ad7ea1
JB
12285 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES)
12286 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX)
12287 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST)
f3372c87
DA
12288 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
12289 (roundup_size): New constant.
12290 (struct vector_block): New data type.
12291 (vector_blocks, vector_free_lists, zero_vector): New variables.
513749ee 12292 (all_vectors): Rename to `large_vectors'.
f3372c87
DA
12293 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
12294 (sweep_vectors): New functions.
12295 (allocate_vectorlike): Return `zero_vector' as the only vector of
fc0c31f8 12296 0 items. Allocate new vector from block if vector size is less than
f3372c87
DA
12297 or equal to VBLOCK_BYTES_MAX.
12298 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
12299 (init_alloc_once): Add call to init_vectors.
12300
4f18a4ed
SM
123012012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
12302
12303 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
12304
86f158bc
PE
123052012-06-07 Paul Eggert <eggert@cs.ucla.edu>
12306
12307 * doprnt.c (doprnt): Truncate multibyte char correctly.
12308 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
12309 would mishandle a string argument "Xc" if X was a multibyte
12310 character of length 2: it would truncate after X's first byte
12311 rather than including all of X.
12312
c5cfcbe0
CY
123132012-06-06 Chong Yidong <cyd@gnu.org>
12314
12315 * buffer.c (word_wrap): Doc fix.
12316
c05cf390
PE
123172012-06-04 Paul Eggert <eggert@cs.ucla.edu>
12318
12319 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
12320
0c3461de
GM
123212012-06-03 Glenn Morris <rgm@gnu.org>
12322
12323 * xdisp.c (tool-bar-style): Doc fix.
12324
c71232db
UM
123252012-06-03 Ulrich Müller <ulm@gentoo.org>
12326
12327 * Makefile.in (PAXCTL): Define.
12328 (temacs$(EXEEXT)): Disable memory randomization for the temacs
12329 binary via PaX flags if the paxctl utility is available.
12330 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
12331 Restore PaX flags to their default. (Bug#11398)
12332
383f7350
CY
123332012-06-03 Chong Yidong <cyd@gnu.org>
12334
12335 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
12336 buffer (Bug#11226).
12337
5f2c76c6
CY
123382012-06-03 Chong Yidong <cyd@gnu.org>
12339
12340 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
12341 (note_mode_line_or_margin_highlight): If there is no help echo,
12342 use mode-line-default-help-echo. Handle the case where the mouse
12343 position is past the end of the mode line string.
12344
12345 * buffer.c (buffer_local_value_1): New function, split from
12346 Fbuffer_local_value; can return Qunbound.
12347 (Fbuffer_local_value): Use it.
12348 (Vmode_line_format): Docstring tweaks.
12349
773d47f6
PE
123502012-06-02 Paul Eggert <eggert@cs.ucla.edu>
12351
12352 * sysdep.c (system_process_attributes): Improve comment.
12353
f2d6a3df
SM
123542012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12355
12356 * keyboard.c: Export real-this-command to Elisp.
12357 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
12358 and DEFVAR it. Update all users.
12359
63810350
PE
123602012-06-02 Paul Eggert <eggert@cs.ucla.edu>
12361
7bd5c1f4
PE
12362 * minibuf.c (Fassoc_string): Remove duplicate declaration.
12363
63810350
PE
12364 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
12365 Convert pctcpu and pctmem to Lisp float properly.
12366 Let the compiler fold better, as 100.0/0x8000 is exact.
12367
a2821611
AS
123682012-06-02 Andreas Schwab <schwab@linux-m68k.org>
12369
12370 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
12371 cons_block.
12372
5fceba1d
PE
123732012-06-01 Paul Eggert <eggert@cs.ucla.edu>
12374
12375 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
12376
c98ff5dd
DA
123772012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
12378
12379 For a 'struct window', replace some Lisp_Object fields to
12380 bitfields where appropriate, remove unused fields.
12381 * window.h (struct window): Remove unused 'last_mark_x' and
12382 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
1f9f395d 12383 change its type from Lisp_Object to bitfield.
c98ff5dd
DA
12384 Change type of 'force_start', 'optional_new_start',
12385 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
fc0c31f8 12386 fields from Lisp_Object to bitfield. Adjust users accordingly.
c98ff5dd 12387
ca34e0be
PE
123882012-05-31 Paul Eggert <eggert@cs.ucla.edu>
12389
12390 Pacify gcc -Wdouble-precision when using Xaw.
12391 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
12392 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
12393 Use 'float' consistently, rather than 'float' in most places
12394 and 'double' in a couple of places.
12395
efc00ab1 123962012-05-31 Eli Zaretskii <eliz@gnu.org>
d5fd2c54
EZ
12397
12398 * xdisp.c (handle_stop): Detect whether we have overlay strings
12399 loaded by testing it->current.overlay_string_index to be
12400 non-negative, instead of checking whether n_overlay_strings is
12401 positive. (Bug#11587)
12402
efc00ab1 124032012-05-31 Chong Yidong <cyd@gnu.org>
353c87f6
CY
12404
12405 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
12406
12407 * doc.c (Fsubstitute_command_keys): Doc fix.
12408
efc00ab1 124092012-05-31 Eli Zaretskii <eliz@gnu.org>
a02ae4e5
EZ
12410
12411 * search.c (search_buffer): Remove calls to
12412 r_alloc_inhibit_buffer_relocation, as it is now called by
12413 maybe_unify_char, which was the cause of relocation of buffer text
12414 in bug#11519.
12415
efc00ab1 124162012-05-31 Eli Zaretskii <eliz@gnu.org>
291d430f
EZ
12417
12418 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
12419 for the duration of call to load_charset, to avoid problems with
12420 callers of maybe_unify_char that access buffer text through C
12421 pointers.
12422
12423 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
12424 decrement the inhibition flag, instead of just setting or
12425 resetting it.
12426
ba93a187
PE
124272012-05-31 Paul Eggert <eggert@cs.ucla.edu>
12428
12429 Remove obsolete '#define static' cruft.
12430 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
12431 This #undef was "temporary" in 2000; it is no longer needed
12432 now that '#define static' has gone away.
12433 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
12434 (gray_bitmap_bits): Remove; no longer needed.
12435 All uses replaced with definiens.
12436 * xterm.c: Include "bitmaps/gray.xbm".
12437
9e4bf381
PE
124382012-05-30 Paul Eggert <eggert@cs.ucla.edu>
12439
12440 Clean up __executable_start, monstartup when --enable-profiling.
12441 The following changes affect the code only when profiling.
12442 * dispnew.c (__executable_start): Rename from safe_bcopy.
12443 Define only on platforms that need it.
12444 * emacs.c: Include <sys/gmon.h> when profiling.
12445 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
12446 (__executable_start): Remove decl, since lisp.h does it now.
12447 (safe_bcopy): Remove decl; no longer has that name.
12448 (main): Coalesce #if into single bit of code, for simplicity.
12449 Cast pointers to uintptr_t, since standard libraries want integers
12450 and not pointers.
12451 * lisp.h (__executable_start): New decl.
12452
32d72c2f
GM
124532012-05-31 Glenn Morris <rgm@gnu.org>
12454
12455 * image.c (Fimagemagick_types): Doc fix.
12456
baac5bc7
JM
124572012-05-30 Jim Meyering <meyering@redhat.com>
12458
12459 * callproc.c (Fcall_process_region): Include directory component
12460 in mkstemp error message (Bug#11586).
12461
72cb32cf
PE
124622012-05-30 Paul Eggert <eggert@cs.ucla.edu>
12463
12464 * alloc.c, lisp.h (make_pure_vector): Now static.
12465
61b108cc
SM
124662012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12467
12468 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
12469 Move to byte-run.el.
12470 (Fautoload): Do the hash-doc more carefully.
12471 * data.c (Fdefalias): Purify definition, except for keymaps.
12472 (Qdefun): Move from eval.c.
12473 * lisp.h (Qdefun): Remove.
12474 * lread.c (read1): Tiny simplification.
12475
471fe23d
TN
124762012-05-29 Troels Nielsen <bn.troels@gmail.com>
12477
934f3f58 12478 Do not create empty overlays with the evaporate property (Bug#9642).
471fe23d
TN
12479 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
12480 Bug#9642, but explicitly check that the buffer the overlay would
12481 be moved to is live and rearrange lines to make sure that errors
12482 will not put the overlay in an inconsistent state.
12483 (Fdelete_overlay): Cosmetics.
12484
85d0efd1
EZ
124852012-05-28 Eli Zaretskii <eliz@gnu.org>
12486
12487 * w32term.c (my_bring_window_to_top): New function.
12488 (x_raise_frame): Use handle returned by DeferWindowPos, which
61b108cc
SM
12489 could be different from the original one.
12490 Call my_bring_window_to_top instead of my_set_foreground_window.
85d0efd1
EZ
12491 (Bug#11513)
12492
12493 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
12494 by calling BringWindowToTop.
12495
12496 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
12497 (WM_EMACS_END): Increase by one.
12498
da92a98c
PE
124992012-05-28 Paul Eggert <eggert@cs.ucla.edu>
12500
12501 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
12502 This avoids undefined behavior that might cause the eassert
12503 to not catch an out-of-range value.
12504
74d1f848
JB
125052012-05-28 Juanma Barranquero <lekktu@gmail.com>
12506
12507 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
12508 Update dependencies.
12509
9e1a06fc
EZ
125102012-05-27 Eli Zaretskii <eliz@gnu.org>
12511
12512 * bidi.c (bidi_mirror_char): Fix last change.
12513
f3dd7312
AS
125142012-05-27 Andreas Schwab <schwab@linux-m68k.org>
12515
12516 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
12517 when referring to sectname field in printf format.
12518
81899c91
PE
125192012-05-27 Paul Eggert <eggert@cs.ucla.edu>
12520
57b81a9f
PE
12521 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
12522 Only r_alloc_inhibit_buffer_relocation needed to be added;
12523 the others were already declared.
12524
81899c91
PE
12525 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
12526 before checking whether it's out of range. Put the check inside
12527 eassert. See
12528 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
12529
33017faf 125302012-05-27 Ken Brown <kbrown@cornell.edu>
2f9b9adb
KB
12531
12532 * callproc.c (Fcall_process): Restore a line that was accidentally
12533 commented out in the 2011-02-13 change (bug#11547).
12534
33017faf 125352012-05-27 Eli Zaretskii <eliz@gnu.org>
52c55cc7
EZ
12536
12537 * lisp.h [REL_ALLOC]: Add prototypes for external functions
12538 defined on ralloc.c.
12539
12540 * buffer.c [REL_ALLOC]: Remove prototypes of
12541 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
12542 they are now on lisp.h.
12543
12544 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
12545
12546 * search.c (search_buffer): Use it to inhibit relocation of buffer
12547 text while re_search_2 is doing its job, because re_search_2 is
12548 passed C pointers to buffer text. (Bug#11519)
12549
23415acf
EZ
12550 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
12551 Update value to 24.
12552
44e27368
EZ
12553 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
12554 state after an additional call to move_it_in_display_line_to, keep
12555 the values of it->max_ascent and it->max_descent found for the
12556 entire line.
12557 (pos_visible_p): Revert the comparison against bottom_y to what it
12558 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
12559 (Bug#11464)
12560
c1892f11
PE
125612012-05-26 Paul Eggert <eggert@cs.ucla.edu>
12562
12563 Fix coding-related core dumps with gcc -ftrapv.
12564 The code was computing A - B, where A and B are pointers, and B is
12565 random garbage. This can lead to core dumps on platforms that
12566 have special pointer registers, and it also leads to core dumps on
12567 x86-64 when compiled with gcc -ftrapv. The fix is to compute
12568 A - B only when B is initialized properly.
12569 * coding.c (coding_set_source, coding_set_destination): Return void.
12570 (coding_change_source, coding_change_destinations): New functions,
12571 with the old behaviors of coding_set_source and coding_set_destination.
12572 All callers that need an offset changed to use these new functions.
12573
eb7afdad
GM
125742012-05-26 Glenn Morris <rgm@gnu.org>
12575
12576 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
12577
f12fdf02
EZ
125782012-05-26 Eli Zaretskii <eliz@gnu.org>
12579
53a63be6 12580 Extend mouse support on W32 text-mode console.
61b108cc
SM
12581 * xdisp.c (draw_row_with_mouse_face):
12582 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
eb3f6f01 12583
eb3f6f01 12584 * w32console.c: Include window.h.
61b108cc
SM
12585 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
12586 New functions.
eb3f6f01
EZ
12587 (initialize_w32_display): Initialize mouse-highlight data.
12588
53a63be6
EZ
12589 * w32inevt.c: Include termchar.h and window.h.
12590 (do_mouse_event): Support mouse-autoselect-window. When the mouse
12591 moves, call note_mouse_highlight. If help_echo changed, call
12592 gen_help_event to produce help-echo message in the echo area.
12593 Call clear_mouse_face if mouse_face_hidden is set in the mouse
12594 highlight info.
12595
4cfd81f6
PE
125962012-05-26 Paul Eggert <eggert@cs.ucla.edu>
12597
12598 * lread.c (read1): Simplify slightly to avoid an overflow warning
12599 with GCC 4.7.0 on x86-64.
12600
4446092a
EZ
126012012-05-26 Eli Zaretskii <eliz@gnu.org>
12602
12603 * bidi.c (bidi_mirror_char): Revert last change: an int is
12604 definitely wide enough here.
12605
42b2a986 126062012-05-25 Paul Eggert <eggert@cs.ucla.edu>
3164aeac 12607
42b2a986 12608 Fix integer width and related bugs (Bug#9874).
eb106a49 12609 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
d311d28c
PE
12610 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
12611 (string_bytes, check_sblock, allocate_string_data):
12612 (compact_small_strings, Fmake_bool_vector, make_string)
12613 (make_unibyte_string, make_multibyte_string)
12614 (make_string_from_bytes, make_specified_string)
12615 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
12616 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
12617 (mark_vectorlike):
12618 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12619 (allocate_pseudovector):
12620 Use int, not EMACS_INT, where int is wide enough.
12621 (inhibit_garbage_collection, Fgarbage_collect):
12622 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12623 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
12624 int might not be wide enough.
12625 (bidi_cache_search, bidi_cache_find, bidi_init_it)
12626 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
12627 (bidi_at_paragraph_end, bidi_find_paragraph_start)
12628 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
12629 (bidi_level_of_next_char, bidi_move_to_visually_next):
12630 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12631 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
12632 (Fkill_buffer, Fset_buffer_major_mode)
12633 (advance_to_char_boundary, Fbuffer_swap_text)
12634 (Fset_buffer_multibyte, overlays_at, overlays_in)
12635 (overlay_touches_p, struct sortvec, record_overlay_string)
12636 (overlay_strings, recenter_overlay_lists)
12637 (adjust_overlays_for_insert, adjust_overlays_for_delete)
12638 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
12639 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
12640 (Foverlay_recenter, last_overlay_modification_hooks_used)
12641 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
12642 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
977b0e45
PE
12643 (validate_region): Omit unnecessary test for b <= e,
12644 since that's guaranteed by the previous test.
d311d28c
PE
12645 (adjust_overlays_for_delete): Avoid pos + length overflow.
12646 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
12647 (report_overlay_modification):
12648 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12649 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
12650 Omit pointer cast, which isn't needed anyway, and doesn't work
12651 after the EMACS_INT -> ptrdiff_t change.
02481186 12652 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
d311d28c
PE
12653 * buffer.h: Adjust decls to match defn changes elsewhere.
12654 (struct buffer_text, struct buffer):
12655 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12656 Use EMACS_INT, not int, where int might not be wide enough.
39b5db3b
PE
12657 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
12658 not int, to avoid needless 32-bit limit on 64-bit hosts.
12659 (exec_byte_code): Use tighter memory-full test, one that checks
12660 for alloca overflow. Don't compute the address of the object just
12661 before an array, as that's not portable. Use EMACS_INT, not
12662 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
d311d28c
PE
12663 * callint.c (Fcall_interactively):
12664 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12665 * callproc.c (call_process_kill, Fcall_process):
12666 Don't assume pid_t fits into an Emacs fixnum.
12667 (call_process_cleanup, Fcall_process, child_setup):
12668 Don't assume pid_t fits into int.
12669 (call_process_cleanup, Fcall_process, delete_temp_file)
12670 (Fcall_process_region):
12671 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12672 (Fcall_process): Simplify handling of volatile integers.
12673 Use int, not EMACS_INT, where int will do.
12674 * casefiddle.c (casify_object, casify_region, operate_on_word)
12675 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
12676 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12677 (casify_object): Avoid integer overflow when overallocating buffer.
12678 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
45c2afd6 12679 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
d311d28c
PE
12680 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
12681 * category.h (CATEGORYP): Don't assume arg is nonnegative.
12682 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
12683 integers are now checked earlier. All uses replaced with XINT.
12684 (ccl_driver):
12685 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12686 For CCL_MapSingle, check that content and value are in int range.
c801946a
PE
12687 (ccl_driver, Fregister_code_conversion_map):
12688 Check that Vcode_version_map_vector is a vector.
d311d28c
PE
12689 (resolve_symbol_ccl_program): Check that vector header is in range.
12690 Always copy the vector, so that we can check its contents reliably
12691 now rather than having to recheck each instruction as it's being
12692 executed. Check that vector words fit in 'int'.
12693 (ccl_get_compiled_code, Fregister_ccl_program)
12694 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
12695 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
12696 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
12697 contents are in range.
12698 (Fccl_execute_on_string): Check that status is in range.
12699 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
12700 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
12701 Accept and return EMACS_INT, not int, because callers can pass values
12702 out of 'int' range.
12703 (c_string_width, strwidth, lisp_string_width, chars_in_text)
12704 (multibyte_chars_in_text, parse_str_as_multibyte)
12705 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
12706 (str_as_unibyte, str_to_unibyte, string_count_byte8)
12707 (string_escape_byte8, Fget_byte):
12708 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
a14e1568 12709 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
d311d28c
PE
12710 avoid mishandling large integers.
12711 * character.h: Adjust decls to match defn changes elsewhere.
12712 * charset.c (load_charset_map_from_file, find_charsets_in_text)
12713 (Ffind_charset_region):
12714 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12715 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
12716 (load_charset_map_from_vector, Fdefine_charset_internal):
3c7649c1 12717 Don't assume fixnum fits in int.
d311d28c
PE
12718 (load_charset_map_from_vector, Fmap_charset_chars):
12719 Remove now-unnecessary CHECK_NATNUMs.
12720 (Fdefine_charset_internal): Check ranges here, more carefully.
3c7649c1
PE
12721 Don't rely on undefined behavior with signed left shift overflow.
12722 Don't assume unsigned int fits into fixnum, or that fixnum fits
12723 into unsigned int. Don't require max_code to be a valid fixnum;
12724 that's not true for gb10830 4-byte on a 32-bit host. Allow
12725 invalid_code to be a cons, for the same reason. Require code_offset
12726 to be a character. Avoid int overflow if max_char is close
12727 to INT_MAX.
12728 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
12729 this is intended anyway and avoids some undefined behavior.
12730 (load_charset_map): Pass unsigned, not int, as 2nd arg of
12731 INDEX_TO_CODE_POINT, as that's what it expects.
12732 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
60ad3eab
PE
12733 * charset.h (DECODE_CHAR): Return int, not unsigned;
12734 this is what was intended anyway, and it avoids undefined behavior.
12735 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
12736 integer-overflow issues.
12737 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
12738 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
12739 where the argument is EMACS_INT, and this behavior is not intended.
d311d28c
PE
12740 * chartab.c (Fmake_char_table, Fset_char_table_range)
12741 (uniprop_get_decoder, uniprop_get_encoder):
12742 Don't assume fixnum fits in int.
12743 * cmds.c (move_point): New function, that does the gist of
12744 Fforward_char and Fbackward_char, but does so while checking
12745 for integer overflow more accurately.
c96e5d6a 12746 (Fforward_char, Fbackward_char): Use it.
d311d28c
PE
12747 (Fforward_line, Fend_of_line, internal_self_insert)
12748 (internal_self_insert):
12749 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12750 Fix a FIXME, by checking for integer overflow when calculating
12751 target_clm and actual_clm.
12752 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
8f50130c 12753 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
d311d28c
PE
12754 (ASSURE_DESTINATION, coding_alloc_by_realloc)
12755 (coding_alloc_by_making_gap, alloc_destination)
12756 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
12757 (encode_coding_utf_16, detect_coding_emacs_mule)
12758 (decode_coding_emacs_mule, encode_coding_emacs_mule)
12759 (detect_coding_iso_2022, decode_coding_iso_2022)
12760 (encode_invocation_designation, encode_designation_at_bol)
12761 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
12762 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
12763 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
12764 (encode_coding_ccl, encode_coding_raw_text)
12765 (detect_coding_charset, decode_coding_charset)
12766 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
12767 (produce_composition, produce_charset, produce_annotation)
12768 (decode_coding, handle_composition_annotation)
12769 (handle_charset_annotation, consume_chars, decode_coding_gap)
12770 (decode_coding_object, encode_coding_object, detect_coding_system)
12771 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
12772 (code_convert_region, code_convert_string)
8f50130c
PE
12773 (Fdefine_coding_system_internal)
12774 (coding_set_source, coding_set_destination):
d311d28c
PE
12775 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12776 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
12777 (Fdefine_coding_system_internal):
12778 Don't assume fixnums fit in int.
12779 (decode_coding_gap, decode_coding_object, encode_coding_object)
5895d7b9 12780 (Fread_coding_system, Fdetect_coding_region)
2c6a9faa
PE
12781 (Funencodable_char_position, Fcheck_coding_systems_region)
12782 (get_translation, handle_composition_annotation, consume_chars):
d311d28c 12783 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
977b0e45 12784 (consume_chars): Rewrite to not calculate an address outside buffer.
d311d28c 12785 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
7b09a37a 12786 Don't access memory outside of the args array.
d311d28c 12787 (Fdefine_coding_system_internal): Check for charset-id overflow.
47664caa
PE
12788 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
12789 result of ENCODE_CHAR.
d311d28c
PE
12790 * coding.h: Adjust decls to match defn changes elsewhere.
12791 (struct coding_system):
12792 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12793 * composite.c (get_composition_id, find_composition)
12794 (run_composition_function, update_compositions)
12795 (compose_text, composition_gstring_put_cache)
12796 (composition_gstring_p, composition_gstring_width)
12797 (fill_gstring_header, fill_gstring_body, autocmp_chars)
12798 (composition_compute_stop_pos, composition_reseat_it)
12799 (composition_update_it, struct position_record)
12800 (find_automatic_composition, composition_adjust_point)
12801 (Fcomposition_get_gstring, Ffind_composition_internal):
12802 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12803 (update_compositions):
12804 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12805 * composite.h: Adjust decls to match defn changes elsewhere.
12806 (struct composition):
12807 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12808 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
12809 Do not attempt to compute the address of the object just before a
12810 buffer; this is not portable.
12811 (Faref, Faset):
12812 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12813 (Faset): Use int, not EMACS_INT, where int is wide enough.
12814 (Fstring_to_number): Don't assume fixnums fit in int.
12815 (Frem): Don't assume arg is nonnegative.
12816 * dbusbind.c (xd_append_arg): Check for integers out of range.
12817 (Fdbus_call_method): Don't overflow the timeout int.
42b2a986 12818 (extract_signed, extract_unsigned): New functions.
243e0530
PE
12819 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
12820 (xd_get_connection_references): Return ptrdiff_t, not int.
12821 All uses changed.
12822 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
12823 (xd_read_message_1):
12824 Use int, not unsigned, where the dbus API uses int.
12825 (Fdbus_message_internal): Don't overflow mtype.
12826 (syms_of_dbusbind): Allocate right-sized buffer for integers.
d311d28c
PE
12827 * dired.c (directory_files_internal, file_name_completion, scmp)
12828 (file_name_completion_stat):
12829 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12830 (file_name_completion): Don't overflow matchcount.
12831 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
12832 * dispextern.h: Adjust decls to match defn changes elsewhere.
12833 (struct text_pos, struct glyph, struct bidi_saved_info)
12834 (struct bidi_string_data, struct bidi_it, struct composition_it)
12835 (struct it):
12836 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12837 (struct display_pos, struct composition_it, struct it):
12838 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12839 * dispnew.c (increment_matrix_positions)
12840 (increment_row_positions, mode_line_string)
12841 (marginal_area_string):
12842 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
54e1617f 12843 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
d311d28c
PE
12844 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12845 (duration_to_sec_usec): New function, to check for overflow better.
12846 (Fsleep_for, sit_for): Use it.
12847 * doc.c (get_doc_string, store_function_docstring):
12848 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12849 (get_doc_string, Fsnarf_documentation):
12850 Use int, not EMACS_INT, where int is wide enough.
12851 (get_doc_string):
12852 Use SAFE_ALLOCA, not alloca.
12853 Check for overflow when converting EMACS_INT to off_t.
12854 * doprnt.c (doprnt):
12855 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12856 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
12857 Don't assume uid_t fits into fixnum.
12858 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
12859 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
12860 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
12861 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
12862 (general_insert_function)
12863 (Finsert_char, make_buffer_string, make_buffer_string_both)
12864 (update_buffer_properties, Fbuffer_substring)
12865 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
12866 (Fsubst_char_in_region, check_translation)
12867 (Ftranslate_region_internal, save_restriction_restore, Fformat)
12868 (transpose_markers, Ftranspose_regions):
12869 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12870 (clip_to_bounds): Move to lisp.h as an inline function).
12871 (Fconstrain_to_field): Don't assume integers are nonnegative.
12872 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
12873 (Fsubst_char_in_region, Fsave_restriction):
12874 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12875 (Femacs_pid): Don't assume pid_t fits into fixnum.
12876 (lo_time): Use int, not EMACS_INT, when int suffices.
12877 (lisp_time_argument): Check for usec out of range.
12878 (Fencode_time): Don't assume fixnum fits in int.
3f4eabd1
PE
12879 (Fuser_login_name, Fuser_full_name): Signal an error
12880 if a uid argument is out of range, rather than relying on
12881 undefined behavior.
c8d5c857
PE
12882 (Fformat_time_string): Remove now-unnecessary check.
12883 lisp_time_argument checks for out-of-range usec now.
243e0530 12884 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
d311d28c
PE
12885 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
12886 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
12887 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
12888 (init_cmdargs, Fdump_emacs):
12889 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12890 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
12891 the bottom (typically) 32 bits of the fixnum.
12892 * eval.c (specpdl_size, call_debugger):
12893 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12894 (when_entered_debugger, Fbacktrace_debug):
12895 Don't assume fixnum can fit in int.
12896 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
12897 the object just before a buffer; this is not portable.
12898 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
12899 (grow_specpdl, unbind_to):
12900 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12901 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
12902 (grow_specpdl): Simplify allocation by using xpalloc.
856bbc81 12903 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
d311d28c
PE
12904 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
12905 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
12906 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12907 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
12908 (a_write, e_write):
12909 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12910 (Fcopy_file, non_regular_nbytes, read_non_regular)
12911 (Finsert_file_contents):
12912 Use int, not EMACS_INT, where int is wide enough.
12913 (READ_BUF_SIZE): Verify that it fits in int.
12914 (Finsert_file_contents): Check that counts are in proper range,
12915 rather than assuming fixnums fit into ptrdiff_t etc.
12916 Don't assume fixnums fit into int.
125b3835 12917 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
5895d7b9
PE
12918 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
12919 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
d311d28c
PE
12920 (string_char_to_byte, string_byte_to_char)
12921 (string_make_multibyte, string_to_multibyte)
12922 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
12923 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
12924 (substring_both, Fdelete, internal_equal, Ffillarray)
12925 (Fclear_string, mapcar1)
12926 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
12927 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
12928 (larger_vector, make_hash_table, maybe_resize_hash_table)
12929 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
12930 (Fmaphash, secure_hash):
12931 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12932 (concat): Check for string index and length overflow.
12933 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
12934 (Frequire):
12935 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12936 (larger_vector): New API (vec, incr_min, size_max) replaces old
12937 one (vec, new_size, init). This catches size overflow.
12938 INIT was removed because it was always Qnil.
12939 All callers changed.
12940 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
12941 the upper bound on a hash table index size.
12942 (make_hash_table, maybe_resize_hash_table): Use it.
12943 (secure_hash): Computer start_byte and end_byte only after
12944 they're known to be in ptrdiff_t range.
12945 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
12946 (Ffont_get_glyphs, Ffont_at):
12947 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12948 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
12949 (Flist_fonts, Fopen_font):
12950 Don't assume fixnum can fit in int.
12951 (check_gstring): Don't assume index can fit in int.
12952 (font_match_p): Check that fixnum is a character, not a nonnegative
12953 fixnum, since the later code needs to stuff it into an int.
12954 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
12955 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
12956 conversion overflow issues.
12957 (Fopen_font): Check for integer out of range.
12958 (Ffont_get_glyphs): Don't assume index can fit in int.
12959 * font.h: Adjust decls to match defn changes elsewhere.
12960 * fontset.c (reorder_font_vector): Redo score calculation to avoid
12961 integer overflow.
12962 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
12963 printmax_t, where ptrdiff_t is wide enough.
12964 (Finternal_char_font):
12965 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12966 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
12967 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
12968 (Fset_frame_position, x_set_frame_parameters)
12969 (x_set_line_spacing, x_set_border_width)
12970 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
12971 Check that fixnums are in proper range for system types.
12972 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
12973 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12974 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
12975 Use SAFE_ALLOCA_LISP, not alloca.
12976 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
12977 intptr_t is wide enough.
12978 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
12979 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
12980 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
12981 Check for fixnum out of range.
12982 * ftfont.c (ftfont_list): Don't assume index fits in int.
12983 Check that fixnums are in proper range for system types.
12984 (ftfont_shape_by_flt):
12985 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
d311d28c
PE
12986 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
12987 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12988 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
12989 Check that fixnums are in proper range for system types.
12990 * gnutls.h: Adjust decls to match defn changes elsewhere.
12991 * gtkutil.c (xg_dialog_run):
12992 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12993 (update_frame_tool_bar):
12994 Check that fixnums are in proper range for system types.
12995 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
5895d7b9 12996 (lookup_image): Check that fixnums are in range for system types.
d311d28c
PE
12997 * indent.c (last_known_column, last_known_column_point):
12998 (current_column_bol_cache):
12999 (skip_invisible, current_column, check_display_width):
13000 (check_display_width, scan_for_column, current_column_1)
13001 (Findent_to, Fcurrent_indentation, position_indentation)
13002 (indented_beyond_p, Fmove_to_column, compute_motion):
13003 (Fcompute_motion, Fvertical_motion):
13004 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13005 (last_known_column_modified): Use EMACS_INT, not int.
13006 (check_display_width):
13007 (Fcompute_motion):
13008 Check that fixnums and floats are in proper range for system types.
13009 (compute_motion): Don't assume index or fixnum fits in int.
13010 (compute_motion, Fcompute_motion):
13011 Use int, not EMACS_INT, when it is wide enough.
13012 (vmotion): Omit local var start_hpos that is always 0; that way
13013 we don't need to worry about overflow in expressions involving it.
13014 * indent.h: Adjust decls to match defn changes elsewhere.
13015 (struct position):
13016 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13017 Use int, not EMACS_INT, where int is wide enough.
13018 Remove unused members ovstring_chars_done and tab_offset;
13019 all uses removed.
13020 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
13021 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
13022 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
13023 (make_gap, copy_text, insert, insert_and_inherit)
13024 (insert_before_markers, insert_before_markers_and_inherit)
13025 (insert_1, count_combining_before, count_combining_after)
13026 (insert_1_both, insert_from_string)
13027 (insert_from_string_before_markers, insert_from_string_1)
13028 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
13029 (adjust_after_replace, adjust_after_insert, replace_range)
13030 (replace_range_2, del_range, del_range_1, del_range_byte)
13031 (del_range_both, del_range_2, modify_region)
13032 (prepare_to_modify_buffer, signal_before_change)
13033 (signal_after_change, Fcombine_after_change_execute):
13034 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13035 * intervals.c (traverse_intervals, rotate_right, rotate_left)
13036 (balance_an_interval, split_interval_right, split_interval_left)
13037 (find_interval, next_interval, update_interval)
13038 (adjust_intervals_for_insertion, delete_node, delete_interval)
13039 (interval_deletion_adjustment, adjust_intervals_for_deletion)
13040 (static_offset_intervals, offset_intervals)
13041 (merge_interval_right, merge_interval_left, make_new_interval)
13042 (graft_intervals_into_buffer, temp_set_point_both)
13043 (temp_set_point, set_point, adjust_for_invis_intang)
13044 (set_point_both, move_if_not_intangible, get_property_and_range)
13045 (get_local_map, copy_intervals, copy_intervals_to_string)
13046 (compare_string_intervals, set_intervals_multibyte_1):
13047 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13048 * intervals.h: Adjust decls to match defn changes elsewhere.
13049 (struct interval):
13050 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13051 * keyboard.c (this_command_key_count, this_single_command_key_start)
13052 (before_command_key_count, before_command_echo_length, echo_now)
13053 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
13054 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
13055 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
13056 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
13057 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13058 (last_non_minibuf_size, last_point_position, echo_truncate)
13059 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
13060 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
13061 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
13062 (stuff_buffered_input):
13063 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13064 (last_auto_save, command_loop_1, read_char):
13065 Use EMACS_INT, not int, to avoid integer overflow.
13066 (record_char): Avoid overflow in total_keys computation.
13067 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
13068 * keyboard.h: Adjust decls to match defn changes elsewhere.
13069 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
13070 (Fkey_description, Fdescribe_vector, Flookup_key):
13071 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13072 (click_position): New function, to check that positions are in range.
13073 (Fcurrent_active_maps):
13074 (describe_command):
13075 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13076 (Faccessible_keymaps, Fkey_description):
13077 (preferred_sequence_p):
13078 Don't assume fixnum can fit into int.
13079 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
13080 Check for integer overflow in size calculations.
13081 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
13082 avoid mishandling large integers.
13083 * lisp.h: Adjust decls to match defn changes elsewhere.
13084 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
13085 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
13086 (struct Lisp_Marker):
13087 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13088 (clip_to_bounds): Now an inline function, moved here from editfns.c.
d311d28c
PE
13089 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
13090 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
13091 All callers changed.
13092 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
13093 Assume the arg has valid form, since it always does.
13094 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
13095 unsigned integer system type.
13096 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
13097 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
13098 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13099 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
13100 (duration_to_sec_usec): New decl.
13101 * lread.c (read_from_string_index, read_from_string_index_byte)
13102 (read_from_string_limit, readchar, unreadchar, openp)
13103 (read_internal_start, read1, oblookup):
13104 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13105 (Fload, readevalloop, Feval_buffer, Feval_region):
13106 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13107 (openp): Check for out-of-range argument to 'access'.
13108 (read1): Use int, not EMACS_INT, where int is wide enough.
13109 Don't assume fixnum fits into int.
6efdadfd 13110 Fix off-by-one error that can read outside a buffer.
1ab7b8ac
PE
13111 (read_filtered_event): Use duration_to_sec_usec
13112 to do proper overflow checking on durations.
d311d28c
PE
13113 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
13114 in size calculation.
13115 (Fexecute_kbd_macro):
13116 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13117 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
13118 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
13119 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
13120 (set_marker_both, set_marker_restricted_both, marker_position)
13121 (marker_byte_position, Fbuffer_has_markers_at):
13122 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13123 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
61b108cc 13124 * menu.c (ensure_menu_items): Rename from grow_menu_items.
d311d28c
PE
13125 It now merely ensures that the menu is large enough, without
13126 necessarily growing it, as this avoids some integer overflow issues.
13127 All callers changed.
13128 (keymap_panes, parse_single_submenu, Fx_popup_menu):
13129 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13130 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
13131 Use SAFE_ALLOCA_LISP, not alloca.
13132 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
13133 to EMACS_INT. Check that fixnums are in proper range for system types.
13134 * minibuf.c (minibuf_prompt_width, string_to_object)
13135 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
13136 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
13137 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13138 (get_minibuffer, read_minibuf_unwind):
13139 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13140 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
13141 this simplifies overflow checking. All callers changed.
13142 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
13143 (Ftest_completion):
13144 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13145 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
13146 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
13147 Check that fixnums are in proper range for system types.
13148 (Fx_create_frame, Fx_show_tip):
13149 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13150 * nsfont.m (ns_findfonts, nsfont_list_family):
13151 Don't assume fixnum fits in long.
13152 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
13153 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13154 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
13155 wide enough.
17fdb222 13156 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
d311d28c
PE
13157 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13158 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
13159 (PRINTDECLARE, PRINTPREPARE):
13160 (strout, print_string):
13161 (print, print_preprocess, print_check_string_charset_prop)
13162 (print_object):
13163 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13164 (PRINTDECLARE):
13165 (temp_output_buffer_setup, Fprin1_to_string, print_object):
13166 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13167 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
d311d28c 13168 (printchar, strout): Use xpalloc to catch size calculation overflow.
0fd11aa5 13169 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
d311d28c
PE
13170 (print_error_message): Use SAFE_ALLOCA, not alloca.
13171 (print_object): Use int, not EMACS_INT, where int is wide enough.
a8b7caa3
PE
13172 (print_depth, new_backquote_output, print_number_index):
13173 Use ptrdiff_t, not int, where int might not be wide enough.
d311d28c
PE
13174 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
13175 (Fset_process_window_size, Fformat_network_address)
13176 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
d44287d4 13177 (sigchld_handler):
d311d28c 13178 Check that fixnums are in proper range for system types.
d44287d4 13179 (Fsignal_process): Simplify by avoiding a goto.
d83cf4cc
PE
13180 Check for process-ids out of pid_t range rather than relying on
13181 undefined behavior.
e4d81efc 13182 (process_tick, update_tick): Use EMACS_INT, not int.
d311d28c
PE
13183 (Fformat_network_address, read_process_output, send_process)
13184 (Fprocess_send_region, status_notify):
13185 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13186 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
13187 (wait_reading_process_output, read_process_output, exec_sentinel):
13188 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13189 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
13190 (Faccept_process_output): Use duration_to_sec_usec to do proper
13191 overflow checking on durations.
dde14581
PE
13192 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
13193 Don't assume pid_t fits in int.
02481186
PE
13194 * process.h (struct Lisp_Process): Members tick and update_tick
13195 are now of type EMACS_INT, not int.
b62b53e8
PE
13196 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
13197 configured --with-wide-int.
d311d28c
PE
13198 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
13199 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
13200 * search.c (looking_at_1, string_match_1):
13201 (fast_string_match, fast_c_string_match_ignore_case)
13202 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
13203 (scan_newline, find_before_next_newline, search_command)
13204 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
13205 (set_search_regs, wordify):
13206 (Freplace_match):
13207 (Fmatch_data):
13208 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13209 (string_match_1, search_buffer, set_search_regs):
13210 (Fmatch_data):
13211 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13212 (wordify): Check for overflow in size calculation.
13213 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
13214 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
13215 Check that fixnums are in proper range for system types.
13216 * sound.c (struct sound_device)
13217 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
13218 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13219 (Fplay_sound_internal):
13220 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
eacd378d 13221 * syntax.c (struct lisp_parse_state, find_start_modiff)
d311d28c
PE
13222 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
13223 (Fparse_partial_sexp):
13224 Don't assume fixnums can fit in int.
13225 (struct lisp_parse_state, find_start_pos, find_start_value)
13226 (find_start_value_byte, find_start_begv)
13227 (update_syntax_table, char_quoted, dec_bytepos)
13228 (find_defun_start, prev_char_comend_first, back_comment):
13229 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
13230 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
13231 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13232 (Finternal_describe_syntax_value): Check that match_lisp is a
13233 character, not an integer, since the code stuffs it into int.
13234 (scan_words, scan_sexps_forward):
13235 Check that fixnums are in proper range for system types.
13236 (Fforward_word):
13237 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13238 (scan_sexps_forward):
13239 Use CHARACTERP, not INTEGERP, since the value must fit into int.
13240 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
13241 * syntax.h: Adjust decls to match defn changes elsewhere.
13242 (struct gl_state_s):
13243 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
e4ecdc9c
PE
13244 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
13245 MOST_POSITIVE_FIXNUM.
d311d28c
PE
13246 * sysdep.c (wait_for_termination_1, wait_for_termination)
13247 (interruptible_wait_for_termination, mkdir):
13248 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
13249 (emacs_read, emacs_write):
13250 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
225a2cff
PE
13251 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
13252 and double all fit in int.
d311d28c
PE
13253 * term.c (set_tty_color_mode):
13254 Check that fixnums are in proper range for system types.
13255 * termhooks.h (struct input_event):
13256 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13257 * textprop.c (validate_interval_range, interval_of)
13258 (Fadd_text_properties, set_text_properties_1)
13259 (Fremove_text_properties, Fremove_list_of_text_properties)
13260 (Ftext_property_any, Ftext_property_not_all)
13261 (copy_text_properties, text_property_list, extend_property_ranges)
13262 (verify_interval_modification):
13263 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13264 (Fnext_single_char_property_change)
13265 (Fprevious_single_char_property_change):
13266 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5895d7b9
PE
13267 (copy_text_properties):
13268 Check for integer overflow in index calculation.
d311d28c
PE
13269 * undo.c (last_boundary_position, record_point, record_insert)
13270 (record_delete, record_marker_adjustment, record_change)
13271 (record_property_change):
13272 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13273 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
13274 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13275 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
13276 (Fx_hide_tip, Fx_file_dialog):
13277 * w32menu.c (set_frame_menubar):
13278 Use ptrdiff_t, not int, for consistency with rest of code.
13279 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
13280 (select_window, Fdelete_other_windows_internal)
13281 (window_scroll_pixel_based, window_scroll_line_based)
13282 (Frecenter, Fset_window_configuration):
13283 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13284 (Fset_window_hscroll, run_window_configuration_change_hook)
13285 (set_window_buffer, temp_output_buffer_show, scroll_command)
5895d7b9 13286 (Fscroll_other_window, Frecenter):
d311d28c
PE
13287 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13288 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
13289 Don't assume fixnum fits in int.
13290 (Fset_window_scroll_bars):
13291 Check that fixnums are in proper range for system types.
13292 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
13293 (string_pos, c_string_pos, number_of_chars, init_iterator)
13294 (in_ellipses_for_invisible_text_p, init_from_display_pos)
13295 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
13296 (compute_display_string_end, handle_face_prop)
5895d7b9
PE
13297 (face_before_or_after_it_pos, handle_invisible_prop)
13298 (handle_display_prop, handle_display_spec, handle_single_display_spec)
d311d28c
PE
13299 (display_prop_intangible_p, string_buffer_position_lim)
13300 (string_buffer_position, handle_composition_prop, load_overlay_strings)
13301 (get_overlay_strings_1, get_overlay_strings)
13302 (iterate_out_of_display_property, forward_to_next_line_start)
13303 (back_to_previous_visible_line_start, reseat, reseat_to_string)
13304 (get_next_display_element, set_iterator_to_next)
13305 (get_visually_first_element, compute_stop_pos_backwards)
13306 (handle_stop_backwards, next_element_from_buffer)
13307 (move_it_in_display_line_to, move_it_in_display_line)
13308 (move_it_to, move_it_vertically_backward, move_it_by_lines)
13309 (add_to_log, message_dolog, message_log_check_duplicate)
13310 (message2, message2_nolog, message3, message3_nolog
13311 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
13312 (current_message_1, truncate_echo_area, truncate_message_1)
13313 (set_message, set_message_1, store_mode_line_noprop)
13314 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
13315 (text_outside_line_unchanged_p, check_point_in_composition)
13316 (reconsider_clip_changes)
13317 (redisplay_internal, set_cursor_from_row, try_scrolling)
13318 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
13319 (redisplay_window, find_last_unchanged_at_beg_row)
13320 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
13321 (trailing_whitespace_p, find_row_edges, display_line)
13322 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
13323 (display_mode_element, store_mode_line_string)
13324 (pint2str, pint2hrstr, decode_mode_spec)
13325 (display_count_lines, display_string, draw_glyphs)
13326 (x_produce_glyphs, x_insert_glyphs)
13327 (rows_from_pos_range, mouse_face_from_buffer_pos)
13328 (fast_find_string_pos, mouse_face_from_string_pos)
13329 (note_mode_line_or_margin_highlight, note_mouse_highlight):
13330 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13331 (safe_call, init_from_display_pos, handle_fontified_prop)
13332 (handle_single_display_spec, load_overlay_strings)
13333 (with_echo_area_buffer, setup_echo_area_for_printing)
13334 (display_echo_area, echo_area_display)
13335 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
13336 (update_tool_bar, hscroll_window_tree, redisplay_internal)
5895d7b9
PE
13337 (redisplay_window, dump_glyph_row, display_mode_line)
13338 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
43ad2e9a 13339 (handle_display_spec, display_prop_string_p):
d311d28c
PE
13340 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13341 (handle_single_display_spec, build_desired_tool_bar_string)
13342 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
13343 (get_specified_cursor_type):
13344 Check that fixnums are in proper range for system types.
13345 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
13346 (Flookup_image_map):
13347 Don't assume fixnums fit in int.
13348 (compare_overlay_entries):
13349 Avoid mishandling comparisons due to subtraction overflow.
13350 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
13351 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
13352 (handle_tool_bar_click):
13353 Use int, not unsigned, since we prefer signed and the signedness
13354 doesn't matter here.
13355 (get_next_display_element, next_element_from_display_vector):
13356 Use int, not EMACS_INT, when int is wide enough.
13357 (start_hourglass): Use duration_to_sec_usec to do proper
13358 overflow checking on durations.
13359 * xfaces.c (Fbitmap_spec_p):
13360 Check that fixnums are in proper range for system types.
13361 (compare_fonts_by_sort_order):
13362 Avoid mishandling comparisons due to subtraction overflow.
13363 (Fx_family_fonts, realize_basic_faces):
13364 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13365 (Fx_family_fonts):
13366 Don't assume fixnum fits in int.
13367 Use SAFE_ALLOCA_LISP, not alloca.
13368 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
13369 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
13370 (face_at_buffer_position, face_for_overlay_string)
13371 (face_at_string_position):
13372 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13373 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
13374 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
13375 (Fx_show_tip):
13376 Check that fixnums are in proper range for system types.
13377 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
13378 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
13379 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13380 (Fx_change_window_property): Don't assume fixnums fit in int.
13381 * xfont.c (xfont_chars_supported):
13382 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13383 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
13384 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
13385 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13386 * xml.c (parse_region):
13387 * xrdb.c (magic_file_p):
13388 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13389 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
13390 (x_get_local_selection, x_reply_selection_request)
13391 (x_handle_selection_request, wait_for_property_change):
13392 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13393 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
13394 short is wide enough.
13395 (x_send_client_event): Don't assume fixnum fits in int.
13396 * xterm.c (x_x_to_emacs_modifiers):
13397 Don't assume EMACS_INT overflows nicely into int.
13398 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
13399 may come from Lisp.
13400 (handle_one_xevent): NATNUMP can eval its arg twice.
13401 (x_connection_closed):
13402 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13403 * xterm.h: Adjust decls to match defn changes elsewhere.
13404 (struct scroll_bar): Use struct vectorlike_header
13405 rather than rolling our own approximation.
13406 (SCROLL_BAR_VEC_SIZE): Remove; not used.
13407
c6574eb5
GM
134082012-05-25 Glenn Morris <rgm@gnu.org>
13409
13410 * lisp.mk (lisp): Update for more files being compiled now.
13411
e8d32c7e
SM
134122012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13413
48def666
SM
13414 * lread.c: Remove `read_pure' which makes no difference.
13415 (read_pure): Remove var.
13416 (unreadpure): Remove function.
13417 (readevalloop): Don't call read_list with -1 flag.
13418 (read1, read_vector): Don't test read_pure any more.
13419 (read_list): Simplify.
13420
e8d32c7e
SM
13421 * fileio.c, character.h: Minor style tweaks.
13422
4b2addb7
DA
134232012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
13424
13425 * window.h (clip_changed): Remove useless declaration.
13426
584461b2
JB
134272012-05-22 Juanma Barranquero <lekktu@gmail.com>
13428
13429 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
13430 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
13431
34374650
PE
134322012-05-22 Paul Eggert <eggert@cs.ucla.edu>
13433
13434 Remove src/m/*.
13435 This directory predates autoconf and is no longer needed nowadays.
13436 Move its few remaining bits of functionality to where they're needed.
13437 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
13438 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
13439 * m/template.h: Remove.
13440 * Makefile.in (M_FILE): Remove. All uses removed.
13441 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
13442 * lisp.h (USE_LSB_TAG):
13443 * mem-limits.h (EXCEEDS_LISP_PTR):
13444 Use VAL_MAX, not VALBITS, in #if.
13445 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
13446 (EMACS_UINT): Define unconditionally now.
13447 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
13448 (BITS_PER_EMACS_INT): New constants, replacing
13449 what used to be in config.h, but not useful in #if.
13450 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
13451 define them any more.
13452 (VAL_MAX): New macro.
13453 (VALMASK): Use it.
13454 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
13455 BITS_PER_EMACS_INT, in #if.
13456 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
13457 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
13458 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
13459 * s/ms-w32.h (DATA_START):
13460 Move here from removed file m/intel386.h.
13461 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
13462 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
13463
261cb4bb
PE
134642012-05-21 Paul Eggert <eggert@cs.ucla.edu>
13465
13466 Assume C89 or later.
13467 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
13468 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
13469 (xrealloc):
13470 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
13471 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
13472 * textprop.c, tparam.c (NULL): Remove.
13473 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
13474 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
13475 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
13476 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
13477 * xterm.c (input_signal_count): Assume volatile works.
13478
ff23cd9f
KB
134792012-05-21 Ken Brown <kbrown@cornell.edu>
13480
13481 * xgselect.c (xg_select): Fix first argument in call to 'select'
13482 (bug#11508).
13483
1b170bc6
KB
134842012-05-20 Ken Brown <kbrown@cornell.edu>
13485
13486 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
bd7239f5 13487 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
1b170bc6 13488
b2f4d39f
KB
134892012-05-19 Ken Brown <kbrown@cornell.edu>
13490
13491 * xfns.c (x_in_use): Remove `static' qualifier.
13492 * xterm.h (x_in_use): Declare.
13493 * xgselect.c: Include xterm.h.
13494 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
13495 and `display_arg' (bug#9754).
13496
003fdae2
PE
134972012-05-19 Paul Eggert <eggert@cs.ucla.edu>
13498
9232a6d9
PE
13499 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
13500
003fdae2
PE
13501 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
13502 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
13503
784b56e2
EZ
135042012-05-18 Eli Zaretskii <eliz@gnu.org>
13505
13506 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
13507
13508 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
090bd7cb 13509 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
784b56e2
EZ
13510
13511 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
13512 reference to image_cache->refcount.
13513 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
13514
a0a79cde
JL
135152012-05-17 Juri Linkov <juri@jurta.org>
13516
13517 * search.c (Fword_search_regexp, Fword_search_backward)
13518 (Fword_search_forward, Fword_search_backward_lax)
13519 (Fword_search_forward_lax): Move functions to isearch.el
13520 (bug#10145, bug#11381).
13521
b0572523
PE
135222012-05-16 Paul Eggert <eggert@cs.ucla.edu>
13523
13524 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
13525
9660f5fc
SM
135262012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
13527
13528 * lread.c (init_obarray): Declare Qt and Qnil as special.
13529
4374de83
GM
135302012-05-14 Glenn Morris <rgm@gnu.org>
13531
13532 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
985584ae 13533 Put "libexec" before "bin", for the sake of init_callproc_1.
4374de83 13534
dc44c39a
PE
135352012-05-14 Paul Eggert <eggert@cs.ucla.edu>
13536
078c97cb
PE
13537 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
13538
dc44c39a
PE
13539 * unexaix.c: Port to more-recent AIX compilers.
13540 (report_error, report_error_1, make_hdr, copy_sym)
13541 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
13542 Make arguments const char *, not char *, to avoid violations of C
13543 standard and to fix some AIX warnings reported by Gilles Pion.
13544
e18afed7 135452012-05-14 Eli Zaretskii <eliz@gnu.org>
ac268e67
EZ
13546
13547 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
13548 already have overlays loaded.
13549 (handle_single_display_spec): Before returning without displaying
13550 fringe bitmap, synchronize the bidi iterator with the main display
13551 iterator, by calling iterate_out_of_display_property.
13552 (iterate_out_of_display_property): Detect buffer iteration by
13553 testing that it->string is a Lisp string.
13554 (get_next_display_element): When the current object is exhausted,
13555 and there's something on it->stack, call set_iterator_to_next to
13556 proceed with what's on the stack, instead of returning zero.
13557 (set_iterator_to_next): If called at the end of a Lisp string,
13558 proceed to consider_string_end without incrementing string
13559 position. Don't increment display vector index past the end of
13560 the display vector. (Bug#11417)
c8fb9dc6
EZ
13561 (pos_visible_p): Don't report a position visible when move_it_to
13562 stopped at the last line of window, which happens to be scanned
13563 backwards by the bidi iteration. (Bug#11464)
ac268e67 13564
e18afed7 135652012-05-14 Eli Zaretskii <eliz@gnu.org>
82f9b393
EZ
13566
13567 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
13568 and right-margin display specs even if the spec is invalid or we
61b108cc
SM
13569 are on a TTY, and thus unable to display on the fringes.
13570 That's because the text with the property will not be displayed anyway,
82f9b393
EZ
13571 so we need to signal to the caller that this is a "replacing"
13572 display spec. This fixes display when the spec is invalid or we
13573 are on a TTY.
13574
e18afed7 135752012-05-14 Paul Eggert <eggert@cs.ucla.edu>
297834cd
PE
13576
13577 * unexaix.c (make_hdr): Fix typo in prototype.
13578 This bug broke the build on AIX. Problem reported by Gilles Pion.
13579
9d0a235a
MA
135802012-05-14 Michael Albinus <michael.albinus@gmx.de>
13581
13582 * keyboard.c (kbd_buffer_get_event): Read special events also in
13583 batch mode. (Bug#11415)
13584
9e6b06ed
GM
135852012-05-12 Glenn Morris <rgm@gnu.org>
13586
13587 * ns.mk: Update for ns_appbindir no longer having trailing "/".
13588
c1a1d7a3
EZ
135892012-05-12 Eli Zaretskii <eliz@gnu.org>
13590
13591 * lisp.mk (lisp): Add newcomment.elc.
13592
3fe7cdc8
GM
135932012-05-12 Glenn Morris <rgm@gnu.org>
13594
13595 * Makefile.in (MKDIR_P): New, set by configure.
13596 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
13597
53f7d2c0
PE
135982012-05-11 Paul Eggert <eggert@cs.ucla.edu>
13599
13600 Remove unused function hourglass_started.
13601 * dispextern.h (hourglass_started):
13602 * w32fns.c (hourglass_started):
13603 * xdisp.c (hourglass_started): Remove.
13604
75aafb17
JB
136052012-05-10 Juanma Barranquero <lekktu@gmail.com>
13606
13607 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
13608 Update dependencies.
13609
12959e8e
PE
136102012-05-10 Paul Eggert <eggert@cs.ucla.edu>
13611
97107e2e
PE
13612 * xgselect.c (xg_select): Put maxfds+1 into a var.
13613 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
13614
12959e8e
PE
13615 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
13616
836d29b3
DA
136172012-05-10 Dave Abrahams <dave@boostpro.com>
13618
13619 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
13620 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
13621
5cb67954
MA
136222012-05-09 Michael Albinus <michael.albinus@gmx.de>
13623
13624 * dbusbind.c (xd_registered_buses): New internal Lisp object.
cccaebd2 13625 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
5cb67954
MA
13626 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
13627 Initialize xd_registered_buses.
13628
3478ec45
PE
136292012-05-09 Paul Eggert <eggert@cs.ucla.edu>
13630
b263a6b0
PE
13631 Untag more efficiently if USE_LSB_TAG.
13632 This is based on a proposal by YAMAMOTO Mitsuharu in
13633 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
13634 For an admittedly artificial (nth 8000 longlist) benchmark on
13635 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
13636 Emacs's overall text size by 1%.
13637 * lisp.h (XUNTAG): New macro.
13638 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
13639 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
13640 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
13641 * eval.c (Fautoload):
13642 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
13643 * frame.h (XFRAME): Use XUNTAG.
13644
3478ec45
PE
13645 Port recent dbusbind.c changes to 32-bit --with-wide-int.
13646 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
13647 Remove unportable assumptions about print widths of types like
13648 dbus_uint32_t.
13649 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
13650 intptr_t when converting between pointer and integer, to avoid GCC
13651 warnings about wrong width.
13652
666b903b 136532012-05-09 Eli Zaretskii <eliz@gnu.org>
0d887c7d
EZ
13654
13655 * w32proc.c (new_child): Force Windows to reserve only 64KB of
13656 stack for each reader_thread, instead of defaulting to 8MB
13657 determined by the linker. This avoids failures in creating
13658 subprocesses on Windows 7, see the discussion in this thread:
13659 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
13660
b120cc17
JC
136612012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
13662
13663 Fix up display of the *Minibuf-0* buffer in the mini window.
13664 * keyboard.c (read_char): Don't clear the echo area if there's no
13665 message to clear.
13666 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
2fed2689 13667 contents of *Minibuf-0*) if there's no message displayed in its stead.
b120cc17 13668
9a4b36f8
MA
136692012-05-07 Michael Albinus <michael.albinus@gmx.de>
13670
13671 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
13672 batch mode.
13673
e5f9458f
CY
136742012-05-06 Chong Yidong <cyd@gnu.org>
13675
13676 * lisp.mk (lisp): Update.
13677
eceeb5fc 136782012-05-05 Jim Meyering <meyering@redhat.com>
bf98199c
JM
13679
13680 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
13681
71873e2b
SM
136822012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13683
13684 * data.c (PUT_ERROR): New macro.
13685 (syms_of_data): Use it. Add new error type `user-error'.
13686 * undo.c (user_error): New function.
13687 (Fprimitive_undo): Use it.
13688 * print.c (print_error_message): Adjust print style for `user-error'.
13689 * keyboard.c (user_error): New function.
13690 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
13691
ab0fa4e4
PE
136922012-05-03 Paul Eggert <eggert@cs.ucla.edu>
13693
13694 Do not limit current-time-string to years 1000..9999.
13695 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
13696 (Fcurrent_time_string): Support any year that is supported by the
13697 underlying localtime representation. Don't use asctime, as it
13698 has undefined behavior for years outside the range -999..9999.
13699
7ed806a7
PE
137002012-05-02 Paul Eggert <eggert@cs.ucla.edu>
13701
13702 Fix race conditions involving setenv, gmtime, localtime, asctime.
13703 Without this fix, interrupts could mess up code that uses these
13704 nonreentrant functions, since setting TZ invalidates existing
13705 tm_zone or tzname values, and since most of these functions return
13706 pointers to static storage.
13707 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
13708 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
13709 Grow the critical sections to include not just invoking
13710 localtime/gmtime, but also accessing these functions' results
13711 including their tm_zone values if any, and any related TZ setting.
13712 (format_time_string): Last arg is now struct tm *, not struct tm **,
71873e2b
SM
13713 so that the struct tm is saved in the critical section.
13714 All callers changed. Simplify allocation of initial buffer, partly
7ed806a7
PE
13715 motivated by the fact that memory allocation needs to be outside
13716 the critical section.
13717
0c16dfed
DA
137182012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
13719
13720 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
13721 with RESET_INTERVAL.
13722
13723 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
13724 Remove duplicated buffer name initialization.
13725
3f83ace8
JM
137262012-05-02 Jim Meyering <jim@meyering.net>
13727
13728 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
13729
c7b8541e
JM
13730 * xfns.c (x_window): Use xstrdup (Bug#11375).
13731
90207a15 137322012-05-02 Eli Zaretskii <eliz@gnu.org>
2fa85638
EZ
13733
13734 * xdisp.c (pos_visible_p): If already at a newline from the
13735 display string before the 'while' loop, don't walk back the glyphs
13736 from it3.glyph_row. Solves assertion violation when the display
13737 string begins with a newline (egg.el). (Bug#11367)
13738
b593d6a9
AH
137392012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
13740
13741 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
13742 Move to simple.el.
13743
4737362e
GM
137442012-05-01 Glenn Morris <rgm@gnu.org>
13745
99cf43f9
GM
13746 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
13747 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
13748 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
13749 All were removed before 23.1.
13750
9311dcff
GM
13751 * dispnew.c: Remove HAVE_LIBNCURSES test;
13752 it is always true on relevant platforms.
13753
4d5c6349
GM
13754 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
13755 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
13756
4737362e
GM
13757 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
13758
74dd3a6b
AS
137592012-04-30 Andreas Schwab <schwab@linux-m68k.org>
13760
13761 * .gdbinit (xpr): Remove checks for no longer existing misc types.
13762 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
13763 Remove.
13764
13c379ee
PE
137652012-04-28 Paul Eggert <eggert@cs.ucla.edu>
13766
13767 Do not avoid creating empty evaporating overlays (Bug#9642).
13768 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
13769 That is, do not delete an evaporating overlay if it becomes
13770 empty after its bounds are adjusted to fit within its buffer.
13771 This fix caused other problems, and I'm reverting it until we get
13772 to the bottom of them.
13773
a8e7d6d7 137742012-04-27 Chong Yidong <cyd@gnu.org>
9be2fd9b
CY
13775
13776 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
13777
a8e7d6d7 137782012-04-27 Eli Zaretskii <eliz@gnu.org>
f0ee99a0
EZ
13779
13780 * xdisp.c (pos_visible_p): If the window start position is beyond
13781 ZV, start the display from buffer beginning. Prevents assertion
13782 violation in init_iterator when the minibuffer window is scrolled
13783 via the scroll bar.
13784
13785 * window.c (window_scroll_pixel_based): Likewise.
13786
a8e7d6d7 137872012-04-27 Chong Yidong <cyd@gnu.org>
9ec7751f
CY
13788
13789 * keymap.c (where_is_internal): Doc fix (Bug#10872).
13790
a8e7d6d7 137912012-04-27 Glenn Morris <rgm@gnu.org>
24c51a09
GM
13792
13793 * fileio.c (Fcopy_file, Fset_file_selinux_context):
13794 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
13795
a8e7d6d7 137962012-04-27 Eli Zaretskii <eliz@gnu.org>
73055685 13797
b593d6a9
AH
13798 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
13799 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
73055685 13800
1c6900d9
EZ
138012012-04-26 Eli Zaretskii <eliz@gnu.org>
13802
4c3fa1d9
EZ
13803 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
13804 display element, check also the underlying string or buffer
13805 character. (Bug#11341)
13806
1c6900d9
EZ
13807 * w32menu.c: Include w32heap.h.
13808 (add_menu_item): If the call to AppendMenuW (via
13809 unicode_append_menu) fails, disable Unicode menus only if we are
13810 running on Windows 9X/Me.
13811
42bf8205
AS
138122012-04-24 Andreas Schwab <schwab@linux-m68k.org>
13813
13814 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
13815 (xgetint): Add missing shift for LSB tags.
13816
b1bac16e
MR
138172012-04-24 Martin Rudalics <rudalics@gmx.at>
13818
13819 * keyboard.c (read_char): Don't wipe echo area for select window
13820 events: These might get delayed via `mouse-autoselect-window'
13821 (Bug#11304).
13822
d69621cc
JB
138232012-04-24 Juanma Barranquero <lekktu@gmail.com>
13824
13825 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
13826 manipulation of :loaded-from data.
13827
02fd101b
JB
138282012-04-23 Juanma Barranquero <lekktu@gmail.com>
13829
13830 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
13831 now a cons (bug#11311).
13832
888bec30
PE
138332012-04-23 Paul Eggert <eggert@cs.ucla.edu>
13834
89a438bd
PE
13835 Do not create empty overlays with the evaporate property (Bug#9642).
13836 * buffer.c (Fmove_overlay): Delete an evaporating overlay
13837 if it becomes empty after its bounds are adjusted to fit within
13838 its buffer. Without this fix, in a nonempty buffer (let ((o
13839 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
13840 yields an empty overlay that has the evaporate property, which is
13841 not supposed to happen.
13842
1068fe4d
PE
13843 Fix minor GTK3 problems found by static checking.
13844 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
13845 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13846 (struct _EmacsFixedClass, emacs_fixed_get_type):
13847 Move decls here from emacsgtkfixed.h, since they needn't be public.
13848 (emacs_fixed_get_type): Now static.
13849 (emacs_fixed_class_init): Omit unused local.
13850 (emacs_fixed_child_type): Remove; unused.
13851 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
13852 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13853 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
13854 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
13855 (EMACS_FIXED_GET_CLASS): Remove; unused.
13856 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
13857
888bec30
PE
13858 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
13859 Problem reported by Juanma Barranquero for Windows -Wunused-function.
13860
de85e130
PE
138612012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13862
d0baac98 13863 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
bd7239f5 13864 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
d0baac98
PE
13865 (__malloc_size_t, __malloc_ptrdiff_t):
13866 Remove. All uses removed, replaced by the definiens if needed,
13867 since we can assume C89 or better now.
13868 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
13869 (protect_malloc_state, align, get_contiguous_space)
13870 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
13871 (malloc_atfork_handler_child, malloc_enable_thread)
13872 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
13873 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
13874 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
13875 (special_realloc, _realloc_internal_nolock, _realloc_internal)
13876 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
13877 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
13878 Define using prototypes, not old style.
13879 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
13880 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
13881 (align): Don't assume that signed integer overflow wraps around.
13882 Omit unused local var.
13883 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
13884 (_free_internal_nolock, memalign, mallochook, reallochook):
13885 Omit no-longer-needed casts.
13886 (valloc): Use getpagesize, not __getpagesize.
13887 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
13888 (struct hdr): The 'magic' member is now size_t, not unsigned long.
13889
de85e130
PE
13890 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
13891
dcbf5805
MA
138922012-04-22 Michael Albinus <michael.albinus@gmx.de>
13893
13894 Move functions from C to Lisp. Make non-blocking method calls
13895 the default. Implement further D-Bus standard interfaces.
13896
13897 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
13898 (QCdbus_request_name_allow_replacement)
13899 (QCdbus_request_name_replace_existing)
13900 (QCdbus_request_name_do_not_queue)
13901 (QCdbus_request_name_reply_primary_owner)
13902 (QCdbus_request_name_reply_in_queue)
13903 (QCdbus_request_name_reply_exists)
13904 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
13905 (QCdbus_registered_serial, QCdbus_registered_method)
13906 (QCdbus_registered_signal): New Lisp objects.
13907 (XD_DEBUG_MESSAGE): Use sizeof.
13908 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
13909 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
13910 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
13911 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
13912 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
13913 (xd_signature, xd_append_arg): Allow float for integer types.
13914 (xd_get_connection_references): New function.
b593d6a9
AH
13915 (xd_get_connection_address): Rename from xd_initialize.
13916 Return cached address.
dcbf5805
MA
13917 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
13918 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
13919 level.
13920 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
9a4b36f8 13921 Return number of refcounts.
dcbf5805
MA
13922 (Fdbus_get_unique_name): Make stronger parameter check.
13923 (Fdbus_message_internal): New defun.
13924 (Fdbus_call_method, Fdbus_call_method_asynchronously)
13925 (Fdbus_method_return_internal, Fdbus_method_error_internal)
13926 (Fdbus_send_signal, Fdbus_register_service)
13927 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
13928 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
13929 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
13930 (Vdbus_compiled_version, Vdbus_runtime_version)
13931 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
13932 (Vdbus_message_type_method_return, Vdbus_message_type_error)
13933 (Vdbus_message_type_signal): New defvars.
b593d6a9
AH
13934 (Vdbus_registered_buses, Vdbus_registered_objects_table):
13935 Adapt docstring.
dcbf5805 13936
52828e02
PE
139372012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13938
da05bc4c
PE
13939 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
13940 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
13941 Do not assume ptrdiff_t is the same width as 'int'.
13942
52828e02
PE
13943 * alloc.c: Handle unusual debugging option combinations.
13944 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
13945 since the two debugging options are incompatible.
13946 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
13947 is defined.
13948 (mem_init, mem_insert, mem_insert_fixup):
13949 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
13950 (NEED_MEM_INSERT): Remove; no longer needed.
13951
f01769f9
LL
139522012-04-22 Leo Liu <sdl.web@gmail.com>
13953
13954 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
13955
5790543d
PE
139562012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13957
13958 * sysdep.c [__FreeBSD__]: Minor cleanups.
13959 (list_system_processes, system_process_attributes) [__FreeBSD__]:
13960 Use Emacs indenting style more consistently. Avoid some casts.
13961 Use 'double' consistently rather than mixing 'float' and 'double'.
13962
b91b7e4d
EW
139632012-04-21 Eduard Wiebe <usenet@pusto.de>
13964
b593d6a9
AH
13965 * sysdep.c (list_system_processes, system_process_attributes):
13966 Add implementation for FreeBSD (Bug#5243).
b91b7e4d 13967
6114eb15
AS
139682012-04-21 Andreas Schwab <schwab@linux-m68k.org>
13969
13970 * lisp.mk (lisp): Update.
13971
2f38dff7
PE
139722012-04-20 Paul Eggert <eggert@cs.ucla.edu>
13973
13974 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
13975 It is never used otherwise.
13976
4ae29f89
SM
139772012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13978
13979 * print.c (print_preprocess): Only check print_depth if print-circle
13980 is nil.
13981 (print_object): Check for cycles even when print-circle is nil and
13982 print-gensym is t, but only check print_depth if print-circle is nil.
13983
f30d612a
CY
139842012-04-20 Chong Yidong <cyd@gnu.org>
13985
13986 * process.c (wait_reading_process_output): If EIO occurs on a pty,
13987 set the status to "failed" and ensure that sentinel is run.
13988
c07a4c0b 139892012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
13990
13991 * process.c (Fset_process_inherit_coding_system_flag)
13992 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
4373fd43 13993 (Fmake_network_process, Fmake_serial_process): Doc fix.
016a35df 13994
c07a4c0b 139952012-04-20 Eli Zaretskii <eliz@gnu.org>
20a68157
EZ
13996
13997 * xdisp.c (string_buffer_position_lim): Limit starting position to
13998 BEGV.
13999 (set_cursor_from_row): If called for a mode-line or header-line
14000 row, return zero immediately.
14001 (try_cursor_movement): If inside continuation line, don't back up
4ae29f89
SM
14002 farther than the first row after the header line, if any.
14003 Don't consider the header-line row as "partially visible", even if
20a68157
EZ
14004 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
14005
c07a4c0b 140062012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 14007
4ae29f89
SM
14008 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
14009 (bug#11238).
ad3a2b41 14010
c07a4c0b 140112012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
6c94c34f 140122012-04-18 Paul Eggert <eggert@cs.ucla.edu>
ae6e112d
PE
14013
14014 configure: new option --enable-gcc-warnings (Bug#11207)
14015 * Makefile.in (C_WARNINGS_SWITCH): Remove.
14016 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
14017 (ALL_CFLAGS): Use new macros rather than old.
14018 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
14019 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
14020 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
14021 -Wunused-result, -Wunused-variable. This should go away once
14022 the Emacs and Gnulib regex code is merged.
14023 (xmalloc, xrealloc): Now static.
14024
aba027e8
PE
140252012-04-17 Paul Eggert <eggert@cs.ucla.edu>
14026
14027 * dired.c (Fsystem_groups): Remove unused local.
14028
e5a36063
GM
140292012-04-17 Glenn Morris <rgm@gnu.org>
14030
14031 * dired.c (Fsystem_users): Doc fix.
14032
316411f0
DA
140332012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
14034
14035 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
14036 (syms_of_dired): Add them.
14037
9426aba4
PE
140382012-04-16 Paul Eggert <eggert@cs.ucla.edu>
14039
b62a57be
PE
14040 Fix minor alloc.c problems found by static checking.
14041 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
14042 New extern decls, to avoid calling undeclared functions.
14043 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
14044 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
14045 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
14046 (NEED_MEM_INSERT): New macro.
14047 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
4b5afbb0 14048 Remove one incorrect comment and fix another.
b62a57be 14049
3539f31f
PE
14050 Fix minor ralloc.c problems found by static checking.
14051 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
14052 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
14053 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
14054 (r_alloc_sbrk): Now static.
14055
a041960a
PE
14056 Improve ralloc.c interface checking.
14057 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
14058 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
14059 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
14060 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
14061 [REL_ALLOC]: ... to here, to check interface.
14062 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
14063 Remove decls. This fixes an "It stinks!".
14064
9426aba4
PE
14065 * alloc.c (which_symbols): Fix alignment issue / type clash.
14066
d55c12ed
AS
140672012-04-15 Andreas Schwab <schwab@linux-m68k.org>
14068
14069 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
14070 (struct Lisp_Misc_Any): Likewise.
14071 (struct Lisp_Free): Likewise.
14072 * alloc.c (union aligned_Lisp_Symbol): Define.
14073 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
14074 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
14075 (union aligned_Lisp_Misc): Define.
14076 (MARKER_BLOCK_SIZE, struct marker_block): Use union
14077 aligned_Lisp_Misc instead of union Lisp_Misc.
4ae29f89 14078 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
d55c12ed 14079
b948ce8b
PE
140802012-04-14 Paul Eggert <eggert@cs.ucla.edu>
14081
14082 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
14083 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
14084 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
14085 * s/netbsd.h, s/sol2-6.h:
14086 Remove definition of GC_MARK_STACK, since the default now works.
14087 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
14088 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
14089 no longer the default.
14090 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
14091
35dc09a1 140922012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 14093
35dc09a1
GM
14094 * lread.c (lisp_file_lexically_bound_p):
14095 Fix hang at ";-*-\n" (bug#11238).
ad3a2b41 14096
35dc09a1
GM
140972012-04-14 Eli Zaretskii <eliz@gnu.org>
14098
14099 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
14100 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
14101
141022012-04-14 Jan Djärv <jan.h.d@swipnet.se>
14103
14104 * nsterm.m (constrainFrameRect): Always constrain when there is only
14105 one screen (Bug#10962).
14106
bcd86815
KB
141072012-04-13 Ken Brown <kbrown@cornell.edu>
14108
14109 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
14110
c25df26e
RT
141112012-04-13 Reuben Thomas <rrt@sc3d.org>
14112
14113 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
14114
0fc59f1e
DC
141152012-04-11 Daniel Colascione <dancol@dancol.org>
14116
14117 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
14118 against is gone. It's better to use vfork now so that when Cygwin
14119 gains a new, working vfork, we use it automatically (bug#10398).
14120
de8c03dc
SM
141212012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14122
14123 * window.c (save_window_save): Obey window-point-insertion-type.
14124
2f097256
GM
141252012-04-11 Glenn Morris <rgm@gnu.org>
14126
14127 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
14128
453b951e
SM
141292012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14130
14131 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
14132
75f1671a 141332012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
6bbef4e5
JC
14134
14135 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
14136 (force_quit_count): New var.
14137 (handle_interrupt): Use it.
14138
2a8ce227
JB
141392012-04-10 Juanma Barranquero <lekktu@gmail.com>
14140
14141 * w32.c (w32_delayed_load): Record the full path of the library
14142 being loaded (bug#10424).
14143
935396c0
GM
141442012-04-09 Glenn Morris <rgm@gnu.org>
14145
05920a43
GM
14146 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
14147 not just in the obarray, before snarfing them. (Bug#11036)
14148
935396c0
GM
14149 * Makefile.in ($(leimdir)/leim-list.el):
14150 Pass EMACS rather than BUILT_EMACS.
14151
a18ecafa
TZ
141522012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
14153
14154 * process.c (make_process):
14155 * process.h: Add integer `gnutls_handshakes_tried' member to
14156 process struct.
14157
6bbef4e5
JC
14158 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
14159 Add convenience `GNUTLS_LOG2i' macro.
a18ecafa
TZ
14160
14161 * gnutls.c (gnutls_log_function2i): Convenience log function.
14162 (emacs_gnutls_read): Use new log functions,
14163 `gnutls_handshakes_tried' process member, and
14164 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
14165 attempts per process (connection).
14166
b4d3bc10
CY
141672012-04-09 Chong Yidong <cyd@gnu.org>
14168
14169 * eval.c (Fuser_variable_p, user_variable_p_eh)
14170 (lisp_indirect_variable): Functions deleted.
14171 (Fdefvar): Caller changed.
14172
14173 * callint.c (Finteractive, Fcall_interactively):
14174 * minibuf.c (Fread_variable): Callers changed.
14175
70f4d973
EZ
141762012-04-09 Eli Zaretskii <eliz@gnu.org>
14177
14178 * xdisp.c (set_cursor_from_row): If the display string appears in
14179 the buffer at position that is closer to point than the position
14180 after the display string, display the cursor on the first glyph of
14181 the display string. Fixes cursor display when a 'display' text
14182 property immediately follows invisible text. (Bug#11094)
14183
cb3c2e3e
PE
141842012-04-09 Paul Eggert <eggert@cs.ucla.edu>
14185
14186 composite.c: use 'double' consistently
14187 * composite.c (get_composition_id): Use 'double' consistently
14188 instead of converting 'float' to 'double' and vice versa; this is
14189 easier to understand and avoids a GCC warning.
14190
fd06db5d
GM
141912012-04-09 Glenn Morris <rgm@gnu.org>
14192
50fe702a
GM
14193 * Makefile.in: Generate leim-list with bootstrap-emacs, in
14194 preparation for dumping it with emacs. (Bug#4789)
14195 (leimdir): New variable.
14196 ($(leimdir)/leim-list.el): New rule.
14197 (emacs$(EXEEXT)): Depend on leim-list.el.
14198
fd06db5d
GM
14199 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
14200 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
14201 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
14202
55c131ee
AS
142032012-04-08 Andreas Schwab <schwab@linux-m68k.org>
14204
14205 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
14206 proper alignment.
14207
9209588f
JB
142082012-04-07 Juanma Barranquero <lekktu@gmail.com>
14209
14210 * xml.c (init_libxml2_functions) [WINDOWSNT]:
14211 Remove unused local variable.
14212
e3fb2efb
PE
142132012-04-07 Paul Eggert <eggert@cs.ucla.edu>
14214
14215 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
14216 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
14217 (mark_memory): Mark Lisp_Objects only if pointers might hide in
14218 objects, as mark_maybe_pointer will catch them otherwise.
14219 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
14220 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
14221
b5385551
PE
142222012-04-07 Paul Eggert <eggert@cs.ucla.edu>
14223
14224 Fix typo that broke non-Windows builds.
14225 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
14226
9078ead6
EZ
142272012-04-07 Eli Zaretskii <eliz@gnu.org>
14228
14229 Support building on MS-Windows with libxml2.
14230
14231 * makefile.w32-in (OBJ2): Add xml.$(O).
14232 (GLOBAL_SOURCES): Add xml.c.
14233 ($(BLD)/xml.$(O)): New dependency list.
14234
14235 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
14236 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
14237 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
14238 [!WINDOWSNT]: New macros.
14239 (init_libxml2_functions, libxml2_loaded_p): New functions.
14240 (parse_region): Call fn_xmlCheckVersion instead of using the macro
14241 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
14242 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
14243 Calls xmlCleanupParser only if libxml2 was loaded (or statically
14244 linked in).
6bbef4e5
JC
14245 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
14246 Call init_libxml2_functions before calling libxml2 functions.
9078ead6
EZ
14247 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
14248
14249 * emacs.c: Don't include libxml/parser.h.
14250 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
14251 xmlCleanupParser directly.
14252
14253 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
14254
3811fdf3
EZ
142552012-04-07 Eli Zaretskii <eliz@gnu.org>
14256
14257 * indent.c (Fvertical_motion): If there is a display string at
14258 point, use it.vpos to compute how many lines to backtrack after
14259 move_it_to point. (Bug#11133)
14260
2f8e16b2
EZ
142612012-04-06 Eli Zaretskii <eliz@gnu.org>
14262
14263 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
14264 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
14265 about subtle differences between FETCH_CHAR* and STRING_CHAR*
14266 macros related to unification of CJK characters. For the details,
14267 see the discussion following the message here:
14268 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
14269
3d439cd1
CY
142702012-04-04 Chong Yidong <cyd@gnu.org>
14271
14272 * keyboard.c (Vdelayed_warnings_list): Doc fix.
14273
8bc53d00
EZ
142742012-04-01 Eli Zaretskii <eliz@gnu.org>
14275
14276 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
14277 instead of alloca. (Bug#11138)
14278
3b0512a3
AS
142792012-04-01 Andreas Schwab <schwab@linux-m68k.org>
14280
14281 * w32menu.c (is_simple_dialog): Properly check lisp types.
14282 (Bug#11141)
14283
8427ddd2
EZ
142842012-03-31 Eli Zaretskii <eliz@gnu.org>
14285
979022ef
EZ
14286 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
14287 position we get to after a call to move_it_to fails the
14288 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
14289 only if we wind up in a string from display property. (Bug#11063)
14290
a6b1c7cc
EZ
14291 * window.c (Fdelete_other_windows_internal): Invalidate the row
14292 and column information about mouse highlight, so that redisplay
14293 restores it after reallocating the glyph matrices. (Bug#7464)
14294
8427ddd2
EZ
14295 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
14296 string comes from a `display' text property, use the buffer
14297 position of that property as if we actually saw that position in
14298 the row's glyphs.
697ba24b
EZ
14299 (move_it_by_lines): Remove the assertion that
14300 "it->current_x == 0 && it->hpos == 0" which can be legitimately
14301 violated when there's a before-string at the beginning of a line.
14302 (Bug#11063)
8427ddd2 14303
65a0a738
EZ
143042012-03-30 Eli Zaretskii <eliz@gnu.org>
14305
14306 * xdisp.c (append_space_for_newline): If the default face was
14307 remapped, use the remapped face for the appended newline.
14308 (extend_face_to_end_of_line): Use the remapped default face for
14309 extending the face to the end of the line.
14310 (display_line): Call extend_face_to_end_of_line when the default
14311 face was remapped. (Bug#11068)
14312
581355cc
EZ
143132012-03-29 Eli Zaretskii <eliz@gnu.org>
14314
14315 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
14316
e8fc049f
SM
143172012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14318
14319 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
14320
4fb9a543
GM
143212012-03-27 Glenn Morris <rgm@gnu.org>
14322
14323 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
14324 Doc fixes.
14325
679910f1
KH
143262012-03-26 Kenichi Handa <handa@m17n.org>
14327
14328 * dispextern.h (struct glyph): Fix previous change. Change the
14329 bit length of glyphless.ch to 25 (Bug#11082).
14330
90d49b7f
CY
143312012-03-26 Chong Yidong <cyd@gnu.org>
14332
14333 * keyboard.c (Vselection_inhibit_update_commands): New variable.
14334 (command_loop_1): Use it; inhibit selection update for
14335 handle-select-window too (Bug#8996).
14336
f514f6f0
FP
143372012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
14338
e8fc049f 14339 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
f514f6f0 14340
bf43fa51
KH
143412012-03-25 Kenichi Handa <handa@m17n.org>
14342
14343 * dispextern.h (struct glyph): Change the bit length of
14344 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
14345
8a0c01dd
EZ
143462012-03-24 Eli Zaretskii <eliz@gnu.org>
14347
14348 * s/ms-w32.h (tzname): Include time.h before redirecting to
14349 _tzname. Fixes the MSVC build. (Bug#9960)
14350
7d1c3a76
AS
143512012-03-24 Andreas Schwab <schwab@linux-m68k.org>
14352
8ed79523
AS
14353 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
14354 characters.
14355
7d1c3a76
AS
14356 * xterm.c (XTread_socket): Only modify handling_signal if
14357 !SYNC_INPUT. (Bug#11080)
14358
e99a9b8b
EZ
143592012-03-23 Eli Zaretskii <eliz@gnu.org>
14360
14361 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
14362 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
14363 when fetching a multibyte character consumes more bytes than
14364 CHAR_BYTES returns, due to unification of CJK characters in
14365 string_char. (Bug#11073)
14366
5063c0e1
TN
143672012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
14368
14369 * process.c (wait_reading_process_output): Handle pty disconnect
14370 by refraining from sending oneself a SIGCHLD (bug#10933).
14371
9f851fbd
CY
143722012-03-22 Chong Yidong <cyd@gnu.org>
14373
14374 * dispextern.h (struct it): New member string_from_prefix_prop_p.
14375
5063c0e1 14376 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
9f851fbd
CY
14377 Mark string as coming from a prefix property.
14378 (handle_face_prop): Use default face for prefix strings (Bug#4281).
14379 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
14380
fb5b8aca
CY
143812012-03-21 Chong Yidong <cyd@gnu.org>
14382
14383 * xfaces.c (Vface_remapping_alist): Doc fix.
14384
62356a1b
EZ
143852012-03-20 Eli Zaretskii <eliz@gnu.org>
14386
14387 * w32proc.c (Fw32_set_console_codepage)
5063c0e1
TN
14388 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
14389 Doc fixes.
62356a1b 14390
025de85b
CY
143912012-03-20 Chong Yidong <cyd@gnu.org>
14392
14393 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
14394 to reflect default non-nil value of redisplay-dont-pause.
14395
4827f94e
KH
143962012-03-19 Kenichi Handa <handa@m17n.org>
14397
14398 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
14399 it fit in a valid range (Bug#11003).
14400
e50a24a2
EZ
144012012-03-18 Eli Zaretskii <eliz@gnu.org>
14402
14403 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
14404 that is not from display property, accept the row as a "cursor
14405 row" if one of the string's character has a non-nil `cursor'
14406 property. Fixes cursor positioning when there are newlines in
14407 overlay strings, e.g. in icomplete.el. (Bug#11035)
14408
9af5ed87
PE
144092012-03-12 Paul Eggert <eggert@cs.ucla.edu>
14410
14411 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
14412
d1f55f16
CY
144132012-03-12 Chong Yidong <cyd@gnu.org>
14414
14415 * eval.c (inhibit_lisp_code): Rename from
14416 inhibit_window_configuration_change_hook; move from window.c.
14417
14418 * xfns.c (unwind_create_frame_1, Fx_create_frame):
14419 * window.c (run_window_configuration_change_hook)
14420 (syms_of_window): Callers changed.
14421
66c5eebd
CY
144222012-03-11 Chong Yidong <cyd@gnu.org>
14423
413df973
CY
14424 * keymap.c (Fkey_description): Doc fix (Bug#9700).
14425
66c5eebd
CY
14426 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
14427
1de11f56
CY
144282012-03-10 Chong Yidong <cyd@gnu.org>
14429
14430 * frame.c (other_visible_frames): Don't assume the selected frame
14431 is visible (Bug#10955).
14432
cae07000
SM
144332012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
14434
14435 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
14436
89c94350
JD
144372012-03-08 Jan Djärv <jan.h.d@swipnet.se>
14438
14439 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
14440 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
14441 zero (Bug#10954).
14442
999dd333
GM
144432012-03-03 Glenn Morris <rgm@gnu.org>
14444
01a6dcc8 14445 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
999dd333 14446
de0100f2
EZ
144472012-03-02 Eli Zaretskii <eliz@gnu.org>
14448
14449 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
14450 position past the first glyph_row that ends at ZV. (Bug#10902)
b8456c5c
EZ
14451 (redisplay_window, next_element_from_string): Fix typos in
14452 comments.
3e441275
EZ
14453 (redisplay_window): Pass to move_it_vertically the margin in
14454 pixels, not in screen lines.
de0100f2 14455
96a72ee9
GM
144562012-03-02 Glenn Morris <rgm@gnu.org>
14457
14458 * buffer.c (buffer-list-update-hook): Doc fix.
14459
312508d7
EZ
144602012-02-29 Eli Zaretskii <eliz@gnu.org>
14461
14462 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
14463 push_it before setting up the iterator for the first overlay
14464 string, even if we have an empty string loaded.
14465 (next_overlay_string): If there's an empty string on the iterator
14466 stack, pop the stack. (Bug#10903)
14467
27f3c637
PE
144682012-02-25 Paul Eggert <eggert@cs.ucla.edu>
14469
14470 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
14471 Suggested by Stefan Monnier in
14472 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
14473 * alloc.c (widen_to_Lisp_Object): New static function.
14474 (mark_memory): Also mark Lisp_Objects by fetching pointer words
14475 and widening them to Lisp_Objects. This would work even if
14476 USE_LSB_TAG is defined and wide integers are used, which might
14477 happen in a future version of Emacs.
14478
3c9dfce6
CY
144792012-02-25 Chong Yidong <cyd@gnu.org>
14480
fa74b241
CY
14481 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
14482 Doc fix.
14483
3c9dfce6
CY
14484 * xselect.c (Fx_selection_exists_p): Doc fix.
14485 (x_clipboard_manager_save_all): Print an informative message
14486 before saving to clipboard manager.
14487
9486df08
CY
144882012-02-24 Chong Yidong <cyd@gnu.org>
14489
14490 * keyboard.c (process_special_events): Handle all X selection
14491 requests in kbd_buffer, not just the next one (Bug#8869).
14492
f01d3321
CY
144932012-02-23 Chong Yidong <cyd@gnu.org>
14494
14495 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
14496 call when setting menu-bar-lines and tool-bar-lines parameters.
14497 (unwind_create_frame_1): New helper function.
14498
14499 * window.c (inhibit_window_configuration_change_hook): New var.
14500 (run_window_configuration_change_hook): Obey it.
b2e4ca7d 14501 (syms_of_window): Initialize it.
f01d3321 14502
86b847b6
CY
145032012-02-22 Chong Yidong <cyd@gnu.org>
14504
14505 * xterm.c (x_draw_image_relief): Add missing type check for
14506 Vtool_bar_button_margin (Bug#10743).
14507
a59225b1
CY
145082012-02-21 Chong Yidong <cyd@gnu.org>
14509
14510 * fileio.c (Vfile_name_handler_alist): Doc fix.
14511
14512 * buffer.c (Fget_file_buffer): Protect against invalid file
14513 handler return value.
14514
310f5bd4
PE
145152012-02-20 Paul Eggert <eggert@cs.ucla.edu>
14516
cb3a28cc
PE
14517 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
14518 when computing $valmask.
14519
310f5bd4
PE
14520 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
14521 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
14522 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
14523 It's useless in that case, and it can cause problems on hosts
14524 that allocate halves of EMACS_INT values separately.
14525 Reported by Dan Horák. Diagnosed by Andreas Schwab in
14526 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
14527 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
14528 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
14529 it avoids undefined behavior on hosts where shifting right by more
14530 than the word width has undefined behavior.
14531
2375c96a
CY
145322012-02-19 Chong Yidong <cyd@gnu.org>
14533
14534 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
14535 (Funhandled_file_name_directory, Ffile_name_as_directory)
14536 (Fdirectory_file_name, Fexpand_file_name)
14537 (Fsubstitute_in_file_name): Protect against invalid file handler
14538 return values (Bug#10845).
14539
3eb49e71
EZ
145402012-02-18 Eli Zaretskii <eliz@gnu.org>
14541
14542 * .gdbinit (pitx): Fix incorrect references to fields of the
14543 iterator stack.
14544
7b926f3f
CY
145452012-02-17 Chong Yidong <cyd@gnu.org>
14546
14547 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
14548
11273115
PE
145492012-02-15 Paul Eggert <eggert@cs.ucla.edu>
14550
14551 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
14552 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
14553
c3a70e2b
CY
145542012-02-15 Chong Yidong <cyd@gnu.org>
14555
14556 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
14557 marked as special. Also, starting docstrings with * is obsolete.
14558
0ca43699
AS
145592012-02-13 Andreas Schwab <schwab@linux-m68k.org>
14560
14561 * gnutls.c (emacs_gnutls_write): Fix last change.
14562
2e8f3c56
LI
145632012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
14564
14565 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
14566 send_process.
14567
af70074f
SM
145682012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
14569
14570 * keymap.c (Fsingle_key_description): Handle char ranges.
14571
95986d52
CY
145722012-02-12 Chong Yidong <cyd@gnu.org>
14573
afd83bd1
CY
14574 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
14575 as that creates a dangerous corner case.
14576
95986d52
CY
14577 * window.c (Fdelete_window_internal): Invalidate the mouse
14578 highlight (Bug#9904).
14579
bd7da63e
GM
145802012-02-12 Glenn Morris <rgm@gnu.org>
14581
14582 * xselect.c (Fx_own_selection_internal)
14583 (Fx_get_selection_internal, Fx_disown_selection_internal)
14584 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
14585 * nsselect.m (Fx_own_selection_internal)
14586 (Fx_disown_selection_internal, Fx_selection_exists_p)
14587 (Fx_selection_owner_p, Fx_get_selection_internal):
14588 Sync docs and argument specs with the xselect.c versions.
14589
77abcbc2
LI
145902012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
14591
14592 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
14593
90b671e2
EZ
145942012-02-11 Eli Zaretskii <eliz@gnu.org>
14595
1c0ca0b7
EZ
14596 * w32select.c (Fx_selection_exists_p): Sync doc string and
14597 argument list with xselect.c. (Bug#10783)
14598
14599 * w16select.c (Fx_selection_exists_p): Sync doc string and
14600 argument list with xselect.c. (Bug#10783)
90b671e2 14601
49241268
GM
146022012-02-10 Glenn Morris <rgm@gnu.org>
14603
14604 * fns.c (Fsecure_hash): Doc fix.
14605
f998bbe7 146062012-02-09 Kenichi Handa <handa@m17n.org>
5c1ca13d
KH
14607
14608 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
14609
0992bd9c
CY
146102012-02-07 Chong Yidong <cyd@gnu.org>
14611
14612 * buffer.c (Fbuffer_local_variables)
14613 (buffer_lisp_local_variables): Handle unbound vars correctly;
14614 don't let Qunbound leak into Lisp.
14615
af008560
GM
146162012-02-07 Glenn Morris <rgm@gnu.org>
14617
dd605cc4
GM
14618 * image.c (Fimagemagick_types): Doc fix.
14619
af008560
GM
14620 * image.c (imagemagick-render-type): Change it from a lisp object
14621 to an integer. Move the doc here from the lisp manual.
14622 Treat all values not equal to 0 the same.
14623
1449fa1d
CY
146242012-02-06 Chong Yidong <cyd@gnu.org>
14625
14626 * doc.c (store_function_docstring): Avoid applying docstring of
14627 alias to base function (Bug#2603).
14628
3723ec07
AS
146292012-02-04 Andreas Schwab <schwab@linux-m68k.org>
14630
14631 * .gdbinit (pp1, pv1): Remove redundant defines.
14632 (pr): Use pp.
14633
79c1cc1e
CY
146342012-02-04 Chong Yidong <cyd@gnu.org>
14635
14636 * nsterm.m: Declare a global (Bug#10694).
14637
d7f29f8e
EZ
146382012-02-04 Eli Zaretskii <eliz@gnu.org>
14639
cae07000
SM
14640 * w32.c (get_emacs_configuration_options):
14641 Include --enable-checking, if specified, in the return value.
d7f29f8e 14642
3b95a6f9
MR
146432012-02-04 Martin Rudalics <rudalics@gmx.at>
14644
14645 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
14646 after rounding frame sizes. (Bug#9723)
14647
d6fa96a6
EZ
146482012-02-04 Eli Zaretskii <eliz@gnu.org>
14649
14650 * keyboard.c (adjust_point_for_property): Don't position point
14651 before BEGV. (Bug#10696)
14652
df0b2940
PE
146532012-02-03 Paul Eggert <eggert@cs.ucla.edu>
14654
14655 Handle overflow when computing char display width (Bug#9496).
14656 * character.c (char_width): Return EMACS_INT, not int.
14657 (char_width, c_string_width): Check for overflow when
14658 computing the width; this is possible now that individual
14659 characters can have unbounded width. Problem introduced
14660 by merge from Emacs 23 on 2012-01-19.
14661
6bee44d6
MA
146622012-02-02 Michael Albinus <michael.albinus@gmx.de>
14663
14664 * dbusbind.c (Fdbus_register_method): Mention the return value
14665 :ignore in the docstring.
14666
44f92739
GM
146672012-02-02 Glenn Morris <rgm@gnu.org>
14668
1b9f60cc
GM
14669 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
14670
44f92739
GM
14671 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
14672 Unconditionally set to t. (Bug#10673)
14673 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
14674 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
14675 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
14676
c5d3843c
KH
146772012-02-02 Kenichi Handa <handa@m17n.org>
14678
14679 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
14680 0, do not call append_composite_glyph.
14681
159462d4 146822012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
14683
14684 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
14685 NULL (Bug#6988).
14686 (x_produce_glyphs): If the component of a composition is a null
14687 string, set it->pixel_width to 1 to avoid zero-width glyph.
14688
78cef877
EZ
146892012-02-01 Eli Zaretskii <eliz@gnu.org>
14690
14691 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
14692 first 2 arguments are identical. This makes inserting large
14693 output from a subprocess an order of magnitude faster on
14694 MS-Windows, where all sbrk'ed memory is always contiguous.
14695
97897668
GM
146962012-01-31 Glenn Morris <rgm@gnu.org>
14697
14698 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
c78c6e0b 14699 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
97897668
GM
14700 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
14701
31fd3586
GM
147022012-01-29 Glenn Morris <rgm@gnu.org>
14703
14704 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
14705
0e24a8b2
CY
147062012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
14707
14708 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
14709
cc0adcb0
CY
147102012-01-28 Chong Yidong <cyd@gnu.org>
14711
14712 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
14713
acc28cb9
CY
147142012-01-26 Chong Yidong <cyd@gnu.org>
14715
9c69cfb7
CY
14716 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
14717
acc28cb9
CY
14718 * search.c (Fsearch_forward, Fsearch_backward): Document negative
14719 repeat counts (Bug#10507).
14720
48da7392
GM
147212012-01-26 Glenn Morris <rgm@gnu.org>
14722
14723 * lread.c (syms_of_lread): Doc fix.
14724
14af5f7f
CY
147252012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
14726
14727 * coding.c (encode_designation_at_bol): Change return value to
14728 EMACS_INT.
14729
0b21c100
CY
147302012-01-25 Chong Yidong <cyd@gnu.org>
14731
14732 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
14733
3c2907f7
CY
147342012-01-21 Chong Yidong <cyd@gnu.org>
14735
14736 * floatfns.c (Fcopysign): Make the second argument non-optional,
14737 since nil is not allowed anyway.
14738
959ad23f
AS
147392012-01-21 Andreas Schwab <schwab@linux-m68k.org>
14740
14741 * process.c (read_process_output): Use p instead of XPROCESS (proc).
14742 (send_process): Likewise.
14743
34a02f46
MR
147442012-01-19 Martin Rudalics <rudalics@gmx.at>
14745
14746 * window.c (save_window_save, Fcurrent_window_configuration)
cae07000
SM
14747 (Vwindow_persistent_parameters): Do not use Qstate.
14748 Rewrite doc-strings.
34a02f46 14749
1259009a 147502012-01-19 Kenichi Handa <handa@m17n.org>
25ed9e61
KH
14751
14752 * character.c (char_width): New function.
70d4fdf6
GM
14753 (Fchar_width, c_string_width, lisp_string_width):
14754 Use char_width (Bug#9496).
25ed9e61 14755
6a6ee00d
MR
147562012-01-16 Martin Rudalics <rudalics@gmx.at>
14757
14758 * window.c (Vwindow_persistent_parameters): New variable.
14759 (Fset_window_configuration, save_window_save): Handle persistent
14760 window parameters.
14761
c85efaf7
EZ
147622012-01-14 Eli Zaretskii <eliz@gnu.org>
14763
14764 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
14765 thrashing the stack of the thread. (Bug#9087)
14766
5944709e
PE
147672012-01-12 Paul Eggert <eggert@cs.ucla.edu>
14768
14769 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
14770
e71f5d99
EZ
147712012-01-11 Eli Zaretskii <eliz@gnu.org>
14772
14773 * xdisp.c (rows_from_pos_range): Handle the case where the
14774 highlight ends on a newline. (Bug#10464)
14775 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
14776 he end column for display of highlight that ends on a newline
14777 before a R2L line.
14778
ce316182
GM
147792012-01-11 Glenn Morris <rgm@gnu.org>
14780
14781 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
14782 from load-path also when installation-directory is nil. (Bug#10208)
14783
5b43da69
GM
147842012-01-10 Glenn Morris <rgm@gnu.org>
14785
74cc8ff9
GM
14786 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
14787
7d8d6e4e
GM
14788 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
14789 Update template values to be closer to their typical values these days.
5b43da69 14790
a0db8d43
EZ
147912012-01-09 Eli Zaretskii <eliz@gnu.org>
14792
14793 * xdisp.c (rows_from_pos_range): Accept additional argument
14794 DISP_STRING, and accept any glyph in a row whose object is that
14795 string as eligible for mouse highlight. Fixes mouse highlight of
14796 display strings from overlays. (Bug#10464)
14797
9a0115ab 147982012-01-07 Paul Eggert <eggert@cs.ucla.edu>
09450bae 14799
b9110d6a 14800 emacs: fix an auto-save permissions race condition (Bug#10400)
09450bae
PE
14801 * fileio.c (auto_saving_dir_umask): New static var.
14802 (Fmake_directory_internal): Use it.
14803 (do_auto_save_make_dir): Set it, instead of invoking chmod after
14804 creating the directory. The old code temporarily assigns
14805 too-generous permissions to the directory.
14806 (do_auto_save_eh): Clear it.
b9110d6a 14807 (Fdo_auto_save): Catch all errors, not just file errors, so
09450bae
PE
14808 that the var is always cleared.
14809
6c1bd3f3
EZ
148102012-01-07 Eli Zaretskii <eliz@gnu.org>
14811
14812 * search.c (scan_buffer): Pass character positions to
14813 know_region_cache, not byte positions. (Bug#6540)
14814
069d2b50
L
148152012-01-07 LynX <_LynX@bk.ru> (tiny change)
14816
14817 * w32.c (sys_rename): Report EXDEV when rename of a directory
14818 fails because the target is on another logical disk. (Bug#10284)
14819
75bf0d33
DB
148202012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
14821
14822 * xterm.c (x_embed_request_focus): New function.
14823
14824 * xterm.h: Add prototype.
14825
14826 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
14827
1c6e5a32
GM
148282012-01-05 Glenn Morris <rgm@gnu.org>
14829
14830 * emacs.c (emacs_copyright): Update short copyright year to 2012.
14831
651e947e
EZ
148322012-01-01 Eli Zaretskii <eliz@gnu.org>
14833
14834 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
14835 Load gnutls_transport_set_lowat only if GnuTLS version is below
14836 2.11.1.
14837 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
14838 GnuTLS versions below 2.11.1.
14839
3778cdd8
AL
148402011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
14841
14842 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
14843 to the doc string advising against its use for altering the way
14844 windows are scrolled.
14845
0e5317f7
KH
148462011-12-28 Kenichi Handa <handa@m17n.org>
14847
14848 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
14849 coding-system ASCII compatible only when it does not produce BOM
14850 on encoding (Bug#10383).
14851
93d5ca1f
JD
148522011-12-26 Jan Djärv <jan.h.d@swipnet.se>
14853
14854 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
14855 can scroll.
14856 (create_and_show_popup_menu): Always use menu_position_func for
14857 Gtk3 (Bug#10361).
14858
ca22b785
AS
148592011-12-24 Andreas Schwab <schwab@linux-m68k.org>
14860
14861 * callint.c (Fcall_interactively): Don't truncate prompt string.
14862
d048e1e6
EZ
148632011-12-23 Eli Zaretskii <eliz@gnu.org>
14864
14865 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
14866 property that ends at ZV, so that the bidi iteration could be
3ba1a2ad 14867 resumed from there (after widening). (Bug#10360)
d048e1e6 14868
5ccaba1f
JD
148692011-12-22 Jan Djärv <jan.h.d@swipnet.se>
14870
14871 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
14872
204ee57f
JD
148732011-12-21 Jan Djärv <jan.h.d@swipnet.se>
14874
b81d40f0
JB
14875 * nsterm.m (x_free_frame_resources):
14876 Release f->output_data.ns->miniimage.
204ee57f
JD
14877 (ns_index_color): Fix indentation. Do not retain
14878 color_table->colors[i].
14879
14880 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
14881 before returning.
14882
14883 * nsfns.m (x_set_background_color): Assign return value from
14884 ns_index_color to face-background instead of NSColor*.
14885 (ns_implicitly_set_icon_type): Fix indentation.
14886 Change assignment in for loop to comparison.
14887
14888 * emacs.c (ns_pool): New variable.
14889 (main): Assign ns_pool.
14890 (Fkill_emacs): Call ns_release_autorelease_pool.
14891
14892 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
14893 autorelease fdesc, release fdAttrs and tdict.
14894 (ns_get_covering_families): Release charset.
14895 (ns_findfonts): Release NSFontDescriptor created with new.
14896 (ns_uni_to_glyphs): Fix indentation.
14897 (setString): Release attrStr before assigning new value.
14898
c803b2b7
JD
148992011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14900
678f4426
JD
14901 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
14902 and NS_IMPL_COCOA.
14903 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
14904 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
14905
cd394be1 149062011-12-18 David Reitter <reitter@cmu.edu>
678f4426 14907
5fecd5fc
JD
14908 * nsterm.m (ns_term_init): Subscribe for notifications
14909 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
14910 to method trackingNotification in EmacsMenu.
14911
14912 * nsmenu.m (trackingMenu): New variable.
3771cb17 14913 (trackingNotification): New method (from Aquamacs).
5fecd5fc 14914 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
3771cb17 14915 from Aquamacs (Bug#7030).
678f4426
JD
14916
149172011-12-18 Jan Djärv <jan.h.d@swipnet.se>
5fecd5fc 14918
c803b2b7
JD
14919 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
14920 (symbol_to_nsstring): Fix indentation.
14921 (ns_symbol_to_pb): New function.
cae07000
SM
14922 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
14923 (Fns_rotate_cut_buffers_internal): Remove.
14924 (Fns_store_selection_internal): Rename from
c803b2b7
JD
14925 Fns_store_cut_buffer_internal.
14926 (ns_get_foreign_selection, Fx_own_selection_internal)
14927 (Fx_disown_selection_internal, Fx_selection_exists_p)
b81d40f0
JB
14928 (Fns_get_selection_internal, Fns_store_selection_internal):
14929 Use ns_symbol_to_pb and check if return value is nil.
14930 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
14931 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
c803b2b7
JD
14932 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
14933 renamed to Sns_store_selection_internal.
14934 (ns_handle_selection_request): Move code to Fx_own_selection_internal
14935 and remove this function.
14936 (ns_handle_selection_clear): Remove, never used.
14937 (Fx_own_selection_internal): Move code from ns_handle_selection_request
14938 here.
14939
e1b01a3a
KB
149402011-12-17 Ken Brown <kbrown@cornell.edu>
14941
14942 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
14943 GID is unknown (Bug#10257).
14944
2adb6e85
PE
149452011-12-17 Paul Eggert <eggert@cs.ucla.edu>
14946
14947 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
14948 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
14949 which caused a build failure on GNU/Linux IA-64. This problem was
14950 introduced by my 2011-10-07 patch.
14951
d1d7b339
JL
149522011-12-15 Juri Linkov <juri@jurta.org>
14953
14954 * image.c (imagemagick_error): New function. (Bug#10112)
14955 (imagemagick_load_image): Comment out `MagickSetResolution' call.
14956 Use `imagemagick_error' where ImageMagick functions return
14957 `MagickFalse'.
14958 (Fimagemagick_types): Add `Fnreverse' to return the list in the
14959 proper order.
14960
100d5755
KH
149612011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14962
14963 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
14964 fill background (Bug#8992).
14965
454592a6
MR
149662011-12-13 Martin Rudalics <rudalics@gmx.at>
14967
14968 * window.c (Vwindow_combination_resize)
14969 (Vwindow_combination_limit): Use t instead of non-nil in
14970 doc-strings.
61d4b438
MR
14971 (Vrecenter_redisplay): Add first sentence of doc-string on
14972 separate line.
53524d93 14973 (Frecenter): Fix doc-string typo.
454592a6 14974
3633e3aa
KH
149752011-12-11 Kenichi Handa <handa@m17n.org>
14976
14977 * coding.c (Funencodable_char_position): Pay attention to the
14978 buffer text relocation (Bug#9389).
14979
7b9d523a 149802011-12-10 Jan Djärv <jan.h.d@swipnet.se>
61ccba97 14981
7b9d523a
JD
14982 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
14983 gtk_init (Bug#10100).
14984
b73189c6
EZ
149852011-12-10 Eli Zaretskii <eliz@gnu.org>
14986
14987 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
14988 IT->string is nil. (Bug#10263)
14989
f7dfe5d6
JD
149902011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14991
83faebb4
JD
14992 * nsterm.h (x_free_frame_resources): Declare.
14993
f7dfe5d6
JD
14994 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
14995 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
14996
14997 * nsterm.h (ns_get_defaults_value): Declare.
14998
14999 * nsterm.m (ns_default): Call ns_get_defaults_value.
15000
7cd4e72c
EZ
150012011-12-09 Eli Zaretskii <eliz@gnu.org>
15002
15003 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
15004 (Bug#10170)
15005
b34d7317
YM
150062011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15007
15008 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
15009 that where the value of an _OBJC_* symbol points to is in the .bss
15010 section (Bug#10240).
15011
76470ad1
KH
150122011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15013
15014 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
2fac8180 15015 after the loop to call ccl_driver at least once (Bug#8619).
76470ad1 15016
745fff94
KH
150172011-12-08 Kenichi Handa <handa@m17n.org>
15018
15019 * ftfont.c (get_adstyle_property): Fix previous change
15020 (Bug#10233).
15021
6e44397c
JB
150222011-12-07 Juanma Barranquero <lekktu@gmail.com>
15023
15024 * w32.c (init_environment): If no_site_lisp, remove site-lisp
15025 dirs from the default value of EMACSLOADPATH (bug#10208).
15026
7efa6272
GM
150272011-12-07 Glenn Morris <rgm@gnu.org>
15028
15029 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
15030 installation and source directories as well. (Bug#10208)
15031
f6fc4d87
CY
150322011-12-06 Chong Yidong <cyd@gnu.org>
15033
15034 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
15035
2bf26180
GM
150362011-12-06 Glenn Morris <rgm@gnu.org>
15037
15038 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
15039 as an error, not just -1. (Bug#10217)
15040
3a6ad4f0
CY
150412011-12-05 Chong Yidong <cyd@gnu.org>
15042
15043 * keyboard.c (process_special_events): New function.
15044 (swallow_events, Finput_pending_p): Use it (Bug#10195).
15045
75a3b399
PE
150462011-12-05 Paul Eggert <eggert@cs.ucla.edu>
15047
15048 * coding.c (encode_designation_at_bol): Don't use uninitialized
15049 local variable (Bug#9318).
15050
c3c9e25e
KH
150512011-12-05 Kenichi Handa <handa@m17n.org>
15052
15053 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
15054 return Qnil (Bug#8046, Bug#10193).
15055
5eb05ea3
KH
150562011-12-05 Kenichi Handa <handa@m17n.org>
15057
15058 * coding.c (encode_designation_at_bol): New args charbuf_end and
15059 dst. Return the number of produced bytes. Callers changed.
a79703f5
KH
15060 (coding_set_source): Return how many bytes coding->source was
15061 relocated.
15062 (coding_set_destination): Return how many bytes
15063 coding->destination was relocated.
15064 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
cae07000 15065 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
5eb05ea3
KH
15066
150672011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15068
15069 * coding.c (CODING_CHAR_CHARSET_P): New macro.
15070 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
15071 macro (Bug#9318).
15072
150732011-12-05 Andreas Schwab <schwab@linux-m68k.org>
15074
15075 The following changes are to fix Bug#9318.
15076
a79703f5 15077 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
5eb05ea3
KH
15078 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
15079 (encode_coding_iso_2022, encode_coding_sjis)
a79703f5 15080 (encode_coding_big5, encode_coding_charset): Use the above macros.
5eb05ea3 15081
7dbda6df
JB
150822011-12-05 Juanma Barranquero <lekktu@gmail.com>
15083
15084 * lisp.h (process_quit_flag): Fix external declaration.
15085
6d5eb5b0
SM
150862011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15087
15088 Don't macro-inline non-performance-critical code.
15089 * eval.c (process_quit_flag): New function.
15090 * lisp.h (QUIT): Use it.
15091
a0c3fad0
JD
150922011-12-04 Jan Djärv <jan.h.d@swipnet.se>
15093
15094 * nsfns.m (get_geometry_from_preferences): New function.
15095 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
15096
6c07aac2
AS
150972011-12-04 Andreas Schwab <schwab@linux-m68k.org>
15098
15099 * emacs.c (Qkill_emacs): Define.
15100 (syms_of_emacs): Initialize it.
15101 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
15102 Qquit_flag to `kill-emacs' instead.
6d5eb5b0
SM
15103 (quit_throw_to_read_char): Add parameter `from_signal'.
15104 All callers changed. Call Fkill_emacs if requested and safe.
6c07aac2
AS
15105 * lisp.h (QUIT): Call Fkill_emacs if requested.
15106
c052ead4
JD
151072011-12-03 Jan Djärv <jan.h.d@swipnet.se>
15108
15109 * widget.c (update_wm_hints): Return if wmshell is null.
15110 (widget_update_wm_size_hints): New function.
15111
15112 * widget.h (widget_update_wm_size_hints): Declare.
15113
15114 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
15115 widget_update_wm_size_hints (Bug#10104).
15116
9e49252b
EZ
151172011-12-03 Eli Zaretskii <eliz@gnu.org>
15118
15119 * xdisp.c (handle_invisible_prop): If the invisible text ends just
15120 before a newline, prepare the bidi iterator for consuming the
15121 newline, and keep the current paragraph direction. (Bug#10183)
e9a49426 15122 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
9e49252b 15123
02b16839
JL
151242011-12-02 Juri Linkov <juri@jurta.org>
15125
15126 * search.c (Fword_search_regexp): New Lisp function created from
15127 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
15128 (Fword_search_backward, Fword_search_forward)
15129 (Fword_search_backward_lax, Fword_search_forward_lax):
15130 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
15131 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
15132
0068070e
SM
151332011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15134
15135 * fileio.c (Finsert_file_contents): Move after-change-function call
15136 to before the "handled:" label, since all "goto handled" appear in
15137 cases where the *-change-functions have already been properly called
15138 (bug#10117).
15139
3360a3fc
AS
151402011-12-01 Andreas Schwab <schwab@linux-m68k.org>
15141
15142 * keyboard.c (interrupt_signal): Don't call kill-emacs when
15143 waiting for input. (Bug#10169)
15144
73d6c093
EZ
151452011-11-30 Eli Zaretskii <eliz@gnu.org>
15146
15147 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
15148 verifies glyph row's hash code--we have just reallocated the
15149 glyphs, so their contents can be complete garbage. (Bug#10164)
15150
febe6bea
JB
151512011-11-30 Juanma Barranquero <lekktu@gmail.com>
15152
15153 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
15154
801a4313
EZ
151552011-11-30 Eli Zaretskii <eliz@gnu.org>
15156
15157 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
15158 attributes are tested _before_ calling verify_row_hash, to protect
15159 against GCC re-ordering of the tests. (Bug#10164)
15160
2b56b87e
JD
151612011-11-29 Jan Djärv <jan.h.d@swipnet.se>
15162
15163 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
15164
15165 * xterm.c (handle_one_xevent): Only set async_visible and friends
15166 if net_wm_state_hidden_seen is non-zero (Bug#10002)
7dbda6df 15167 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
2b56b87e
JD
15168 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
15169
dbf31225
PE
151702011-11-28 Paul Eggert <eggert@cs.ucla.edu>
15171
15172 Remove GCPRO-related macros that exist only to avoid shadowing locals.
15173 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
15174 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
15175 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
15176 All uses changed to use GCPRO1 etc.
15177 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
15178 Revert to old implementation (i.e., before 2011-03-11).
15179
1305621b
YM
151802011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15181
15182 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
15183 of scroll runs so as to avoid assigning disabled bogus rows and
15184 unnecessary graphics copy operations.
15185
8c9afb46
EZ
151862011-11-27 Eli Zaretskii <eliz@gnu.org>
15187
15188 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
15189 (snprintf) [_MSC_VER]: Redirect to _snprintf.
15190 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
15191 (malloc, free, realloc, calloc): Redirect to e_* only when
15192 compiling Emacs.
15193
15194 * lisp.h (GCTYPEBITS): Move before first use.
15195 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
15196 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
15197 this macro definition.
15198
15199 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
15200 _MSC_VER.
15201
54e9e3bf
JD
152022011-11-27 Jan Djärv <jan.h.d@swipnet.se>
15203
6d5eb5b0
SM
15204 * gtkutil.c (xg_create_frame_widgets):
15205 Call gtk_window_set_has_resize_grip (FALSE) if that function is
54e9e3bf
JD
15206 present with Gtk+ 2.0.
15207
83aca1cb
PE
152082011-11-26 Paul Eggert <eggert@cs.ucla.edu>
15209
15210 * fileio.c (Finsert_file_contents): Undo previous change; see
15211 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
15212
5b76caa4
PE
152132011-11-26 Paul Eggert <eggert@cs.ucla.edu>
15214
15215 Rename locals to avoid shadowing.
15216 * fileio.c (Finsert_file_contents):
15217 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
15218 * process.c (wait_reading_process_output):
15219 Rename inner 'proc' to 'p' to avoid shadowing.
15220 Indent for consistency with usual Emacs style.
15221
8c535114
EZ
152222011-11-25 Eli Zaretskii <eliz@gnu.org>
15223
15224 * xdisp.c (redisplay_window): If cursor row is not fully visible
15225 after recentering, and scroll-conservatively is set to a large
15226 number, scroll window by a few more lines to make the cursor fully
15227 visible and out of scroll-margin. (Bug#10105)
91b4a718
EZ
15228 (start_display): Don't move to the next line if the display should
15229 start at a newline that is part of a display vector or an overlay
15230 string. (Bug#10119)
8c535114 15231
fa4fdb5c
JL
152322011-11-24 Juri Linkov <juri@jurta.org>
15233
15234 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
15235 after the `MagickPingImage' call. (Bug#10112)
15236
90ec88df
CY
152372011-11-23 Chong Yidong <cyd@gnu.org>
15238
15239 * window.c (Fcoordinates_in_window_p): Accept only live windows.
15240
56e2e794
MR
152412011-11-23 Martin Rudalics <rudalics@gmx.at>
15242
15243 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
15244 making another buffer current. (Bug#10114)
15245
b6e64c41
GM
152462011-11-23 Glenn Morris <rgm@gnu.org>
15247
15248 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
15249
6b21de18
CY
152502011-11-23 Chong Yidong <cyd@gnu.org>
15251
15252 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
15253 using it (Bug#5984).
15254
b12cd789
EZ
152552011-11-22 Eli Zaretskii <eliz@gnu.org>
15256
15257 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
15258 and header-lines, as they don't have one computed for them.
15259 (Bug#10098)
15260
15261 * .gdbinit (prow): Make displayed values more self-explaining.
15262 Add row's hash code.
15263
261b6fd4
LMI
152642011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15265
15266 * process.c (wait_reading_process_output): Fix asynchrounous
15267 GnuTLS socket handling on some versions of the GnuTLS library.
16c1ad08 15268 (wait_reading_process_output): Add comment and URL.
261b6fd4 15269
e7cfd277
JD
152702011-11-21 Jan Djärv <jan.h.d@swipnet.se>
15271
15272 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
15273
a9b9b7f5
CY
152742011-11-21 Chong Yidong <cyd@gnu.org>
15275
15276 * window.c (Fnext_window, Fprevious_window): Doc fix.
15277
b0d15b4f
SM
152782011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15279
15280 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
15281
fe7a3057
JB
152822011-11-20 Juanma Barranquero <lekktu@gmail.com>
15283
15284 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
15285
d2999b1a
MR
152862011-11-20 Martin Rudalics <rudalics@gmx.at>
15287
15288 * window.c (Fset_window_combination_limit): Rename argument
15289 STATUS to LIMIT.
15290 (Vwindow_combination_limit): Remove "status" from doc-string.
15291
d5ff9cd0
AS
152922011-11-20 Andreas Schwab <schwab@linux-m68k.org>
15293
15294 * m/ibms390.h: Remove.
15295 * m/ibms390x.h: Don't include "ibms390.h".
15296
a5bb9bd3
SM
152972011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15298
15299 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
15300 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
15301
cd1181db
JB
153022011-11-20 Juanma Barranquero <lekktu@gmail.com>
15303
15304 * casetab.c (Fset_case_table):
15305 * charset.c (Fcharset_after): Fix typos.
15306
615a3b8d 153072011-11-20 Paul Eggert <eggert@cs.ucla.edu>
6a0bf43d 15308
17e845af
PE
15309 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
15310 Otherwise, valgrind does not work on some platforms.
15311 Problem reported by Andreas Schwab in
6a0bf43d
PE
15312 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
15313 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
15314 is set, removing the need for VIRT_ADDRESS_VARIES.
15315 (PURE_P): Use a more-efficient implementation that needs just one
15316 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
15317 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
15318 to 4 (xorl, subq, cmpq, setbe).
15319 * alloc.c (pure): Always extern now, since that's the
15320 VIRT_ADDR_VARIES behavior.
15321 (PURE_POINTER_P): Use a single comparison, not two, for
15322 consistency with the new puresize.h.
15323 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
15324 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
15325 Remove VIRT_ADDR_VARIES no longer needed.
15326
f8fe6f96
EZ
153272011-11-19 Eli Zaretskii <eliz@gnu.org>
15328
15329 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
15330 (erase_phys_cursor, update_window_cursor, show_mouse_face)
15331 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
15332 behave as if the cursor position were at the window margin.
15333
15334 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
15335 and the cursor position is out of bounds, behave as if the cursor
15336 position were at the window margin. (Bug#10075)
15337
df05a53c
CY
153382011-11-18 Chong Yidong <cyd@gnu.org>
15339
15340 * window.c (Fwindow_combination_limit): Make first argument
15341 non-optional, since it is meaningless for live windows like the
15342 selected window.
61ccba97 15343
2071918e
DA
153442011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
15345
15346 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
15347
b50a28de
SM
153482011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
15349
15350 * intervals.c: Fix grafting over the whole buffer (bug#10071).
15351 (graft_intervals_into_buffer): Simplify.
15352
015137db
EZ
153532011-11-18 Eli Zaretskii <eliz@gnu.org>
15354
15355 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
15356 hash values of the two rows.
15357 (copy_row_except_pointers): Preserve the used[] arrays and the
15358 hash values of the two rows. (Bug#10035)
68c95424 15359 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
015137db
EZ
15360
15361 * xdisp.c (row_hash): New function, body extracted from
15362 compute_line_metrics.
15363 (compute_line_metrics): Call row_hash, instead of computing the
15364 hash code inline.
15365
15366 * dispnew.c (verify_row_hash): Call row_hash for computing the
15367 hash code of a row, instead of duplicating code from xdisp.c.
15368
15369 * dispextern.h (row_hash): Add prototype.
15370
a2addb04
TH
153712011-11-18 Tassilo Horn <tassilo@member.fsf.org>
15372
15373 * frame.c (delete_frame): Don't delete the terminal when the last
15374 X frame is closed if emacs is built with GTK toolkit.
15375
df85d315
JB
153762011-11-17 Juanma Barranquero <lekktu@gmail.com>
15377
15378 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
15379
a0c2d0ae
MR
153802011-11-17 Martin Rudalics <rudalics@gmx.at>
15381
15382 * window.c (Vwindow_splits): Rename to
15383 Vwindow_combination_resize. Suggested by Juri Linkov.
15384 (Fsplit_window_internal): Use Vwindow_combination_resize instead
15385 of Vwindow_splits.
15386
58179cce
JB
153872011-11-16 Juanma Barranquero <lekktu@gmail.com>
15388
7877f373
JB
15389 * nsfns.m (Fns_font_name):
15390 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
58179cce 15391
b6f67890
MR
153922011-11-16 Martin Rudalics <rudalics@gmx.at>
15393
15394 * window.h (window): Rename slot "nest" to "combination_limit".
15395 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
15396 (Fset_window_nest): Rename to Fset_window_combination_limit.
15397 (Vwindow_nest): Rename to Vwindow_combination_limit.
15398 (recombine_windows, make_parent_window, make_window)
15399 (Fsplit_window_internal, saved_window)
15400 (Fset_window_configuration, save_window_save): Rename all
15401 occurrences of window_nest to window_combination_limit.
15402
c7015153
JB
154032011-11-15 Juanma Barranquero <lekktu@gmail.com>
15404
15405 * image.c (imagemagick_load_image): Fix typo.
15406
322ad6ec
EZ
154072011-11-14 Eli Zaretskii <eliz@gnu.org>
15408
15409 * xdisp.c (display_line): Move the call to
15410 highlight_trailing_whitespace before the call to
15411 compute_line_metrics, since the latter needs to see the final
6d5eb5b0
SM
15412 faces of all the glyphs to compute ROW's hash value.
15413 Fixes assertion violations in row_equal_p. (Bug#10035)
322ad6ec 15414
f067b8ec
JB
154152011-11-14 Juanma Barranquero <lekktu@gmail.com>
15416
15417 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
15418 just return (bug#10044).
15419
1e5b2111
EZ
154202011-11-12 Eli Zaretskii <eliz@gnu.org>
15421
7ef3cbd5
EZ
15422 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
15423 with user-defined heap size. Bump the default size of the temacs
15424 heap to 27MB, to avoid memory warning when running temacs.
15425 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
15426
1e5b2111
EZ
15427 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
15428 current_matrix and desired_matrix. (Bug#9990)
7a7270dd
EZ
15429 (verify_row_hash) [XASSERTS]: New function.
15430 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
15431 that the hash value of glyph rows is correct.
1e5b2111 15432
89d61221
MR
154332011-11-12 Martin Rudalics <rudalics@gmx.at>
15434
15435 * window.h (window): Remove splits slot.
15436 * window.c (Fwindow_splits, Fset_window_splits): Remove.
15437 (Fdelete_other_windows_internal, make_parent_window)
15438 (make_window, Fsplit_window_internal, Fdelete_window_internal)
15439 (Fset_window_configuration, save_window_save): Don't deal with
15440 split status of windows.
15441 (saved_window): Remove splits slot.
15442 (Vwindow_splits): Rewrite doc-string.
15443
97f18cc8
JD
154442011-11-11 Jan Djärv <jan.h.d@swipnet.se>
15445
15446 * xfns.c (unwind_create_frame):
15447 * nsfns.m (unwind_create_frame):
15448 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
15449 Vframe_list (Bug#9999).
15450
22a648b4
DA
154512011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
15452
0b381c7e 15453 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
22a648b4 15454
659afede
KH
154552011-11-11 Kenichi Handa <handa@m17n.org>
15456
15457 * callproc.c (Fcall_process): Set the member dst_multibyte of
15458 process_coding.
15459
9ac0394b
KH
154602011-11-11 Johan Bockgård <bojohan@gnu.org>
15461
15462 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
15463 avoid a crash (bug#9496).
15464
2fbdc249
CY
154652011-11-09 Chong Yidong <cyd@gnu.org>
15466
15467 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
15468 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
15469
ac6b1f81
PE
154702011-11-08 Paul Eggert <eggert@cs.ucla.edu>
15471
15472 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
15473
09db192c
PE
154742011-11-08 Paul Eggert <eggert@cs.ucla.edu>
15475
15476 Avoid some portability problems by eschewing 'extern inline' functions.
15477 The trivial performance wins aren't worth the portability hassles; see
15478 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
15479 et seq.
15480 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
15481 (window_box_width, window_box_left, window_box_left_offset)
15482 (window_box_right, window_box_right_offset): Undo previous change,
15483 by removing the "extern"s.
15484 * intervals.c (adjust_intervals_for_insertion)
15485 (adjust_intervals_for_deletion): Undo previous change,
15486 making these static again.
15487 (offset_intervals, temp_set_point_both, temp_set_point)
15488 (copy_intervals_to_string): No longer inline.
15489 * xdisp.c (window_text_bottom_y, window_box_width)
15490 (window_box_height, window_box_left_offset)
15491 (window_box_right_offset, window_box_left, window_box_right)
15492 (window_box): No longer inline.
15493
105216ed
CY
154942011-11-08 Chong Yidong <cyd@gnu.org>
15495
15496 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
6d5eb5b0
SM
15497 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
15498 Signal an error if not a live window.
105216ed
CY
15499 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
15500 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
15501
ae9e237f
JB
155022011-11-07 Juanma Barranquero <lekktu@gmail.com>
15503
15504 * lisp.h (syms_of_abbrev): Remove declaration.
15505 Reported by CHENG Gao <chenggao@royau.me>.
15506
c7aa8333
EZ
155072011-11-07 Eli Zaretskii <eliz@gnu.org>
15508
15509 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
15510 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
15511 of temacs in GUI mode.
15512
be7f5545
MR
155132011-11-07 Martin Rudalics <rudalics@gmx.at>
15514
15515 * window.h: Declare delete_all_child_windows instead of
15516 delete_all_subwindows.
15517 * window.c (Fwindow_nest, Fset_window_nest)
15518 (Fset_window_new_total, Fset_window_new_normal)
15519 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
15520 (delete_all_subwindows): Rename to delete_all_child_windows.
15521 (Fdelete_other_windows_internal, Fset_window_configuration):
15522 Call delete_all_child_windows instead of delete_all_subwindows.
15523 * frame.c (delete_frame): Call delete_all_child_windows instead
15524 of delete_all_subwindows.
15525
ca78dc43
PE
155262011-11-07 Paul Eggert <eggert@cs.ucla.edu>
15527
15528 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
15529 This is also needed for porting to any host where GC_MARK_STACK is
15530 not GC_MAKE_GCPROS_NOOPS.
15531 (which_symbols): Use it.
15532
a0241d01
KH
155332011-11-07 Kenichi Handa <handa@m17n.org>
15534
15535 * coding.c (coding_set_destination): Check coding->src_pos only
15536 when coding->src_object is a buffer (bug#9910).
15537
15538 * process.c (send_process): Set the member src_multibyte of coding
15539 to 0 (bug#9911) when sending a unibyte text.
15540
15541 * callproc.c (Fcall_process): Set the member src_multibyte of
15542 process_coding to 0 (bug#9912).
15543
a64bfdfa 155442011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ba24cea2
YM
15545
15546 * xmenu.c (cleanup_widget_value_tree): New function.
15547 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
15548 calling free_menubar_widget_value_tree directly (Bug#9830).
15549
cb41b32a
PE
155502011-11-06 Paul Eggert <eggert@cs.ucla.edu>
15551
15552 Fix some portability problems with 'inline'.
15553 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
15554 (window_box_width, window_box_left, window_box_left_offset)
15555 (window_box_right, window_box_right_offset): Declare extern.
15556 Otherwise, these inline functions do not conform to C99 and
15557 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
15558 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
15559 * intervals.c (adjust_intervals_for_insertion)
15560 (adjust_intervals_for_deletion): Now extern, because otherwise the
15561 extern inline functions 'offset_intervals' couldn't refer to it.
15562 (static_offset_intervals): Remove.
15563 (offset_intervals): Rewrite using the old contents of
15564 static_offset_intervals. The old version didn't conform to C99
15565 because an extern inline function contained a reference to an
15566 identifier with static linkage.
15567
b7041366
AS
155682011-11-06 Andreas Schwab <schwab@linux-m68k.org>
15569
15570 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
15571 GC.
15572
88a37c4d
EZ
155732011-11-06 Eli Zaretskii <eliz@gnu.org>
15574
15575 * xdisp.c (init_iterator, reseat_to_string): Don't set the
15576 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
15577 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
15578 return Qleft_to_right.
15579
49745b39
CY
155802011-11-06 Chong Yidong <cyd@gnu.org>
15581
15582 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
15583 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
15584 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
15585 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
15586 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
15587 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
15588 (Fwindow_vscroll): Doc fix.
15589 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
15590 argument, since it makes no sense to pass a live window and for
15591 consistency with window-child.
15592
1f05cd82
CS
155932011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
15594
15595 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
15596 support MSVC.
15597
22610910
JR
155982011-11-05 Jason Rumney <jasonr@gnu.org>
15599
15600 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
15601 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
15602 fonts (Bug#6029).
15603 (add_font_entity_to_list): Fix logic errors in mixed boolean and
15604 bitwise arithmetic preventing use of unicode-sip and non-truetype
15605 opentype fonts.
15606
a06776b2
EZ
156072011-11-05 Eli Zaretskii <eliz@gnu.org>
15608
3ad924ba
EZ
15609 * s/ms-w32.h (fstat, stat, utime): Move redirections to
15610 "emacs"-only part.
15611
a06776b2
EZ
15612 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
15613 initialization code to keep similarity to xfns.c after changes
15614 from 2011-11-05.
15615
c9e7db78
JD
156162011-11-05 Jan Djärv <jan.h.d@swipnet.se>
15617
a97f8f3f
JD
15618 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
15619 (unwind_create_frame): New function (Bug#9943).
15620 (Fx_create_frame): Restructure code to be more similar to the one in
15621 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
15622 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
15623 Move terminal->reference_count++ just before making the frame official
15624 (Bug#9943).
15625
15626 * nsterm.m (x_free_frame_resources): New function.
15627 (x_destroy_window): Move code to x_free_frame_resources.
15628
c9e7db78 15629 * xfns.c (unwind_create_frame): Fix comment.
6d5eb5b0
SM
15630 (Fx_create_frame, x_create_tip_frame):
15631 Move terminal->reference_count++ just before making the frame
75f1671a 15632 official. Move initialization of image_cache_refcount and
c9e7db78
JD
15633 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
15634
a6fc3b5c
EZ
156352011-11-05 Eli Zaretskii <eliz@gnu.org>
15636
15637 Support MSVC build with newer versions of Visual Studio.
15638 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
15639 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
15640 nt/gmake.defs.
15641
15642 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
15643 which are not supported by MSVC.
15644 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
15645 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
15646 bitfields.
15647 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
15648 types in bitfields.
15649 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
15650
15651 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
15652
58179cce 156532011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
a6fc3b5c
EZ
15654
15655 Support MSVC build with newer versions of Visual Studio.
15656 * w32.c: Don't include w32api.h for MSVC.
15657 (init_environment) [_MSC_VER]: Call sys_access, not _access.
15658
15659 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
15660 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
15661 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
15662 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
15663 e_* cousins.
15664 (alloca) [_MSC_VER]: Define to _alloca.
15665
15666 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
15667
15668 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
15669
a58c13ed
EZ
156702011-11-04 Eli Zaretskii <eliz@gnu.org>
15671
15672 * xdisp.c (note_mouse_highlight): If either of
15673 previous/next-single-property-change returns nil, treat that as
15674 the beginning or the end of the buffer. (Bug#9955)
15675
fe0b6370
JD
156762011-11-04 Jan Djärv <jan.h.d@swipnet.se>
15677
a58c13ed 15678 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
fe0b6370
JD
15679 label is not null (Bug#9951).
15680 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
15681 may be NULL.
15682
89bd5ee1
EZ
156832011-11-04 Eli Zaretskii <eliz@gnu.org>
15684
15685 * window.c (Fwindow_body_size): Mention in the doc string that the
15686 return value is in frame's canonical units. (Bug#9949)
15687
84c3edb9
EZ
156882011-11-03 Eli Zaretskii <eliz@gnu.org>
15689
4e2fb5c7
EZ
15690 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
15691
84c3edb9 15692 * w32fns.c (unwind_create_frame): If needed, free the glyph
3ab15fd6 15693 matrices of the partially constructed frame. (Bug#9943)
2a58bbc1 15694 * xfns.c (unwind_create_frame): Likewise.
84c3edb9 15695
bc17a887
EZ
156962011-11-01 Eli Zaretskii <eliz@gnu.org>
15697
15698 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
15699 Don't stop backward scan on the continuation glyph, even though
15700 its CHARPOS is positive.
6d5eb5b0
SM
15701 (mouse_face_from_buffer_pos, note_mouse_highlight):
15702 Rename cover_string to disp_string.
bc17a887 15703
4ee88440
MR
157042011-11-01 Martin Rudalics <rudalics@gmx.at>
15705
15706 * window.c (temp_output_buffer_show): Don't use
15707 Vtemp_buffer_show_specifiers.
15708 (Vtemp_buffer_show_specifiers): Remove unused variable.
15709
c2ff3c02
EZ
157102011-10-30 Eli Zaretskii <eliz@gnu.org>
15711
15712 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
15713 past the beginning of the current glyph matrix.
15714
58179cce 157152011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
6e56383b
JD
15716
15717 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
15718 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
15719 HAVE_GTK3 (Bug#9869).
b77a6a7f 15720
3b574623
JD
15721 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
15722 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
15723
b77a6a7f
JD
15724 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
15725
15726 * xterm.c: Declare x_handle_net_wm_state to return int.
15727 (handle_one_xevent): Check if we are iconified but don't have
15728 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
15729 (get_current_wm_state): Return non-zero if not hidden,
15730 check for _NET_WM_STATE_HIDDEN (Bug#9893).
15731 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
15732 (x_handle_net_wm_state): Return what get_current_wm_state returns.
15733 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
15734
196e41e4
PE
157352011-10-29 Paul Eggert <eggert@cs.ucla.edu>
15736
15737 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
15738 so that this new function doesn't get optimized away by a
15739 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
15740
021f2e1a
AS
157412011-10-29 Andreas Schwab <schwab@linux-m68k.org>
15742
15743 * frame.h (MOUSE_HL_INFO): Remove excess parens.
15744
8b058d44
EZ
157452011-10-29 Eli Zaretskii <eliz@gnu.org>
15746
15747 Fix the `xbytecode' command.
15748 * .gdbinit (xprintbytestr): New command.
b50a28de 15749 (xwhichsymbols): Rename from `which'; all callers changed.
8b058d44
EZ
15750 (xbytecode): Print the byte-code string as well.
15751
4452fb80
EZ
157522011-10-29 Kim Storm <storm@cua.dk>
15753
8b058d44
EZ
15754 * alloc.c (which_symbols): New function.
15755
21b72067
AS
157562011-10-29 Andreas Schwab <schwab@linux-m68k.org>
15757
15758 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
15759 line. (Bug#9903)
15760
83ed7b5c
GM
157612011-10-29 Glenn Morris <rgm@gnu.org>
15762
15763 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
15764 Not clear what it was for, and it causes various bugs. (Bug#9839)
15765
5a7a728b
EZ
157662011-10-28 Eli Zaretskii <eliz@gnu.org>
15767
15768 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
15769 possible random value that matches one of those tested as
15770 condition to clear the mouse face.
15771
d3d0842f
CY
157722011-10-28 Chong Yidong <cyd@gnu.org>
15773
15774 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
15775
31b39d13
DN
157762011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
15777
15778 * window.c (make_window): Initialize phys_cursor_on_p.
15779
9aba6043
SM
157802011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15781
15782 * lisp.h (struct Lisp_Symbol): Update comments.
15783
c20992f4
JB
157842011-10-28 Juanma Barranquero <lekktu@gmail.com>
15785
15786 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
15787
db4f02f2
EZ
157882011-10-28 Eli Zaretskii <eliz@gnu.org>
15789
15790 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
15791 <oslsachem@gmail.com> for helping to debug this.
15792
15793 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
15794 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
15795 (g_b_init_get_glyph_outline_w): New static variables.
15796 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
15797 (GetGlyphOutlineW_Proc): New typedefs.
15798 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
9aba6043
SM
15799 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
15800 New functions.
15801 (w32font_open_internal, compute_metrics):
15802 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
db4f02f2
EZ
15803 instead of calling the "wide" APIs directly.
15804
15805 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
15806
15807 * w32.h (syms_of_w32font): Add prototype.
15808
87e68db4
JB
158092011-10-27 Juanma Barranquero <lekktu@gmail.com>
15810
15811 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
15812 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
15813 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
15814 (Fmove_to_window_line): Doc fix.
15815
435c1d67
CY
158162011-10-27 Chong Yidong <cyd@gnu.org>
15817
15818 * process.c (make_process): Set gnutls_state to NULL.
15819
15820 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
15821 non-NULL, regardless of GNUTLS_INITSTAGE.
15822 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
15823 an error. Set process slots as soon as we allocate them.
15824
15825 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
15826
9c6c6f49
CY
158272011-10-27 Chong Yidong <cyd@gnu.org>
15828
9aba6043
SM
15829 * gnutls.c (emacs_gnutls_deinit): New function.
15830 Deallocate credentials structures as well as calling gnutls_deinit.
9c6c6f49
CY
15831 (Fgnutls_deinit, Fgnutls_boot): Use it.
15832
15833 * process.c (make_process): Initialize GnuTLS credentials to NULL.
15834 (deactivate_process): Call emacs_gnutls_deinit.
15835
657d08d3
JB
158362011-10-27 Juanma Barranquero <lekktu@gmail.com>
15837
15838 * image.c (x_create_x_image_and_pixmap):
15839 * w32.c (sys_rename, w32_delayed_load):
15840 * w32font.c (fill_in_logfont):
15841 * w32reg.c (x_get_string_resource): Silence compiler warnings.
15842
5430d399
JB
158432011-10-26 Juanma Barranquero <lekktu@gmail.com>
15844
15845 * w32fns.c (w32_default_color_map): New function,
15846 extracted from Fw32_default_color_map.
a7ef684b 15847 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
5430d399 15848
fe0055fa
PE
158492011-10-25 Paul Eggert <eggert@cs.ucla.edu>
15850
15851 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
15852
e6346438
SM
158532011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15854
15855 * keyboard.c (test_undefined): New function (bug#9751).
15856 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
15857
e112cc37
ET
158582011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
15859
15860 * sysdep.c (init_sys_modes): Fix the check for the controlling
15861 terminal (Bug#6649).
15862
7b5d6677
EZ
158632011-10-20 Eli Zaretskii <eliz@gnu.org>
15864
15865 * dispextern.h (struct bidi_it): New member next_en_type.
15866
15867 * bidi.c (bidi_line_init): Initialize the next_en_type member.
15868 (bidi_resolve_explicit_1): When next_en_pos is valid for the
15869 current character, check also for next_en_type being WEAK_EN.
15870 (bidi_resolve_weak): Don't enter the expensive loop if the current
15871 position is before next_en_pos. Record the bidi type of the first
15872 non-ET, non-BN character we find, in addition to its position.
15873 (bidi_level_of_next_char): Invalidate next_en_type when
15874 next_en_pos is over-stepped.
15875
7da0b018
PE
158762011-10-20 Paul Eggert <eggert@cs.ucla.edu>
15877
15878 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
15879 * editfns.c: Rewrite current-time-zone so that it invokes
15880 the equivalent of (format-time-string "%Z") to get the time zone name.
15881 This fixes a bug when the time zone name contains characters that
15882 need converting from the system time locale to Emacs internal format.
15883 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
15884 that patch fixed format-time-string to do the conversion, but
15885 I forgot to fix current-time-zone.
15886 (format_time_string): New function, containing most of
15887 what Fformat_time_string used to contain.
15888 (Fformat_time_string): Rewrite in terms of format_time_string.
15889 This doesn't change this function's behavior.
15890 (current-time-zone): Rewrite to use format_time_string.
15891 This fixes the bug reported by Michael Schierl in
15892 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
15893 Jason Rumney's 2007-06-07 change worked around this bug, but
15894 didn't fix it.
15895 * systime.h (tzname, timezone): Remove no-longer-used declarations.
15896
8547b010
EZ
158972011-10-19 Eli Zaretskii <eliz@gnu.org>
15898
15899 * xdisp.c (start_display): If the character at POS is displayed
15900 via a display vector, reset IT->current.dpvec_index to zero.
12b32963
EZ
15901 (try_window_reusing_current_matrix): If a line ends in a display
15902 vector or the next line starts in a display vector, continue
15903 redrawing the window even though the character position of
15904 start_row was reached.
8547b010
EZ
15905 (Bug#9771, part 2)
15906
4e948d15
CY
159072011-10-18 Chong Yidong <cyd@gnu.org>
15908
15909 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
15910 with nobreak-char-display too.
15911
4787455f
EZ
159122011-10-18 Eli Zaretskii <eliz@gnu.org>
15913
15914 Fix part 3 of bug#9771.
15915 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
15916 (bidi_resolve_neutral): Don't enter the expensive loop looking for
15917 non-neutral characters if the current character is a paragraph
15918 separator (a.k.a. Newline). This avoids running the same
15919 expensive loop twice, once when we consume the preceding newline
15920 and the other time when the line actually needs to be displayed.
15921 Avoid the loop when we see neutrals on the base embedding level
15922 following a character whose directionality is the same as the
15923 paragraph's. This avoids running the expensive loop when a line
15924 ends in a long sequence of neutrals, like control characters.
15925 Add assertion against STRONG_AL type. Slightly rearrange code
15926 that determines the type of a neutral given the first non-neutral
15927 that follows it.
15928 (bidi_level_of_next_char): Set next_en_pos to zero when
15929 invalidating its info.
15930
2c91f553
EZ
159312011-10-17 Eli Zaretskii <eliz@gnu.org>
15932
15933 * xdisp.c (push_display_prop): Determine whether to record string
15934 or buffer position by IT->string, not by IT->method. Allow
15935 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
f2ff9e88
EZ
15936 (move_it_vertically_backward): Don't look for character position
15937 immediately after the newline when in a continuation line.
15938 (Bug#9771, part 1)
2c91f553 15939
c7b08b0d
MR
159402011-10-15 Martin Rudalics <rudalics@gmx.at>
15941
15942 * window.c (coordinates_in_window): Rewrite and delabelize
15943 vertical border check. (Bug#5357) (Bug#9618)
15944
6b02f655
SM
159452011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
15946
15947 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
15948 errors in XSetWindowBorder (bug#9310).
15949
81d40c92
DA
159502011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
15951
15952 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
15953 avoid crash when xmalloc overrun checking is enabled.
15954
d4172c3b
EZ
159552011-10-13 Eli Zaretskii <eliz@gnu.org>
15956
15957 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
15958 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
15959 cursor motion with <left> and <right> arrow keys.
15960
15961 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
15962 some callers set that themselves.
15963
b00eea75
EZ
159642011-10-12 Eli Zaretskii <eliz@gnu.org>
15965
15966 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
15967 display string and the previous row comes from the same string and
15968 is empty. (Bug#9739) (Bug#9738)
15969
8fe012c4
SM
159702011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15971
15972 * doc.c (get_doc_string): Encode file name (bug#9735).
15973
0074aef2
EZ
159742011-10-12 Eli Zaretskii <eliz@gnu.org>
15975
79beb178
EZ
15976 * bidi.c (bidi_level_of_next_char):
15977 * xdisp.c (get_visually_first_element): Remove old incorrect
15978 comments regarding the Unicode Line Separator character.
15979
0074aef2
EZ
15980 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
15981
6e4b3fbe
DA
159822011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
15983
15984 * alloc.c (Fgc_status): Do not access beyond zombies array
15985 boundary if nzombies > MAX_ZOMBIES.
15986 * alloc.c (dump_zombies): Add missing format specifier.
15987
0324f3af
PE
159882011-10-12 Paul Eggert <eggert@cs.ucla.edu>
15989
b5525cac
PE
15990 * xdisp.c (set_cursor_from_row): Simplify conditionals,
15991 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
15992
0324f3af
PE
15993 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
15994 Some packages use them to denote characters with modifiers.
15995
e9b5f888
AS
159962011-10-11 Andreas Schwab <schwab@linux-m68k.org>
15997
15998 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
15999 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
16000 matching a pp-number. Rename parameter var to var1.
16001
127827c0
SM
160022011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16003
16004 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
16005
c8fd3bd0
GM
160062011-10-08 Glenn Morris <rgm@gnu.org>
16007
16008 * callint.c (Fcall_interactively): Give a more explicit error for the
16009 'c' case with a non-character input. (Bug#8479)
16010
352ec8ff
EZ
160112011-10-08 Eli Zaretskii <eliz@gnu.org>
16012
03669ccb
EZ
16013 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
16014 lines.
7061c986
EZ
16015 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
16016 lines that are hscrolled on the left.
03669ccb 16017
352ec8ff
EZ
16018 * dispnew.c (buffer_posn_from_coords): Account for a possible
16019 presence of header-line. (Bug#4426)
16020
a66cfb1c
SM
160212011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
16022
6b02f655
SM
16023 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
16024 Don't advertise functionality which we discourage or doesn't work.
a66cfb1c 16025
7c5ee88e
PE
160262011-10-07 Paul Eggert <eggert@cs.ucla.edu>
16027
16028 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
16029 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
16030 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
16031 this makes Emacs dump core during garbage collection on rare
16032 occasions. sizeof is obviously inferior to offsetof here, so
16033 stick with offsetof.
16034 (GC_POINTER_ALIGNMENT): New macro.
16035 (mark_memory): Omit 3rd (offset) arg; caller changed.
16036 Don't assume EMACS_INT alignment is the same as pointer alignment.
16037
df1bbe5b
SM
160382011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16039
16040 * keyboard.c (read_key_sequence_remapped): New var.
16041 (read_key_sequence): Compute remapping in the right buffer.
16042 (command_loop_1): Use read_key_sequence's remapping directly.
16043
51553db6
SM
160442011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16045
32c1fffd
SM
16046 * dired.c (file_name_completion): Don't expand file name.
16047 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
16048 before checking file name handler.
16049
51553db6
SM
16050 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
16051 they've been requested explicitly (bug#9591).
16052
b6bd1599 160532011-10-01 Andreas Schwab <schwab@linux-m68k.org>
fa2ec41f
AS
16054
16055 * keymap.c (Fsingle_key_description): Use make_specified_string
16056 instead of build_string to build string from push_key_description.
16057 (Bug#5193)
16058
f701dc2a
PE
160592011-09-30 Paul Eggert <eggert@cs.ucla.edu>
16060
4222c55d
PE
16061 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
16062 This fixes a Y2038 bug on 64-bit hosts.
16063 * buffer.c (reset_buffer):
16064 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
16065 (Fclear_buffer_auto_save_failure):
16066 Use 0, not -1, to represent an unset failure time, since time_t
16067 might not be signed.
16068
f701dc2a
PE
16069 Remove dependency on glibc malloc internals.
16070 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16071 Move back here from lisp.h, but with their new implementations.
16072 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16073 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
16074 * charset.c (charset_table_init): New static var.
16075 (syms_of_charset): Use it instead of xmalloc. This removes a
16076 dependency on glibc malloc internals. See Eli Zaretskii's comment in
16077 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
16078 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16079 Move back to alloc.c.
16080 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16081 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
16082
9ceebf39
JD
160832011-09-30 Jan Djärv <jan.h.d@swipnet.se>
16084
16085 * nsterm.m (windowDidResize): Call x_set_window_size only when
16086 ns_in_resize is true. Otherwise set pixelwidth/height and
16087 call change_frame_size (Bug#9628).
16088
cb993c58
PE
160892011-09-30 Paul Eggert <eggert@cs.ucla.edu>
16090
3930c88b
PE
16091 Port --enable-checking=all to Fedora 14 x86-64.
16092 * charset.c (syms_of_charset): Also account for glibc malloc's
16093 internal overhead when calculating the initial malloc maximum.
16094
cb993c58
PE
16095 Port --enable-checking=all to Fedora 14 x86.
16096 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16097 Move to lisp.h.
16098 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
16099 (overrun_check_realloc, overrun_check_free):
16100 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
16101 That way, xmalloc returns a properly-aligned pointer even if
16102 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
16103 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
16104 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
16105 into account when calculating the initial malloc maximum.
16106 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16107 Move here from alloc.c, so that charset.c can use it too.
16108 Properly align; the old code wasn't right for common 32-bit hosts
16109 when configured with --enable-checking=all.
16110 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16111 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
16112
31bed486
EZ
161132011-09-29 Eli Zaretskii <eliz@gnu.org>
16114
04c70788 16115 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
31bed486
EZ
16116 use EDOM.
16117
fbcaa2f3
EZ
161182011-09-28 Eli Zaretskii <eliz@gnu.org>
16119
16120 * xdisp.c (compute_display_string_end): If there's no display
16121 string at CHARPOS, return -1.
16122
16123 * bidi.c (bidi_fetch_char): When compute_display_string_end
16124 returns a negative value, treat the character as a normal
16125 character not covered by a display string. (Bug#9624)
16126
a239d4e9
JB
161272011-09-28 Juanma Barranquero <lekktu@gmail.com>
16128
16129 * lread.c (Fread_from_string): Fix typo in docstring.
16130
88652fd5
EZ
161312011-09-27 Eli Zaretskii <eliz@gnu.org>
16132
16133 * xdisp.c (handle_invisible_prop): If invisible text ends on a
16134 newline, reseat the iterator instead of bidi-iterating there one
16135 character at a time. (Bug#9610)
32c1fffd
SM
16136 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
16137 TO_CHARPOS if the bidi iterator is at base embedding level.
88652fd5 16138
ed497dd4
AS
161392011-09-27 Andreas Schwab <schwab@linux-m68k.org>
16140
16141 * lread.c (readevalloop): Use correct code for NBSP.
16142 (read1): Likewise. (Bug#9608)
16143
b2bf61aa
MA
161442011-09-25 Michael Albinus <michael.albinus@gmx.de>
16145
16146 * dbusbind.c (Fdbus_register_signal): When service is not
16147 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
16148
32bbb17c
GM
161492011-09-25 Glenn Morris <rgm@gnu.org>
16150
16151 * buffer.c (truncate-lines): Doc fix.
16152
94e0933e
CY
161532011-09-24 Chong Yidong <cyd@stupidchicken.com>
16154
16155 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
16156 (Fset_window_next_buffers): Doc fix.
16157
cddde921
GM
161582011-09-24 Glenn Morris <rgm@gnu.org>
16159
16160 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
16161
1260aef1
PE
161622011-09-24 Paul Eggert <eggert@cs.ucla.edu>
16163
25b4bfa0
PE
16164 Fix minor problems found by static checking.
16165 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
1260aef1
PE
16166 * indent.c (Fvertical_motion): Fix == vs = typo.
16167
e3cbd34b
EZ
161682011-09-24 Eli Zaretskii <eliz@gnu.org>
16169
a66cfb1c
SM
16170 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
16171 Default value is now t. Doc fix.
6bf7006f 16172
e3cbd34b 16173 * indent.c (Fvertical_motion): Compute and apply the overshoot
32c1fffd 16174 logic when moving up, not only when moving down. Fix the
e3cbd34b 16175 confusing name and values of the it_overshoot_expected variable;
32c1fffd 16176 logic changes accordingly. (Bug#9254) (Bug#9549)
e3cbd34b
EZ
16177
16178 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
16179 CHARPOS is covered by a display string which includes newlines.
16180 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
16181 is covered by a display string with embedded newlines.
16182
a3de0cbd
MA
161832011-09-24 Michael Albinus <michael.albinus@gmx.de>
16184
16185 * dbusbind.c (Fdbus_register_signal): Add match rule to
16186 Vdbus_registered_objects_table. (Bug#9581)
a66cfb1c
SM
16187 (Fdbus_register_method, Vdbus_registered_objects_table):
16188 Fix docstring.
a3de0cbd 16189
b260039d
JM
161902011-09-24 Jim Meyering <meyering@redhat.com>
16191
32c1fffd 16192 do not ignore write error for any output size
b260039d
JM
16193 The previous change was incomplete.
16194 While it makes emacs --batch detect the vast majority of stdout
16195 write failures, errors were still ignored whenever the output size is
16196 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
16197 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
16198 && echo FAIL: ignored write error
16199 FAIL: ignored write error
16200 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
16201 && echo FAIL: ignored write error
16202 FAIL: ignored write error
16203 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
16204
8eca8a7c
AS
162052011-09-23 Andreas Schwab <schwab@linux-m68k.org>
16206
16207 * emacs.c (Fkill_emacs): In noninteractive mode exit
16208 non-successfully if a write error occurred on stdout. (Bug#9574)
16209
3341db62
EZ
162102011-09-21 Eli Zaretskii <eliz@gnu.org>
16211
16212 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
16213 the xassert test.
16214
16215 * dispextern.h (struct it): Update the comment documenting what
16216 can it->OBJECT be.
16217
8c203dbf
EZ
162182011-09-20 Eli Zaretskii <eliz@gnu.org>
16219
16220 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
16221 a display string, extend search for cursor position to end of row.
16222 (find_row_edges): If the row ends in a newline from a display
16223 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
16224 Handle the case of a display string with multiple newlines.
fd317ddf
EZ
16225 (Fcurrent_bidi_paragraph_direction): Fix search for previous
16226 non-empty line. Fixes confusing cursor motion with arrow keys at
16227 the beginning of a line that starts with whitespace.
8c203dbf 16228
a4824228
LMI
162292011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16230
16231 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
16232 (bug#9493).
16233
33ed493b
CY
162342011-09-18 Chong Yidong <cyd@stupidchicken.com>
16235
16236 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
16237 boolean (Bug#9154).
16238
56cd55c8
EZ
162392011-09-18 Eli Zaretskii <eliz@gnu.org>
16240
16241 * xdisp.c (display_line): Record maximum and minimum buffer
16242 positions even if no glyphs were produced (e.g., by a zero-width
16243 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
16244 buffer positions that will be removed from the glyph row because
16245 they don't fit.
c02dcedf
EZ
16246 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
16247 column is beyond frame width: don't subtract 1 "pixel" when
16248 computing width of the stretch.
3e62b7e0
EZ
16249 (reseat_at_next_visible_line_start): Undo the change made on
16250 2011-09-17 that saved paragraph information and restored it after
16251 the call to `reseat'. (Bug#9545)
56cd55c8 16252
5ed99d36 162532011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3390454c
YM
16254
16255 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
16256 and turn window cursor on if cleared (Bug#9415).
16257
5ed99d36 162582011-09-18 Andreas Schwab <schwab@linux-m68k.org>
edb7b4dc
AS
16259
16260 * search.c (boyer_moore): Take unibyte characters from pattern
16261 literally. (Bug#9458)
16262
9bade7b2
EZ
162632011-09-18 Eli Zaretskii <eliz@gnu.org>
16264
16265 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
16266
e5e9d610
PE
162672011-09-18 Paul Eggert <eggert@cs.ucla.edu>
16268
87e4427a
PE
16269 Fix minor problem found by static checking.
16270 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
16271 initialized, to pacify gcc -Wuninitialized.
16272
e5e9d610
PE
16273 * fileio.c: Report proper errno when syscall falls.
16274 (Finsert_file_contents): Save and restore errno,
16275 so that report_file_error outputs the correct diagnostic.
16276 (Fwrite_region) [CLASH_DETECTION]: Likewise.
16277
a1674f0b
EZ
162782011-09-18 Eli Zaretskii <eliz@gnu.org>
16279
16280 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
16281
fbfb6dd4
EZ
162822011-09-17 Eli Zaretskii <eliz@gnu.org>
16283
16284 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
16285 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
16286
bb187662
EZ
162872011-09-17 Eli Zaretskii <eliz@gnu.org>
16288
1137e8b8 16289 * xdisp.c (reseat_at_next_visible_line_start): Keep information
6b02f655 16290 about the current paragraph and restore it after the call to reseat.
1137e8b8
EZ
16291
16292 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
16293 (bidi_find_paragraph_start): Search back for paragraph beginning
16294 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
16295 (bidi_move_to_visually_next): Only trigger paragraph-related
16296 computations when the last character is a newline or at EOB, not
16297 just any NEUTRAL_B. (Bug#9470)
16298
bb187662
EZ
16299 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
16300 truncated lines if point is covered by a display string. (Bug#9524)
16301
2e621251
PE
163022011-09-16 Paul Eggert <eggert@cs.ucla.edu>
16303
16304 * xselect.c: Relax test for outgoing X longs (Bug#9498).
16305 (cons_to_x_long): New function.
16306 (lisp_data_to_selection_data): Use it. Correct the test for
16307 short-versus-long data; it was negated. Break out of vector
16308 loop, for efficiency, when a long datum is discovered.
16309
91a15bc6
SM
163102011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
16311
16312 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
16313
b41c3a35
EZ
163142011-09-16 Eli Zaretskii <eliz@gnu.org>
16315
16316 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
16317 GCC PR/17406) by declaring this function with external scope.
16318
7812ba2d
PE
163192011-09-15 Paul Eggert <eggert@cs.ucla.edu>
16320
16321 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
16322 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
16323
cf7edc2a
AS
163242011-09-15 Andreas Schwab <schwab@linux-m68k.org>
16325
16326 * editfns.c (Fformat): Correctly handle text properties on "%%".
16327
bd01620e
EZ
163282011-09-15 Eli Zaretskii <eliz@gnu.org>
16329
16330 * xterm.c (x_draw_composite_glyph_string_foreground):
16331 * w32term.c (x_draw_composite_glyph_string_foreground):
16332 * term.c (encode_terminal_code):
16333 * composite.c (composition_update_it, get_composition_id):
16334 * xdisp.c (get_next_display_element)
16335 (fill_composite_glyph_string): Add comments about special meaning
16336 of TAB characters in a composition.
16337
a02719a3
PE
163382011-09-15 Paul Eggert <eggert@cs.ucla.edu>
16339
16340 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
4c122725
PE
16341 This occurs when processing a multibyte format.
16342 Problem reported by Wolfgang Jenker.
a02719a3 16343
72589a3c
JB
163442011-09-15 Johan Bockgård <bojohan@gnu.org>
16345
16346 * xdisp.c (try_cursor_movement): Only check for exact match if
16347 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
16348
1c14176c
PE
163492011-09-14 Paul Eggert <eggert@cs.ucla.edu>
16350
16351 Remove unused external symbols.
16352 * dispextern.h (calc_pixel_width_or_height): Remove decl.
16353 * xdisp.c (calc_pixel_width_or_height): Now static.
16354 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
16355 * indent.c (check_display_width):
16356 * w32term.c: Fix comment to match code.
16357 * xterm.c, xterm.h (x_catching_errors): Remove.
16358
d2eea5b5
PE
163592011-09-14 Paul Eggert <eggert@cs.ucla.edu>
16360
16361 * xselect.c: Use signed conversions more consistently (Bug#9498).
16362 (selection_data_to_lisp_data): Assume incoming selection data are
16363 signed integers, not unsigned. This is to be consistent with
16364 outgoing selection data, which was modified to use signed integers
16365 in as part of the fix to Bug#9196 in response to Jan D.'s comment
16366 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
16367 expects long, not unsigned long.
16368
46888499
EZ
163692011-09-14 Eli Zaretskii <eliz@gnu.org>
16370
16371 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
16372 computation of loop end. Reported by Johan Bockgård
16373 <bojohan@gnu.org>.
16374
ef8ef9fb
CY
163752011-09-13 Chong Yidong <cyd@stupidchicken.com>
16376
16377 * frame.c (Fother_visible_frames_p): Function deleted.
16378
fa819fed
EZ
163792011-09-12 Eli Zaretskii <eliz@gnu.org>
16380
16381 * indent.c (compute_motion): Process display vector front to back
16382 rather than the other way around. (Bug#2496)
16383
2ba8e008
SM
163842011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16385
16386 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
16387
20f53c69
CY
163882011-09-11 Chong Yidong <cyd@stupidchicken.com>
16389
16390 * minibuf.c (Fread_from_minibuffer): Doc fix.
16391
d562d7a4
EZ
163922011-09-11 Eli Zaretskii <eliz@gnu.org>
16393
16394 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
16395 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
16396
1c4d7f3d
LMI
163972011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16398
16399 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
16400 value for non-existent files.
16401
b885bf36
EZ
164022011-09-11 Eli Zaretskii <eliz@gnu.org>
16403
16404 * fileio.c (Finsert_file_contents): If the file cannot be opened,
16405 set its "size" to -1. This will set the modtime_size field of
16406 the corresponding buffer to -1, which is what
16407 verify-visited-file-modtime expects for files that do not exist.
16408 (Bug#9139)
16409
6612f0bf
PE
164102011-09-11 Paul Eggert <eggert@cs.ucla.edu>
16411
16412 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
16413 here ...
16414 * lisp.h: ... from here. push_key_description is no longer
16415 defined in keyboard.c, so its declaration should not be in
16416 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
16417 logically belongs with push_key_description.
16418
dfb3f755
PE
164192011-09-10 Paul Eggert <eggert@cs.ucla.edu>
16420
16421 * buffer.h: Include <sys/types.h> instead of <time.h>.
16422 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
16423 Problem reported by Herbert J. Skuhra.
16424
3134906c
LMI
164252011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16426
16427 * xml.c (parse_region): Make the parsing work for
16428 non-comment-starting XML files again (bug#9144).
16429
8d903f4e
AS
164302011-09-10 Andreas Schwab <schwab@linux-m68k.org>
16431
16432 * image.c (gif_load): Fix calculation of bottom and right corner.
16433 (Bug#9468)
16434
80ad64f4
EZ
164352011-09-10 Eli Zaretskii <eliz@gnu.org>
16436
16437 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
16438 redisplay in small windows.
16439
208a048d
EZ
164402011-09-09 Eli Zaretskii <eliz@gnu.org>
16441
16442 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
16443
9b1c252e
MR
164442011-09-08 Martin Rudalics <rudalics@gmx.at>
16445
16446 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
16447 Operate on live windows only.
16448
2949f33b
JB
164492011-09-08 Juanma Barranquero <lekktu@gmail.com>
16450
16451 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
16452
e08dcafd
EZ
164532011-09-07 Eli Zaretskii <eliz@gnu.org>
16454
16455 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
16456 only under bidi iteration.
16457
115b96bd
JD
164582011-09-07 Jan Djärv <jan.h.d@swipnet.se>
16459
16460 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
16461
c8199d0f
PE
164622011-09-06 Paul Eggert <eggert@cs.ucla.edu>
16463
16464 isnan: Fix porting problem to Solaris 10 with bundled gcc.
16465 Without this fix, the command to link temacs failed due to an
16466 undefined symbol __builtin_isnan. This is because
16467 /usr/include/iso/math_c99.h #defines isnan(x) to
16468 __builtin_isnan(x), but the bundled gcc, which identifies itself
16469 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
16470 a __builtin_isnan.
16471 * floatfns.c (isnan): #undef, and then #define to a clone of
16472 what's in data.c.
16473 (Fisnan): Always define, since it's always available now.
16474 (syms_of_floatfns): Always define isnan at the Lisp level.
16475
e39b275c 164762011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1c262cae
PE
16477
16478 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
16479
b2db44d9 164802011-09-06 Paul Eggert <eggert@cs.ucla.edu>
728f8f0a 16481
f4af5137 16482 * fileio.c: Fix bugs with large file offsets (Bug#9428).
728f8f0a
PE
16483 The previous code assumed that file offsets (off_t values) fit in
16484 EMACS_INT variables, which is not true on typical 32-bit hosts.
16485 The code messed up by falsely reporting buffer overflow in cases
16486 such as (insert-file-contents "big" nil 1 2) into an empty buffer
16487 when "big" contains more than 2**29 bytes, even though this
16488 inserts just one byte and does not overflow the buffer.
16489 (Finsert_file_contents): Store file offsets as off_t
16490 values, not as EMACS_INT values. Check for overflow when
16491 converting between EMACS_INT and off_t. When checking for
16492 buffer overflow or for overlap, take the offsets into account.
16493 Don't use EMACS_INT for small values where int suffices.
16494 When checking for overlap, fix a typo: ZV was used where
16495 ZV_BYTE was intended.
16496 (Fwrite_region): Don't assume off_t fits into 'long'.
16497 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
16498
ecfc0a49
MA
164992011-09-05 Michael Albinus <michael.albinus@gmx.de>
16500
16501 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
16502
6511acf2 165032011-09-04 Paul Eggert <eggert@cs.ucla.edu>
61bfeeb7 16504
0999621a 16505 sprintf-related integer and memory overflow issues (Bug#9412).
62f19c19
PE
16506
16507 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
8666506e 16508 (esprintf, exprintf, evxprintf): New functions.
62f19c19 16509 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
6b02f655 16510 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
62f19c19
PE
16511 (modify_event_symbol): Do not assume that the length of
16512 name_alist_or_stem is safe to alloca and fits in int.
16513 (Fexecute_extended_command): Likewise for function name and binding.
16514 (Frecursion_depth): Wrap around reliably on integer overflow.
16515 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
16516 since some callers pass EMACS_INT values.
16517 (Fsingle_key_description): Don't crash if symbol name contains more
16518 than MAX_ALLOCA bytes.
16519 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
16520 (get_minibuffer): Arg is now EMACS_INT, not int.
16521 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
8666506e 16522 (esprintf, exprintf, evxprintf): New decls.
62f19c19
PE
16523 * window.h (command_loop_level, minibuf_level): Reflect API changes.
16524
2be7d702
PE
16525 * dbusbind.c (signature_cat): New function.
16526 (xd_signature, Fdbus_register_signal):
2ea16b89
PE
16527 Do not overrun buffer; instead, report string overflow.
16528
9d1df220
PE
16529 * dispnew.c (add_window_display_history): Don't overrun buffer.
16530 Truncate instead; this is OK since it's just a log.
16531
33ef5c64
PE
16532 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
16533 even if the time zone offset is outlandishly large.
16534 Don't mishandle offset == INT_MIN.
16535
66c6fdd5
PE
16536 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
16537 when creating daemon; the previous buffer-overflow check was incorrect.
16538
d749b01b
PE
16539 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
16540 which has the guts of the old verror function.
16541
b5cd1905
PE
16542 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
16543 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
16544
6e1a67fb
PE
16545 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
16546 (font_unparse_xlfd): Don't blindly alloca long strings.
c21721cc 16547 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
8666506e 16548 fits in int, when using sprintf. Use single snprintf to count
c21721cc
PE
16549 length of string rather than counting it via multiple sprintfs;
16550 that's simpler and more reliable.
c21721cc
PE
16551 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
16552 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
16553 sprintf, in case result does not fit in int.
16554
c57b67fc
PE
16555 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
16556 (fontset_from_font): Print it.
16557
8a401434
PE
16558 * frame.c (tty_frame_count): Now printmax_t, not int.
16559 (make_terminal_frame, set_term_frame_name): Print it.
16560 (x_report_frame_params): In X, window IDs are unsigned long,
16561 not signed long, so print them as unsigned.
16562 (validate_x_resource_name): Check for implausibly long names,
16563 and don't assume name length fits in 'int'.
16564 (x_get_resource_string): Don't blindly alloca invocation name;
16565 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
16566 not fit in int.
16567
6e1a67fb
PE
16568 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
16569 (xg_check_special_colors, xg_set_geometry):
84722b3d
PE
16570 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
16571
0df02bf3
PE
16572 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
16573 Use esprintf, not sprintf, in case result does not fit in int.
16574
48e30793
PE
16575 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
16576 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
16577 it as a large positive number.
16578 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
16579 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
16580
a66ff6d8
PE
16581 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
16582 in case result does not fit in int.
16583
aca216ff
PE
16584 * print.c (float_to_string): Detect width overflow more reliably.
16585 (print_object): Make sprintf buffer a bit bigger, to avoid potential
16586 buffer overrun. Don't assume list length fits in 'int'. Treat
16587 print length of 0 as 0, not as infinity; to be consistent with other
16588 uses of print length in this function. Don't overflow print length
16589 index. Don't assume hash table size fits in 'long', or that
16590 vectorlike size fits in 'unsigned long'.
16591
31c286f7
PE
16592 * process.c (make_process): Use printmax_t, not int, to format
16593 process-name gensyms.
16594
55e5faa1
PE
16595 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
16596
80f2e268
PE
16597 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
16598 to avoid potential buffer overrun.
16599
670741ab
PE
16600 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
16601 if X resource line is longer than 512 bytes.
16602
b7163a50
PE
16603 * xfns.c (x_window): Make sprintf buffer a bit bigger
16604 to avoid potential buffer overrun.
16605
ae58ff1f
PE
16606 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
16607
c43c8a6a
PE
16608 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
16609
3f8236f4
PE
166102011-09-04 Paul Eggert <eggert@cs.ucla.edu>
16611
53e9fe90 16612 Integer overflow fixes for scrolling, etc.
6511acf2
PE
16613 Without these, Emacs silently mishandles large integers sometimes.
16614 For example, "C-u 4294967297 M-x recenter" was treated as if
53e9fe90
PE
16615 it were "C-u 1 M-x recenter" on a typical 64-bit host.
16616
6511acf2
PE
16617 * xdisp.c (try_window_id): Check Emacs fixnum range before
16618 converting to 'int'.
806add1d 16619
6511acf2 16620 * window.c (window_scroll_line_based, Frecenter):
71f02bc5
PE
16621 Check that an Emacs fixnum is in range before assigning it to 'int'.
16622 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
16623 values converted from Emacs fixnums.
16624 (Frecenter): Don't wrap around a line count if it is out of 'int'
16625 range; instead, treat it as an extreme value.
16626 (Fset_window_configuration, compare_window_configurations):
16627 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
16628
6511acf2
PE
16629 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
16630 that can exceed INT_MAX. Check that EMACS_INT value is in range
16631 before assigning it to the (possibly-narrower) index.
a0efffc8
PE
16632 (match_limit): Don't assume that a fixnum can fit in 'int'.
16633
6511acf2 16634 * print.c (print_object): Use ptrdiff_t, not int, for index that can
29ebea3b
PE
16635 exceed INT_MAX.
16636
6511acf2 16637 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
3f8236f4
PE
16638 (Fvertical_motion): Don't wrap around LINES values that don't fit
16639 in 'int'. Instead, treat them as extreme values. This is good
16640 enough for windows, which can't have more than INT_MAX lines anyway.
16641
fcb901a7
LMI
166422011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16643
0f2f6b6d
LMI
16644 * Require libxml/parser.h to avoid compilation warning.
16645
fcb901a7
LMI
16646 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
16647
16648 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
16649 since this reportedly can destroy thread storage.
16650
6e20a0d4
CY
166512011-08-30 Chong Yidong <cyd@stupidchicken.com>
16652
16653 * syntax.c (find_defun_start): Update all cache variables if
16654 exiting early (Bug#9401).
16655
148ae00e
EZ
166562011-08-30 Eli Zaretskii <eliz@gnu.org>
16657
f6cfbd8f
EZ
16658 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
16659
148ae00e
EZ
16660 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
16661 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
16662 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
16663
16664 * term.c (tty_append_glyph): New function.
16665 (produce_stretch_glyph): Static function and its prototype deleted.
16666
a66cfb1c
SM
16667 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
16668 Add prototypes.
148ae00e 16669
c4a07a4c
PE
166702011-08-29 Paul Eggert <eggert@cs.ucla.edu>
16671
16672 * image.c (parse_image_spec): Check for nonnegative, not for positive,
16673 when checking :margin (Bug#9390).
16674 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
a66cfb1c 16675 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
c4a07a4c
PE
16676 so that the name doesn't mislead. All uses changed.
16677
6bc8cd65
JB
166782011-08-28 Johan Bockgård <bojohan@gnu.org>
16679
16680 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
16681 set_tty_hooks.
16682
dca4927e
EZ
166832011-08-27 Eli Zaretskii <eliz@gnu.org>
16684
16685 * xdisp.c (move_it_to): Don't bail out early when reaching
16686 position beyond to_charpos, if we are scanning backwards.
16687 (move_it_vertically_backward): When DY == 0, make sure we get to
16688 the first character in the line after the newline.
16689
f2cad773
PE
166902011-08-27 Paul Eggert <eggert@cs.ucla.edu>
16691
16692 * ccl.c: Improve and simplify overflow checking (Bug#9196).
16693 (ccl_driver): Do not generate an out-of-range pointer.
16694 (Fccl_execute_on_string): Remove unnecessary check for
16695 integer overflow, noted by Stefan Monnier in
16696 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
16697 Remove a FIXME that didn't need fixing.
16698 Simplify the newly-introduced buffer reallocation code.
16699
0cae2cdb
JB
167002011-08-27 Juanma Barranquero <lekktu@gmail.com>
16701
16702 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
16703
5fc295a4 167042011-08-26 Paul Eggert <eggert@cs.ucla.edu>
ddff3151 16705
70c60eb2 16706 Integer and memory overflow issues (Bug#9196).
726e0ab1 16707
d31850da
PE
16708 * doc.c (get_doc_string): Rework so that
16709 get_doc_string_buffer_size is the actual buffer size, rather than
16710 being 1 less than the actual buffer size; this makes xpalloc more
16711 convenient.
16712
a69fbedb
PE
16713 * image.c (x_allocate_bitmap_record, cache_image):
16714 * xselect.c (Fx_register_dnd_atom):
16715 Simplify previous changes by using xpalloc.
16716
fe5c5d37
PE
16717 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
16718 since either will do and ptrdiff_t is convenient with xpalloc.
16719
0065d054
PE
16720 * charset.c (charset_table_size)
16721 (struct charset_sort_data.priority): Now ptrdiff_t.
16722 (charset_compare): Don't overflow if priorities differ greatly.
16723 (Fsort_charsets): Don't assume list length fits in int.
16724 Check for size-calculation overflow when allocating sort data.
16725 (syms_of_charset): Allocate an initial charset table that is
16726 just under 64 KiB, to avoid problems with glibc malloc and mmap.
16727
16728 * cmds.c (internal_self_insert): Check for size-calculation overflow.
16729
16730 * composite.h (struct composition.glyph_len): Now int, not unsigned.
16731 The actual value is always <= INT_MAX, and leaving it unsigned made
16732 overflow checking harder.
16733
16734 * dispextern.h (struct glyph_matrix.rows_allocated)
16735 (struct face_cache.size): Now ptrdiff_t, for convenience in use
16736 with xpalloc. The values are still always <= INT_MAX.
16737
16738 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
16739
16740 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
16741 (SAFE_NALLOCA): New macro.
16742
16743 * region-cache.c (struct boundary.pos, find_cache_boundary)
16744 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
16745 (set_cache_region, invalidate_region_cache)
16746 (revalidate_region_cache, know_region_cache, region_cache_forward)
16747 (region_cache_backward, pp_cache):
16748 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
16749 so that ptrdiff_t * can be passed to xpalloc.
16750 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
16751 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
16752 (pp_cache): Don't assume cache_len fits in int.
16753 * region-cache.h: Adjust extern decls to match.
16754
16755 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
16756 EMACS_INT, since either will do, for xpalloc.
16757
16758 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
16759 (xnmalloc, xnrealloc, xpalloc): New functions.
16760
726e0ab1
PE
16761 * bidi.c (bidi_shelve_header_size): New constant.
16762 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
16763 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
16764
51f30bc5 16765 * bidi.c (bidi_cache_shrink):
726e0ab1
PE
16766 * buffer.c (overlays_at, overlays_in, record_overlay_string)
16767 (overlay_strings):
16768 Don't update size of array until after memory allocation succeeds,
16769 because xmalloc/xrealloc may not return.
0065d054
PE
16770 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
16771 now that we have proper integer overflow checking.
16772 (record_overlay_string, overlay_strings): Catch overflows when
16773 calculating size of overlay_str_buf.
726e0ab1 16774
0065d054
PE
16775 * callproc.c (Fcall_process): Check for size overflow when
16776 calculating size of args2.
16777 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
16778 Normally we prefer signed values, but sticking with ptrdiff_t would
16779 require adding more-complicated checks.
726e0ab1
PE
16780
16781 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
16782 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
16783 Redo buffer-overflow calculations to avoid integer overflow.
0065d054 16784 Add a FIXME comment where memory seems to be over-allocated.
726e0ab1
PE
16785
16786 * character.c (Fstring): Check for size-calculation overflow.
16787
16788 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
16789 unnecessary integer overflow. Check for size overflow.
16790 (encode_coding_object): Don't update size until xmalloc succeeds.
16791
16792 * composite.c (get_composition_id): Check for overflow in glyph
16793 length calculations.
16794
16795 Integer and memory overflow fixes for display code.
16796 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
16797 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
16798 (scrolling_window): Check for overflow in size calculations.
16799 (line_draw_cost, realloc_glyph_pool, add_row_entry):
16800 Don't assume glyph table len fits in int.
16801 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
16802 (row_table_size): Now ptrdiff_t, not int.
16803 (scrolling_window): Avoid overflow in size calculations.
16804 Don't update size until allocation succeeds.
16805 * fns.c (concat): Check for overflow in size calculations.
16806 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
16807 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16808 (NEXT_ALMOST_PRIME_LIMIT): New constant.
16809
16810 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
16811 (get_doc_string): Check for size calculation overflow.
16812 Don't update size until allocation succeeds.
16813 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
16814 EMACS_INT, where ptrdiff_t will do.
16815 (Fsubstitute_command_keys): Check for string overflow.
16816
16817 * editfns.c (set_time_zone_rule): Don't assume environment length
16818 fits in int.
16819 (message_length): Now ptrdiff_t, not int.
16820 (Fmessage_box): Don't update size until allocation succeeds.
16821 Don't assume message length fits in int.
16822 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
16823
0065d054
PE
16824 * emacs.c (main): Do not reallocate argv, since there is a null at
16825 the end that can be overwritten, and this way there's no need to
16826 worry about size-calculation overflow.
16827 (sort_args): Check for size-calculation overflow.
726e0ab1
PE
16828
16829 * eval.c (init_eval_once, grow_specpdl): Don't update size until
16830 alloc succeeds.
16831 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
16832
16833 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
16834 (x_set_scroll_bar_width, x_figure_window_size):
16835 Check for integer overflow.
16836 (x_set_alpha): Do not assume XINT fits in int.
16837
16838 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
16839 This is for the members text_lines, text_cols, total_lines, total_cols,
16840 where the system imposes an 'int' limit.
16841
16842 * fringe.c (Fdefine_fringe_bitmap):
16843 Don't update size until alloc works.
16844
16845 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
16846 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
16847
16848 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
16849 Check for size-calculation overflow.
16850 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
16851 do, as we prefer signed integers.
16852 (id_to_widget.max_size, id_to_widget.used)
16853 (xg_store_widget_in_map, xg_remove_widget_from_map)
16854 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
16855 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
16856 Use and return ptrdiff_t, not int.
16857 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
16858 * gtkutil.h: Change prototypes to match the above.
16859
16860 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
16861 are duplicate now that they've been promoted to lisp.h.
16862 (x_allocate_bitmap_record, x_alloc_image_color)
16863 (make_image_cache, cache_image, xpm_load):
16864 Don't update size until alloc is done.
16865 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
16866 (x_detect_edges):
3256efce 16867 Check for size calculation overflow.
726e0ab1
PE
16868 (ct_colors_allocated_max): New constant.
16869 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
16870 overflow.
3256efce 16871
726e0ab1
PE
16872 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
16873 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
16874 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
16875 Use ptrdiff_t, not int, to count maps.
16876 (read_char_minibuf_menu_prompt): Check for overflow in size
a66cfb1c
SM
16877 calculations. Don't update size until allocation succeeds.
16878 Redo calculations to avoid overflow.
726e0ab1
PE
16879 * keyboard.h: Change prototypes to match the above.
16880
16881 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
16882 to count maps.
16883 (current_minor_maps): Check for size calculation overflow.
16884 * keymap.h: Change prototypes to match the above.
16885
16886 * lread.c (read1, init_obarray): Don't update size until alloc done.
16887
16888 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
16889 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
16890
726e0ab1
PE
16891 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
16892 Now ptrdiff_t, not int.
16893 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
16894 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
16895
16896 * process.c (Fnetwork_interface_list): Check for overflow
16897 in size calculation.
16898
16899 * region-cache.c (move_cache_gap): Check for size calculation overflow.
16900
16901 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
16902 overflow. Don't bother calling xmalloc when xrealloc will do.
16903
16904 * search.c (Freplace_match): Check for size calculation overflow.
16905 (Fset_match_data): Don't assume list lengths fit in 'int'.
16906
16907 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
16908 for command line length. Do not attempt to address one before the
16909 beginning of an array, as that's not portable.
16910
16911 * term.c (max_frame_lines): Remove; unused.
16912 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
16913 not int.
16914 (encode_terminal_code, calculate_costs): Check for size
16915 calculation overflow.
16916 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
16917 table lengths and related sizes. Don't update size until alloc
16918 done. Redo calculations to avoid overflow.
16919 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
16920
16921 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
16922 subtracting pointers.
16923 (gobble_line): Check for overflow more carefully. Don't update size
16924 until alloc done.
16925
16926 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
16927 Don't update size until alloc done.
16928 Redo size calculations to avoid overflow.
16929 Check for size calculation overflow.
0065d054 16930 (main) [DEBUG]: Fix typo in invoking tparam1.
726e0ab1
PE
16931
16932 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
16933 Use ptrdiff_t, not int, for sizes.
16934 (store_mode_line_noprop_char): Don't update size until alloc done.
16935
0065d054
PE
16936 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
16937 Use ptrdiff_t, not int, for sizes.
16938 (Finternal_make_lisp_face, cache_face):
16939 Check for size calculation overflow.
16940 (cache_face): Treat size calculation overflows as if they were
16941 memory exhaustion (the usual treatment), rather than aborting.
726e0ab1
PE
16942
16943 * xfns.c (x_encode_text, x_set_name_internal)
16944 (Fx_change_window_property): Use ptrdiff_t, not int, to count
16945 sizes, since they can exceed INT_MAX in size. Check for size
16946 calculation overflow.
16947
0065d054
PE
16948 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
16949 (xg_select): Check for size calculation overflow.
726e0ab1
PE
16950 Don't update size until alloc done.
16951
0065d054 16952 * xrdb.c (get_environ_db): Don't assume path length fits in int,
726e0ab1 16953 as sprintf is limited to int lengths.
1d526e2f 16954
252c5ee1
PE
16955 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
16956 (X_LONG_MIN): New macros.
864d7ce7
PE
16957 Use them to make the following changes clearer.
16958 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
16959 This change doesn't affect the value now, but it may help remind
16960 future maintainers not to raise the value too much later.
16961 (SELECTION_QUANTUM): Remove, replacing with ...
16962 (selection_quantum): ... new function, which avoids overflow.
16963 All uses changed.
16964 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
16965 assumption that selection length fits in 'int'.
16966 (x_reply_selection_request, x_handle_selection_request)
16967 (x_get_window_property, receive_incremental_selection)
16968 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
16969 (lisp_data_to_selection_data, clean_local_selection_data):
16970 Use ptrdiff_t, not int, to record length of selection.
16971 (x_reply_selection_request, x_get_window_property)
16972 (receive_incremental_selection, x_property_data_to_lisp):
16973 Redo calculations to avoid overflow.
16974 (x_reply_selection_request): When sending hint, ceiling it at
252c5ee1 16975 X_LONG_MAX rather than relying on wraparound overflow to send
864d7ce7
PE
16976 something.
16977 (x_get_window_property, receive_incremental_selection)
16978 (lisp_data_to_selection_data, x_property_data_to_lisp):
16979 Check for size-calculation overflow.
16980 (x_get_window_property, receive_incremental_selection)
16981 (lisp_data_to_selection_data, Fx_register_dnd_atom):
16982 Don't store size until memory allocation succeeds.
16983 (x_get_window_property): Plug memory leak on memory exhaustion.
16984 Don't double-block input; malloc is safe here. Don't assume 2**34
16985 - 4 fits in unsigned long. Add an xassert to check
16986 XGetWindowProperty overflow. Be more careful about overflow
16987 calculations, and distinguish size from memory overflow better.
16988 (receive_incremental_selection): When tracing, don't assume
16989 unsigned int is less than INT_MAX.
16990 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
16991 harmful) conversions of unsigned short to int.
16992 (lisp_data_to_selection_data): Don't assume that integers
16993 in the range -65535 through -1 fit in an X unsigned short.
16994 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
16995 result parameters unless successful. Rely on cons_to_unsigned
16996 to report problems with elements; the old code wasn't right anyway.
16997 (x_check_property_data): Check for int overflow; we cannot use
16998 a wider type due to X limits.
16999 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
17000
726e0ab1 17001 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
34db673b 17002
0065d054
PE
17003 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
17004 (x_term_init): Check for size calculation overflow.
726e0ab1
PE
17005 (x_color_cells): Don't store size until memory allocation succeeds.
17006 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
0065d054 17007 Don't assume alloca size is less than MAX_ALLOCA.
726e0ab1
PE
17008 (x_term_init): Don't assume length fits in int (sprintf is limited
17009 to int size).
bc18e09d 17010
ebfa62c0
PE
17011 Use ptrdiff_t for composition IDs.
17012 * character.c (lisp_string_width):
17013 * composite.c (composition_table_size, n_compositions)
17014 (get_composition_id, composition_gstring_from_id):
17015 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
17016 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
17017 * window.c (Frecenter):
17018 Use ptrdiff_t, not int, for composition IDs.
17019 * composite.c (get_composition_id): Check for integer overflow.
17020 * composite.h: Adjust prototypes to match the above changes.
17021
d3411f89
PE
17022 Use ptrdiff_t for hash table indexes.
17023 * category.c (hash_get_category_set):
17024 * ccl.c (ccl_driver):
17025 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
17026 * coding.c (coding_system_charset_list, detect_coding_system):
17027 * coding.h (struct coding_system.id):
17028 * composite.c (get_composition_id, gstring_lookup_cache):
17029 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
17030 * image.c (xpm_get_color_table_h):
17031 * lisp.h (hash_lookup, hash_put):
17032 * minibuf.c (Ftest_completion):
17033 Use ptrdiff_t for hash table indexes, not int (which is too
17034 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
17035 32-bit --with-wide-int hosts).
17036
e097a6fa
PE
17037 * charset.c (Fdefine_charset_internal): Check for integer overflow.
17038 Add a FIXME comment about memory leaks.
17039 (syms_of_charset): Don't assume xmalloc returns.
17040
5637687f
PE
17041 Don't assume that stated character widths fit in int.
17042 * character.c (Fchar_width, c_string_width, lisp_string_width):
17043 * character.h (CHAR_WIDTH):
17044 * indent.c (MULTIBYTE_BYTES_WIDTH):
17045 Use sanitize_char_width to avoid undefined and/or bad behavior
17046 with outlandish widths.
a66cfb1c 17047 * character.h (sanitize_tab_width): Rename from sanitize_width,
5637687f
PE
17048 now that we have two such functions. All uses changed.
17049 (sanitize_char_width): New inline function.
17050
a2271ba2
PE
17051 Don't assume that tab-width fits in int.
17052 * character.h (sanitize_width): New inline function.
17053 (SANE_TAB_WIDTH): New macro.
17054 (ASCII_CHAR_WIDTH): Use it.
17055 * indent.c (sane_tab_width): Remove. All uses replaced by
17056 SANE_TAB_WIDTH (current_buffer).
17057 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
17058
18c52557
PE
17059 * fileio.c: Integer overflow issues with file modes.
17060 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
17061
caeeedc1
PE
17062 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
17063 Remove unreachable code.
17064 (read_hex, load_charset_map_from_file): Check for integer overflow.
17065
6df6ae42 17066 * xterm.c: Don't go over XClientMessageEvent limit.
50849c52
PE
17067 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
17068 (x_send_scroll_bar_event): Likewise. Check that the size does not
17069 exceed limits imposed by XClientMessageEvent, as well as the usual
17070 ptrdiff_t and size_t limits.
17071
b13995db
PE
17072 * keyboard.c: Overflow, signedness and related fixes.
17073 (make_lispy_movement): Use same integer type in forward decl
17074 that is used in the definition.
17075 (read_key_sequence, keyremap_step):
17076 Change bufsize argument back to int, undoing my 2011-03-30 change.
17077 We prefer signed types, and int is wide enough here.
17078 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
17079 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
17080 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
17081 length, not size_t. Use ptrdiff_t for index, not int.
17082 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
17083 possibility of integer overflow.
17084
13464394
PE
17085 Overflow, signedness and related fixes for images.
17086
17087 * dispextern.h (struct it.stack[0].u.image.image_id)
17088 (struct_it.image_id, struct image.id, struct image_cache.size)
17089 (struct image_cache.used, struct image_cache.ref_count):
17090 * gtkutil.c (update_frame_tool_bar):
17091 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
17092 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
17093 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
17094 * nsmenu.m (update_frame_tool_bar):
17095 * xdisp.c (calc_pixel_width_or_height):
17096 * xfns.c (image_cache_refcount):
17097 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
17098 on typical 64-bit hosts.
17099
17100 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
17101 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
17102 Omit unnecessary casts to int.
17103 (parse_image_spec): Check that integers fall into 'int' range
17104 when the callers expect that.
17105 (image_ascent): Redo ascent calculation to avoid int overflow.
17106 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
17107 (lookup_image): Remove unnecessary tests.
17108 (xbm_image_p): Locals are now of int, not EMACS_INT,
17109 since parse_image_check makes sure they fit into int.
17110 (png_load, gif_load, svg_load_image):
17111 Prefer int to unsigned where either will do.
17112 (tiff_handler): New function, combining the cores of the
a66cfb1c
SM
17113 old tiff_error_handler and tiff_warning_handler.
17114 This function is rewritten to use vsnprintf and thereby avoid
13464394
PE
17115 stack buffer overflows. It uses only the features of vsnprintf
17116 that are common to both POSIX and native Microsoft.
17117 (tiff_error_handler, tiff_warning_handler): Use it.
17118 (tiff_load, gif_load, imagemagick_load_image):
17119 Don't assume :index value fits in 'int'.
17120 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
17121 (imagemagick_load_image): Check that crop parameters fit into
17122 the integer types that MagickCropImage accepts. Don't assume
17123 Vimagemagick_render_type has a nonnegative value. Don't assume
17124 size_t fits in 'long'.
17125 (gs_load): Use printmax_t to print the widest integers possible.
17126 Check for integer overflow when computing image height and width.
17127
c11821d4
EZ
171282011-08-26 Eli Zaretskii <eliz@gnu.org>
17129
17130 * xdisp.c (redisplay_window): Don't force window start if point
17131 will be invisible in the resulting window. (Bug#9324)
17132
0c95fcf7
EZ
171332011-08-25 Eli Zaretskii <eliz@gnu.org>
17134
17135 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
17136 the display spec is of the form `(space ...)'.
17137 (handle_display_spec): Return the value returned by
17138 handle_single_display_spec, not just 1 or zero.
17139 (handle_single_display_spec): If the display spec is of the form
17140 `(space ...)', and specifies display in the text area, return 2
17141 rather than 1.
fee65a97 17142 (try_cursor_movement): Check for the need to scroll more
a66cfb1c
SM
17143 accurately, and prefer exact match for point under bidi.
17144 Don't advance `row' beyond the last row of the window.
0c95fcf7
EZ
17145
17146 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
17147 into disp_prop; all users changed.
17148
17149 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
17150 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
17151 for the text covered by the display property.
17152
e4ed06f1
CY
171532011-08-25 Chong Yidong <cyd@stupidchicken.com>
17154
17155 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
17156 Change return value to nil.
17157 (Frecord_buffer): Delete unused function.
17158
f67cdd7f
EZ
171592011-08-24 Eli Zaretskii <eliz@gnu.org>
17160
5980d4c6
EZ
17161 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
17162 buffers, return left-to-right.
8610fe8b
EZ
17163 (set_cursor_from_row): Consider candidate row a win if its glyph
17164 represents a newline and point is on that newline. Fixes cursor
17165 positioning on the newline at EOL of R2L text within L2R
17166 paragraph, and vice versa.
17167 (try_cursor_movement): Check continued rows, in addition to
17168 continuation rows. Fixes unwarranted scroll when point enters a
17169 continued line of R2L text within an L2R paragraph, or vice versa.
17170 (cursor_row_p): Consider the case of point being equal to
17171 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
17172 from the end of a short line to the beginning of a continued line
17173 of R2L text within L2R paragraph.
17174 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
17175 composed characters.
5980d4c6 17176
f67cdd7f
EZ
17177 * bidi.c (bidi_check_type): Use xassert.
17178 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
17179 members.
17180
bca633fb
EZ
171812011-08-23 Eli Zaretskii <eliz@gnu.org>
17182
17183 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
17184 a character.
17185
4a5885a7
CY
171862011-08-23 Chong Yidong <cyd@stupidchicken.com>
17187
17188 * nsfont.m (ns_otf_to_script): Fix typo.
17189
0902a04e
KH
171902011-08-22 Kenichi Handa <handa@m17n.org>
17191
17192 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
17193 extra slot even if the purpose is char-code-property-table.
17194
1a2e6670
EZ
171952011-08-23 Eli Zaretskii <eliz@gnu.org>
17196
8ddde651
EZ
17197 * xdisp.c (redisplay_window): When computing centering_position,
17198 account for the height of the header line. (Bug#8874)
17199
425cc014
EZ
17200 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
17201 instead of CHAR_TO_BYTE. Fixes a crash when a completion
17202 candidate is selected by the mouse, and that candidate has a
17203 composed character under the mouse.
17204
1a2e6670
EZ
17205 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
17206 coordinates reported by pos-visible-in-window-p for a composed
17207 character in column zero.
17208
8b76d6f8
SM
172092011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
17210
17211 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
17212
dac347dd
EZ
172132011-08-22 Eli Zaretskii <eliz@gnu.org>
17214
17215 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
17216 consider it a hit if to_charpos is anywhere in the range of the
17217 composed buffer positions.
17218
e013fb34
CY
172192011-08-22 Chong Yidong <cyd@stupidchicken.com>
17220
17221 * image.c (gif_load): Don't assume that each subimage has the same
17222 dimensions as the base image. Handle disposal method that is
17223 "undefined" by the gif spec (Bug#9335).
17224
bd1ba3e8
CY
172252011-08-20 Chong Yidong <cyd@stupidchicken.com>
17226
17227 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
024a2d76 17228 (Fcondition_case): Document `debug' symbol in error handler.
bd1ba3e8 17229
54a1215b
EZ
172302011-08-19 Eli Zaretskii <eliz@gnu.org>
17231
823564e5
EZ
17232 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
17233 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
17234 from an Org mode buffer to a Speedbar frame.
17235
54a1215b
EZ
17236 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
17237 a composition, take its buffer position from IT->cmp_it.charpos.
17238 Fixes cursor positioning at the beginning of a line that begins
17239 with a composed character.
17240
9778ebcc
EZ
172412011-08-18 Eli Zaretskii <eliz@gnu.org>
17242
0be6ee06
EZ
17243 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
17244 character bidirectional type, use STRONG_L instead. Fixes crashes
17245 in a buffer produced by `describe-categories'.
17246
9778ebcc
EZ
17247 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
17248 members before the level stack, so they would be saved and
17249 restored when copying iterator state. Fixes incorrect reordering
17250 around TABs covered by display properties.
17251
156bffbe
AS
172522011-08-18 Andreas Schwab <schwab@linux-m68k.org>
17253
6b02f655 17254 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
156bffbe 17255
72ad093b
CY
172562011-08-17 Chong Yidong <cyd@stupidchicken.com>
17257
17258 * eval.c (internal_condition_case, internal_condition_case_1)
8b76d6f8
SM
17259 (internal_condition_case_2, internal_condition_case_n):
17260 Remove unnecessary aborts (Bug#9081).
72ad093b 17261
35774242
EZ
172622011-08-17 Eli Zaretskii <eliz@gnu.org>
17263
17264 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
17265 has no `load' handler, try opening the file locally. (Bug#9311)
17266
db76dd85
KB
172672011-08-16 Ken Brown <kbrown@cornell.edu>
17268
17269 * gmalloc.c: Expand comment.
17270
b215eee5
EZ
172712011-08-16 Eli Zaretskii <eliz@gnu.org>
17272
17273 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
17274 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
17275
a4579d33
KB
172762011-08-16 Ken Brown <kbrown@cornell.edu>
17277
17278 Fix memory allocation problems in Cygwin build (Bug#9273).
17279
17280 * unexcw.c ( __malloc_initialized): Declare external variable.
17281 (fixup_executable): Force the dumped emacs to reinitialize malloc.
17282
8b76d6f8
SM
17283 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
17284 New variables.
a4579d33
KB
17285 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
17286 dumped emacs.
17287 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
17288 in the static heap.
17289 [CYGWIN] (special_realloc): New function.
17290 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
17291 requests to realloc storage in the static heap.
17292
3ebec551
PE
172932011-08-15 Paul Eggert <eggert@cs.ucla.edu>
17294
17295 * bidi.c (bidi_initialize): Remove unused local.
17296
9fd8be00
EZ
172972011-08-15 Eli Zaretskii <eliz@gnu.org>
17298
6b02f655
SM
17299 * bidimirror.h:
17300 * biditype.h: Remove file.
17301 * makefile.w32-in ($(BLD)/bidi.$(O)):
17302 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
474a8465
EZ
17303
17304 * dispextern.h: Fix a typo in the comment to bidi_type_t.
17305
17306 * chartab.c: Improve commentary for the uniprop_table API.
17307
32413314
EZ
17308 * bidi.c (bidi_paragraph_init): Support zero value of
17309 bidi_ignore_explicit_marks_for_paragraph_level.
474a8465
EZ
17310 (bidi_initialize): Use uniprop_table instead of including
17311 biditype.h and bidimirror.h.
32413314 17312
9fd8be00
EZ
17313 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
17314 coordinates of the iterator when restoring from ppos_it.
17315 (Bug#9296)
17316
5cf2b69b
KH
173172011-08-14 Kenichi Handa <handa@m17n.org>
17318
17319 * process.c (create_process): Call setup_process_coding_systems
72ad093b 17320 after the pid of the process is set to -1 (Bug#8162).
5cf2b69b 17321
daf17d00
EZ
173222011-08-14 Eli Zaretskii <eliz@gnu.org>
17323
17324 * xdisp.c (move_it_in_display_line_to): Don't invoke
17325 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
17326 ppos_it. Fixes vertical cursor motion when line beginning is
17327 covered by an image. (Bug#9296)
17328
08e3161a
JD
173292011-08-14 Jan Djärv <jan.h.d@swipnet.se>
17330
17331 * nsterm.h (ns_run_ascript): Declare.
17332 (NSAPP_DATA2_RUNASSCRIPT): Define.
17333
17334 * nsfns.m (as_script, as_result, as_status): New static variables.
17335 (ns_run_ascript): New function.
5e617bc2 17336 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
08e3161a
JD
17337 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
17338 the event loop. Get status from as_status (Bug#7276).
17339
17340 * nsterm.m (sendEvent): If event is NSApplicationDefined and
17341 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
17342 the event loop (Bug#7276).
17343
a3720aa2
AS
173442011-08-14 Andreas Schwab <schwab@linux-m68k.org>
17345
17346 * gnutls.c (QCgnutls_bootprop_priority)
17347 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
17348 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
17349 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
17350 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
17351 (QCgnutls_bootprop_verify_hostname_error)
17352 (QCgnutls_bootprop_callbacks_verify): Rename from
17353 Qgnutls_bootprop_..., all uses changed.
17354
17355 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
17356 uses changed.
17357
0a0d27fb
PE
173582011-08-14 Paul Eggert <eggert@cs.ucla.edu>
17359
19d5c50c
PE
17360 * xfaces.c (Qframe_set_background_mode): Now static.
17361 * dispextern.h (Qframe_set_background_mode): Remove decl.
17362
0a0d27fb
PE
17363 * process.c (Fnetwork_interface_info): Declare local only if needed.
17364
377538cb
JD
173652011-08-13 Jan Djärv <jan.h.d@swipnet.se>
17366
17367 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
17368 (Fnetwork_interface_list): Allocate in increments of bytes instead
17369 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
17370 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
17371 sockaddr.
17372 (struct ifflag_def): notrailers is smart on OSX.
17373 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
17374 Get hardware address with getifaddrs if available.
17375
08fff70c
EZ
173762011-08-12 Eli Zaretskii <eliz@gnu.org>
17377
17378 * xdisp.c (iterate_out_of_display_property): xassert that
17379 IT->position is set to within IT->object's boundaries. Break from
17380 the loop as soon as EOB is reached; avoids infloops in redisplay
8b76d6f8
SM
17381 when IT->position is set up wrongly due to some bug.
17382 Set IT->current to match the bidi iterator unconditionally.
08fff70c
EZ
17383 (push_display_prop): Allow GET_FROM_STRING as IT->method on
17384 entry. Force push_it to save on the stack the current
17385 buffer/string position, to be restored by pop_it. Fix flags in
17386 the iterator structure wrt the object coming from a display
17387 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
17388 properties. (Bug#9284)
17389
7be1c708 173902011-08-09 Andreas Schwab <schwab@linux-m68k.org>
aac0c6e3 17391
7be1c708
CY
17392 * fontset.c (fontset_get_font_group): Add proper type checks.
17393 (Bug#9172)
aac0c6e3 17394
7be1c708 173952011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3 17396
7be1c708
CY
17397 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
17398 and LC_VERSION_MIN_MACOSX.
17399 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
17400 (dump_it) [LC_FUNCTION_STARTS]: Use it.
aac0c6e3 17401
97bb72a6
EZ
174022011-08-08 Eli Zaretskii <eliz@gnu.org>
17403
17404 * xdisp.c (forward_to_next_line_start): Allow to use the
8b76d6f8
SM
17405 no-display-properties-and-no-overlays under bidi display.
17406 Set disp_pos in the bidi iterator to avoid searches for display
757664a4 17407 properties and overlays.
97bb72a6 17408
d5617611
CY
174092011-08-08 Chong Yidong <cyd@stupidchicken.com>
17410
37e11a63
CY
17411 * editfns.c (Fset_time_zone_rule): Document relationship with the
17412 setenv function.
17413
d5617611
CY
17414 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
17415 the font entity extracted from the cache (Bug#8109).
17416
58872834
CY
174172011-08-07 Chong Yidong <cyd@stupidchicken.com>
17418
17419 * composite.c (autocmp_chars): Don't reset point. That is done by
17420 restore_point_unwind (Bug#5984).
17421
75bfc667
JL
174222011-08-07 Juri Linkov <juri@jurta.org>
17423
17424 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
17425 to show the arg `TIME' instead of `TIMEVAL'.
17426
d1410150
EZ
174272011-08-06 Eli Zaretskii <eliz@gnu.org>
17428
17429 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
17430 display property strides EOL and includes a newline, as in
17431 longlines-mode. (Bug#9254)
75b771e4
EZ
17432 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
17433 word-wrap under bidirectional display. (Bug#9224)
d1410150
EZ
17434
17435 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
17436 is non-zero, even if the data buffer is NULL. Fixes a crash in
17437 vertical-motion with longlines-mode. (Bug#9254)
17438
35928349
EZ
174392011-08-05 Eli Zaretskii <eliz@gnu.org>
17440
ec7cc85b
EZ
17441 * bidi.c <bidi_cache_total_alloc>: Now static.
17442 (bidi_initialize): Initialize bidi_cache_total_alloc.
17443
8b76d6f8 17444 * xdisp.c (display_line): Release buffer allocated for shelved bidi
35928349
EZ
17445 cache. (Bug#9221)
17446
17447 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
17448 amount allocated this far in `bidi_cache_total_alloc'.
17449 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
17450 non-zero, only free the data buffer without restoring the cache
17451 contents. All callers changed.
17452
17453 * dispextern.h (bidi_unshelve_cache): Update prototype.
17454
17455 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
17456 (move_it_in_display_line, move_it_to)
17457 (move_it_vertically_backward, move_it_by_lines): Replace the call
17458 to xfree to an equivalent call to bidi_unshelve_cache.
17459 (move_it_in_display_line_to): Fix logic of returning
412b6358 17460 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
35928349 17461
e2e2423b
EZ
174622011-08-05 Eli Zaretskii <eliz@gnu.org>
17463
17464 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
17465 came from a string character with a `cursor' property. (Bug#9229)
17466
ae9e757a
JD
174672011-08-04 Jan Djärv <jan.h.d@swipnet.se>
17468
17469 * Makefile.in (LIB_PTHREAD): New variable.
17470 (LIBES): Add LIB_PTHREAD (Bug#9216).
17471
17472 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
17473 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
17474
213bd7f2
AS
174752011-08-04 Andreas Schwab <schwab@linux-m68k.org>
17476
6b02f655 17477 * regex.c (re_iswctype): Remove some redundant boolean conversions.
213bd7f2 17478
99aaf75f
JD
174792011-08-04 Jan Djärv <jan.h.d@swipnet.se>
17480
17481 * xterm.c (x_find_topmost_parent): New function.
17482 (x_set_frame_alpha): Find topmost parent window with
17483 x_find_topmost_parent and set the property there also (bug#9181).
17484 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
17485
c74e9d86
PE
174862011-08-04 Paul Eggert <eggert@cs.ucla.edu>
17487
17488 * callproc.c (Fcall_process): Avoid vfork clobbering
17489 the local vars buffer, coding_systems, current_dir.
17490
640c8776
SM
174912011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
17492
17493 * keymap.c (Fmake_composed_keymap): Move to subr.el.
17494
f26d0e4c
PE
174952011-08-03 Paul Eggert <eggert@cs.ucla.edu>
17496
8a10d76c
PE
17497 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
17498 so that it is not optimized away.
17499
f26d0e4c
PE
17500 * xdisp.c (compute_display_string_pos): Remove unused local.
17501
55439c61
EZ
175022011-08-02 Eli Zaretskii <eliz@gnu.org>
17503
17504 Fix slow cursor motion and scrolling in large buffers with
17505 selective display, like Org Mode buffers. (Bug#9218)
17506
17507 * dispextern.h (struct bidi_it): New member disp_prop_p.
17508
17509 * xdisp.c: Remove one-slot cache of display string positions.
17510 (compute_display_string_pos): Accept an additional argument
5e617bc2 17511 DISP_PROP_P; callers changed. Scan at most 5K characters forward
55439c61
EZ
17512 for a display string or property. If found, set DISP_PROP_P
17513 non-zero.
17514
17515 * bidi.c (bidi_fetch_char): Accept an additional argument
640c8776
SM
17516 DISP_PROP_P, and pass it to compute_display_string_pos.
17517 Only handle text covered by a display string if DISP_PROP_P is returned
55439c61
EZ
17518 non-zero. All callers of bidi_fetch_char changed.
17519
fb33fa43
SM
175202011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
17521
17522 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
17523
b099e063
DM
175242010-12-03 Don March <don@ohspite.net>
17525
17526 * keymap.c (Fdefine_key): Fix non-prefix key error message when
17527 last character M-[char] is translated to ESC [char] (bug#7541).
17528
5cc7f7af
KH
175292011-08-02 Kenichi Handa <handa@m17n.org>
17530
d0fffa3f 17531 * lisp.h (uniprop_table): Extern it.
5cc7f7af
KH
17532
17533 * chartab.c (uniprop_table): Make it non-static.
17534
525d5e6e
EZ
175352011-08-01 Eli Zaretskii <eliz@gnu.org>
17536
17537 * xdisp.c (forward_to_next_line_start): Accept additional argument
17538 BIDI_IT_PREV, and store into it the state of the bidi iterator had
17539 on the newline.
17540 (reseat_at_next_visible_line_start): Use the bidi iterator state
17541 returned by forward_to_next_line_start to restore the state of
17542 it->bidi_it after backing up to previous newline. (Bug#9212)
17543
31011111
AS
175442011-07-30 Andreas Schwab <schwab@linux-m68k.org>
17545
17546 * regex.c (re_comp): Protoize.
17547 (re_exec): Fix return type.
17548 (regexec): Fix type of `ret'. (Bug#9203)
17549
476371c4
PE
175502011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17551
e5d76069
PE
17552 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
17553 This is needed if max-image-size is a floating-point number.
17554
9a79b20c
AS
175552011-07-28 Andreas Schwab <schwab@linux-m68k.org>
17556
17557 * print.c (print_object): Print empty symbol as ##.
17558
17559 * lread.c (read1): Read ## as empty symbol.
17560
d8c2fa78
AA
175612011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
17562
17563 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
17564 setting frame foreground color (Bug#9175).
17565 (x_set_background_color): Likewise.
17566
ffe57a7a
AA
17567 * nsmenu.m (-setText): Size tooltip dimensions precisely to
17568 contents (Bug#9176).
17569 (EmacsTooltip -init): Remove bezels and add shadows to
17570 tooltip windows.
17571
bf3492a5
AA
17572 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
17573 or scroll bar (Bug#8470).
17574
d55e9c53
AA
17575 * nsfont.m (nsfont_open): Remove assignment to voffset and
17576 unnecessary vars hshink, expand, hd, full_height, min_height.
17577 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
17578
17579 * nsterm.h (nsfont_info): Remove voffset field.
17580
d8c2fa78 175812011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
4843aac3
AA
17582
17583 Implement strike-through and overline on NextStep (Bug#8863).
17584
17585 * nsfont.m (nsfont_open): Use underline position provided by font,
17586 instead of hard-coded value of 2.
17587 (nsfont_draw): Call ns_draw_text_decoration instead.
17588
17589 * nsterm.h: Add declaration for ns_draw_text_decoration.
17590
17591 * nsterm.m (ns_draw_text_decoration): New function for drawing
17592 underline, overline, and strike-through.
17593 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
17594 ns_draw_text_decoration. Change treatment of cursor drawing to
8d5ed899 17595 accommodate underlining, etc.
4843aac3 17596
4cc60b9b
EZ
175972011-07-28 Eli Zaretskii <eliz@gnu.org>
17598
bc7ece87
EZ
17599 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
17600 default.
4cc60b9b 17601
476371c4
PE
176022011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17603
66606eea
PE
17604 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
17605 Without this fix, if a signal arrives just after memory fills up,
17606 'malloc' might be invoked reentrantly.
17607
476371c4
PE
17608 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
17609 In other words, assume that every image size is allowed, on non-X
17610 hosts. This assumption is probably wrong, but it lets Emacs compile.
17611
f3fcc40d
AS
176122011-07-28 Andreas Schwab <schwab@linux-m68k.org>
17613
17614 * regex.c (re_iswctype): Convert return values to boolean.
17615
350c992f
EZ
176162011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
17617
17618 * xdisp.c (compute_display_string_pos): Don't use cached display
17619 string position if the buffer had its restriction changed.
17620 (Bug#9184)
17621
5266b4bb
PE
176222011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17623
17624 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
17625
2573a837 176262011-07-28 Paul Eggert <eggert@cs.ucla.edu>
ca4aa935 17627
41f55ccd 17628 Integer signedness and overflow and related fixes. (Bug#9079)
cf950e6b 17629
39e378da
PE
17630 * bidi.c: Integer size and overflow fixes.
17631 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
17632 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
17633 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17634 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
17635 (bidi_find_other_level_edge):
17636 Use ptrdiff_t instead of EMACS_INT where either will do.
17637 This works better on 32-bit hosts configured --with-wide-int.
17638 (bidi_cache_ensure_space): Check for size-calculation overflow.
17639 Use % rather than repeated addition, for better worst-case speed.
17640 Don't set bidi_cache_size until after xrealloc returns, because it
17641 might not return.
17642 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
f0eb61e9
PE
17643 (bidi_cache_ensure_space): Also check that the bidi cache size
17644 does not exceed that of the largest Lisp string or buffer. See Eli
17645 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
39e378da 17646
5e927815
PE
17647 * alloc.c (__malloc_size_t): Remove.
17648 All uses replaced by size_t. See Andreas Schwab's note
17649 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
17650
ca4aa935
PE
17651 * image.c: Improve checking for integer overflow.
17652 (check_image_size): Assume that f is nonnull, since
17653 it is always nonnull in practice. This is one less thing to
17654 worry about when checking for integer overflow later.
17655 (x_check_image_size): New function, which checks for integer
17656 overflow issues inside X.
17657 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
17658 This removes the need for a memory_full check.
17659 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
17660 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
17661 (xbm_read_bitmap_data): Change locals back to 'int', since
17662 their values must fit in 'int'.
17663 (xpm_load_image, png_load, tiff_load):
17664 Invoke x_create_x_image_and_pixmap earlier,
17665 to avoid much needless work if the image is too large.
17666 (tiff_load): Treat overly large images as if
17667 x_create_x_image_and_pixmap failed, not as malloc failures.
17668 (gs_load): Use x_check_image_size.
17669
5f8f9cc2
PE
17670 * gtkutil.c: Omit integer casts.
17671 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
17672 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
17673
5adf60bc
PE
17674 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
17675
c8907a93
PE
17676 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
17677 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
17678 would wrongly return t on a 64-bit host.
17679
e3c25c68
PE
17680 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
17681 The plain *_OVERFLOW macros run afoul of GCC bug 49705
17682 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
17683 and therefore cause GCC to emit a bogus diagnostic in some cases.
17684
3f791afe
PE
17685 * image.c: Integer signedness and overflow and related fixes.
17686 This is not an exhaustive set of fixes, but it's time to
17687 record what I've got.
17688 (lookup_pixel_color, check_image_size): Remove redundant decls.
17689 (check_image_size): Don't assume that arbitrary EMACS_INT values
17690 fit in 'int', or that arbitrary 'double' values fit in 'int'.
17691 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
17692 (tiff_load, imagemagick_load_image):
17693 Check for overflow in size calculations.
17694 (x_create_x_image_and_pixmap): Remove unnecessary test for
17695 xmalloc returning NULL; that can't happen.
17696 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
17697 (xpm_color_bucket): Use better integer hashing function.
17698 (xpm_cache_color): Don't possibly over-allocate memory.
17699 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
17700 (gif_memory_source):
17701 Use ptrdiff_t, not int or size_t, to record sizes.
17702 (png_load): Don't assume values greater than 2**31 fit in 'int'.
17703 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
17704 either works, as we prefer signed integers.
17705 (tiff_read_from_memory, tiff_write_from_memory):
17706 Return tsize_t, not size_t, since that's what the TIFF API wants.
17707 (tiff_read_from_memory): Don't fail simply because the read would
17708 go past EOF; instead, return a short read.
17709 (tiff_load): Omit no-longer-needed casts.
17710 (Fimagemagick_types): Don't assume size fits into 'int'.
17711
3cc5a532
PE
17712 Improve hashing quality when configured --with-wide-int.
17713 * fns.c (hash_string): New function, taken from sxhash_string.
17714 Do not discard information about ASCII character case; this
17715 discarding is no longer needed.
17716 (sxhash-string): Use it. Change sig to match it. Caller changed.
17717 * lisp.h: Declare it.
17718 * lread.c (hash_string): Remove, since we now use fns.c's version.
17719 The fns.c version returns a wider integer if --with-wide-int is
17720 specified, so this should help the quality of the hashing a bit.
17721
b312a492
PE
17722 * emacs.c: Integer overflow minor fix.
17723 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
17724 Define only if GNU_LINUX.
17725 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
17726
dfd153ae
PE
17727 * dispnew.c: Integer signedness and overflow fixes.
17728 Remove unnecessary forward decls, that were a maintenance hassle.
17729 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
17730 All uses changed.
17731 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
17732 (scrolling_window): Use ptrdiff_t, not int, for byte count.
17733 (prepare_desired_row, line_draw_cost):
17734 Use int, not unsigned, where either works.
17735 (save_current_matrix, restore_current_matrix):
17736 Use ptrdiff_t, not size_t, where either works.
17737 (init_display): Check for overflow more accurately, and without
17738 relying on undefined behavior.
17739
a81d11a3
PE
17740 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
17741 Remove, replacing with the new symbols in lisp.h. All uses changed.
17742 * fileio.c (make_temp_name):
17743 * filelock.c (lock_file_1, lock_file):
17744 * xdisp.c (message_dolog):
17745 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
17746 Use pMd etc. instead.
17747 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
17748 replacing the pWIDE etc. symbols removed from editfns.c.
17749
3300e6fd
PE
17750 * keyboard.h (num_input_events): Now uintmax_t.
17751 This is (very slightly) less likely to mess up due to wraparound.
17752 All uses changed.
17753
fd05c7e9
PE
17754 * buffer.c: Integer signedness fixes.
17755 (alloc_buffer_text, enlarge_buffer_text):
17756 Use ptrdiff_t rather than size_t when either will do, as we prefer
17757 signed integers.
17758
903fe15d
PE
17759 * alloc.c: Integer signedness and overflow fixes.
17760 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
17761 (__malloc_size_t): Default to size_t, not to int.
17762 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
17763 (Fgarbage_collect, mark_object_loop_halt, mark_object):
17764 Prefer ptrdiff_t to size_t when either would do, as we prefer
17765 signed integers.
17766 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
17767 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
17768 Now const. Initialize with values that are in range even if char
17769 is signed.
17770 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
17771 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
17772 These functions do the right thing with sizes > 2**32.
17773 (check_depth): Now ptrdiff_t, not int.
17774 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
17775 Adjust to new way of storing sizes. Check for size overflow bugs
17776 in rest of code.
17777 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
17778 slightly wrong anyway, as it missed one instance of
17779 XMALLOC_OVERRUN_CHECK_OVERHEAD.
17780 (refill_memory_reserve): Omit needless cast to size_t.
17781 (mark_object_loop_halt): Mark as externally visible.
17782
ac82cc6a
PE
17783 * xselect.c: Integer signedness and overflow fixes.
17784 (Fx_register_dnd_atom, x_handle_dnd_message):
17785 Use ptrdiff_t, not size_t, since we prefer signed.
17786 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
17787 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
17788 x_dnd_atoms_size and x_dnd_atoms_length.
17789
c2d1e36d
PE
17790 * doprnt.c: Prefer signed to unsigned when either works.
17791 * eval.c (verror):
17792 * doprnt.c (doprnt):
17793 * lisp.h (doprnt):
17794 * xdisp.c (vmessage):
17795 Use ptrdiff_t, not size_t, when using or implementing doprnt,
17796 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
17797 prefer signed arithmetic to avoid comparison confusion.
17798 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
17799 but is a bit tricky.
17800
0e926e56
PE
17801 Assume freestanding C89 headers, string.h, stdlib.h.
17802 * data.c, doprnt.c, floatfns.c, print.c:
17803 Include float.h unconditionally.
17804 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
17805 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
17806 * regex.c: Likewise for stddef.h, string.h.
17807 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
17808 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
17809 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
17810 (STDC_HEADERS): Remove obsolete defines.
17811 * sysdep.c: Include limits.h unconditionally.
17812
9cfdb3ec
PE
17813 Assume support for memcmp, memcpy, memmove, memset.
17814 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
17815 * regex.c (memcmp, memcpy):
17816 Remove; we assume C89 now.
17817
17818 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
17819 (__malloc_safe_bcopy): Remove; no longer needed.
17820
cf950e6b 17821 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
6089c567
PE
17822 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
17823 well either way, and we prefer signed to unsigned.
17824
dbf38e02
LMI
178252011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17826
17827 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
17828 closes the connection while we're reading (bug#9182).
17829
d6f0886c 178302011-07-25 Jan Djärv <jan.h.d@swipnet.se>
24e0f6b1 17831
d6f0886c
JD
17832 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
17833 are specified (Bug#9168).
24e0f6b1 17834
2eb1f9e6
PE
178352011-07-25 Paul Eggert <eggert@cs.ucla.edu>
17836
17837 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
17838 Found by GCC static checking and --with-wide-int on a 32-bit host.
17839
22381272 178402011-07-25 Eli Zaretskii <eliz@gnu.org>
7daee910
EZ
17841
17842 * xdisp.c (compute_display_string_pos): Fix logic of caching
17843 previous display string position. Initialize cached_prev_pos to
17844 -1. Fixes slow-down at the beginning of a buffer.
17845
f25e39b4
EZ
178462011-07-24 Eli Zaretskii <eliz@gnu.org>
17847
17848 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
17849 for attrs[LFACE_FONTSET_INDEX].
17850
04c4b52e
PE
178512011-07-23 Paul Eggert <eggert@cs.ucla.edu>
17852
17853 * xml.c (parse_region): Remove unused local
17854 that was recently introduced.
17855
c1734fbd
EZ
178562011-07-23 Eli Zaretskii <eliz@gnu.org>
17857
be18c5a5
EZ
17858 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
17859 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
17860
c1734fbd
EZ
17861 * xdisp.c (move_it_in_display_line_to): Record the best matching
17862 position for TO_CHARPOS while scanning the line, and restore it on
640c8776
SM
17863 exit if none of the characters scanned was an exact match.
17864 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
a9269c18
EZ
17865 when exact match is impossible due to invisible text, and the
17866 lines are truncated.
17867
a258d627
JD
178682011-07-23 Jan Djärv <jan.h.d@swipnet.se>
17869
17870 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
17871 for OSX >= 10.7.
17872
b6d5a689
EZ
178732011-07-22 Eli Zaretskii <eliz@gnu.org>
17874
0f74f785
EZ
17875 Fix a significant slow-down of cursor motion with C-n, C-p,
17876 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
17877 auto-repeat under bidi redisplay in fontified buffers.
b6d5a689 17878 * xdisp.c (compute_stop_pos_backwards): New function.
b6d5a689
EZ
17879 (next_element_from_buffer): Call compute_stop_pos_backwards to
17880 find a suitable prev_stop when we find ourselves before
0f74f785
EZ
17881 base_level_stop.
17882 (reseat): Don't look for prev_stop, as that could mean a very long
17883 run.
17884 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
17885 <cached_disp_overlay_modiff>: Cache for last found display string
17886 position.
551918c1 17887 (compute_display_string_pos): Return the cached position if asked
0f74f785
EZ
17888 about the same buffer in the same area of character positions, and
17889 the buffer wasn't changed since the time the display string
17890 position was cached.
551918c1 17891
b2d0c91a
EZ
178922011-07-22 Eli Zaretskii <eliz@gnu.org>
17893
17894 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
17895 is an integer, which is important for empty lines. (Bug#9149)
17896
043604ee
CY
178972011-07-22 Chong Yidong <cyd@stupidchicken.com>
17898
17899 * frame.c (Fmodify_frame_parameters): In tty case, update the
17900 default face if necessary (Bug#4238).
17901
da4adb04
CY
179022011-07-21 Chong Yidong <cyd@stupidchicken.com>
17903
17904 * editfns.c (Fstring_to_char): No need to explain what a character
17905 is in the docstring (Bug#6576).
17906
9abd0532
LMI
179072011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17908
17909 * xml.c (parse_region): Make sure we always return a tree.
17910
36881d16
HK
179112011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
17912
17913 * xml.c (parse_region): If a document contains only comments,
17914 return that, too.
17915
1e98674d
LMI
179162011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17917
17918 * xml.c (make_dom): Return comments, too.
17919
590bd467
PE
179202011-07-19 Paul Eggert <eggert@cs.ucla.edu>
17921
17922 Port to OpenBSD.
17923 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
17924 and the surrounding thread.
17925 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
17926 rather than fgets, and retry after EINTR. Otherwise, 'emacs
17927 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
17928 timer goes off.
17929 * s/openbsd.h (BROKEN_SIGIO): Define.
17930 * unexelf.c (unexec) [__OpenBSD__]:
17931 Don't update the .mdebug section of the Alpha COFF symbol table.
17932
f41628b2
LMI
179332011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
17934
17935 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
17936 (bug#8460).
17937
b59b67c5
PE
179382011-07-18 Paul Eggert <eggert@cs.ucla.edu>
17939
15e3a074
PE
17940 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
17941 This fixes some race conditions on the permissions of any newly
17942 created file.
17943
41bed37d
PE
17944 * alloc.c (valid_pointer_p): Use pipe, not open.
17945 This fixes some permissions issues when debugging.
17946
b59b67c5
PE
17947 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
17948 If fchown fails to set both uid and gid, try to set just gid,
17949 as that is sometimes allowed. Adjust the file's mode to eliminate
17950 setuid or setgid bits that are inappropriate if fchown fails.
17951
925a6be7
SM
179522011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
17953
17954 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
17955 to compare Lisp_Objects.
17956 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
17957 global_gnutls_log_level, don't mistake it for a Lisp_Object.
17958 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
17959
52968808
AS
179602011-07-17 Andreas Schwab <schwab@linux-m68k.org>
17961
0a6a104b
AS
17962 * lread.c (read_integer): Unread even EOF character.
17963 (read1): Likewise. Properly record start position of symbol.
17964
52968808
AS
17965 * lread.c (read1): Read `#:' as empty uninterned symbol if no
17966 symbol character follows.
17967
9e381cdd
PE
179682011-07-17 Paul Eggert <eggert@cs.ucla.edu>
17969
17970 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
17971 This works around a problem with the previous change to Fcopy_file.
17972 Recent glibc declares fchown with __attribute__((warn_unused_result)),
17973 and without this change, GCC might complain about discarding
17974 fchown's return value.
17975
b5641435
JB
179762011-07-16 Juanma Barranquero <lekktu@gmail.com>
17977
17978 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
17979
a8031457
PE
179802011-07-16 Paul Eggert <eggert@cs.ucla.edu>
17981
17982 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
17983
dd889327
LMI
179842011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17985
750c33f7
LMI
17986 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
17987 it's used from the C level.
17988
dd889327
LMI
17989 * process.c: Use the same condition for POLL_FOR_INPUT in both
17990 keyboard.c and process.c (bug#1858).
17991
87e86684
LM
179922011-07-09 Lawrence Mitchell <wence@gmx.li>
17993
17994 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
17995 (Fgnutls_boot): Use it.
17996
64348f40
AS
179972011-07-15 Andreas Schwab <schwab@linux-m68k.org>
17998
17999 * doc.c (Fsubstitute_command_keys): Revert last change.
18000
1d698799
LMI
180012011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18002
f863868c
LMI
18003 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
18004 quotes the next character, and doesn't affect other longer
18005 sequences (bug#8935).
18006
1d698799
LMI
18007 * lread.c (syms_of_lread): Clarify that is isn't only
18008 `eval-buffer' and `eval-defun' that's affected by
18009 `lexical-binding' (bug#8460).
18010
aa4b6df6
EZ
180112011-07-15 Eli Zaretskii <eliz@gnu.org>
18012
18013 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
6b02f655 18014 bidi redisplay when a line includes both an image and is truncated.
aa4b6df6 18015
5d856da6
PE
180162011-07-14 Paul Eggert <eggert@cs.ucla.edu>
18017
ad6042bb
PE
18018 Fix minor problems found by static checking.
18019 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
18020 (elsz): Now a signed constant, not a size_t var. We prefer signed
18021 types to unsigned, to avoid integer comparison confusion. Without
18022 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
18023 "cannot optimize loop, the loop counter may overflow", a symptom
18024 of the confusion.
f00bbb22 18025 * indent.c (Fvertical_motion): Mark locals as initialized.
5d856da6
PE
18026 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
18027
6468f31c
LMI
180282011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18029
49080b10
LMI
18030 * search.c (Fre_search_backward): Mention `case-fold-search' in
18031 all the re_search_* functions (bug#8138).
18032
6468f31c
LMI
18033 * keyboard.c (Fopen_dribble_file): Document when the file is
18034 closed (bug#8056).
18035
c965adc5
EZ
180362011-07-14 Eli Zaretskii <eliz@gnu.org>
18037
df9733bf
EZ
18038 * bidi.c (bidi_dump_cached_states): Fix format of displaying
18039 bidi_cache_idx.
18040
0bb23927
EZ
18041 Support bidi reordering of display and overlay strings.
18042 * xdisp.c (compute_display_string_pos)
18043 (compute_display_string_end): Accept additional argument STRING.
18044 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
18045 (reseat_to_string): Initialize bidi_it->string.s and
18046 bidi_it->string.schars.
18047 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
640c8776
SM
18048 NULL (avoids a crash in bidi_paragraph_init).
18049 Initialize itb.string.lstring.
0bb23927
EZ
18050 (init_iterator): Call bidi_init_it only of a valid
18051 buffer position was specified. Initialize paragraph_embedding to
18052 L2R.
18053 (reseat_to_string): Initialize the bidi iterator.
18054 (display_string): If we need to ignore text properties of
18055 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
18056 original value of -1 will not work with bidi.)
18057 (compute_display_string_pos): First arg is now struct
18058 `text_pos *'; all callers changed. Support display properties on
18059 Lisp strings.
18060 (compute_display_string_end): Support display properties on Lisp
18061 strings.
18062 (init_iterator, reseat_1, reseat_to_string): Initialize the
18063 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
18064 when iterating on a string not from display properties).
640c8776
SM
18065 (compute_display_string_pos, compute_display_string_end):
18066 Fix calculation of the object to scan. Fixes an error when using
0bb23927
EZ
18067 arrow keys.
18068 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
640c8776
SM
18069 base_level_stop; instead, set base_level_stop to BEGV.
18070 Fixes crashes in vertical-motion.
0bb23927
EZ
18071 (next_element_from_buffer): Improve commentary for when
18072 the iterator is before prev_stop.
18073 (init_iterator): Initialize bidi_p from the default value of
18074 bidi-display-reordering, not from buffer-local value. Use the
18075 buffer-local value only if initializing for buffer iteration.
18076 (handle_invisible_prop): Support invisible properties on strings
18077 that are being bidi-reordered.
18078 (set_iterator_to_next): Support bidi reordering of C strings and
18079 Lisp strings.
18080 (next_element_from_string): Support bidi reordering of Lisp
18081 strings.
18082 (handle_stop_backwards): Support Lisp strings as well.
640c8776
SM
18083 (display_string): Support display of R2L glyph rows.
18084 Use IT_STRING_CHARPOS when displaying from a Lisp string.
0bb23927
EZ
18085 (init_iterator): Don't initialize it->bidi_p for strings
18086 here.
18087 (reseat_to_string): Initialize it->bidi_p for strings here.
18088 (next_element_from_string, next_element_from_c_string)
18089 (next_element_from_buffer): Add xassert's for correspondence
18090 between IT's object being iterated and it->bidi_it.string
18091 structure.
18092 (face_before_or_after_it_pos): Support bidi iteration.
18093 (next_element_from_c_string): Handle the case of the first string
18094 character that is not the first one in the visual order.
18095 (get_visually_first_element): New function, refactored from common
18096 parts of next_element_from_buffer, next_element_from_string, and
18097 next_element_from_c_string.
18098 (tool_bar_lines_needed, redisplay_tool_bar)
18099 (display_menu_bar): Force left-to-right direction. Add a FIXME
18100 comment for making that be controlled by a user option.
18101 (push_it, pop_it): Save and restore the state of the
18102 bidi iterator. Save and restore the bidi_p flag.
18103 (pop_it): Iterate out of display property for string iteration as
18104 well.
18105 (iterate_out_of_display_property): Support iteration over strings.
18106 (handle_single_display_spec): Set up it->bidi_it for iteration
18107 over a display string, and call bidi_init_it.
18108 (handle_single_display_spec, next_overlay_string)
18109 (get_overlay_strings_1, push_display_prop): Set up the bidi
18110 iterator for displaying display or overlay strings.
18111 (forward_to_next_line_start): Don't use the shortcut if
18112 bidi-iterating.
18113 (back_to_previous_visible_line_start): If handle_display_prop
18114 pushed the iterator stack, restore the internal state of the bidi
18115 iterator by calling bidi_pop_it same number of times.
18116 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
18117 and we are bidi-iterating, don't decrement the iterator position;
18118 instead, set the first_elt flag in the bidi iterator, to produce
18119 the same effect.
18120 (reseat_1): Remove redundant setting of string_from_display_prop_p.
18121 (push_display_prop): xassert that we are iterating a buffer.
18122 (push_it, pop_it): Save and restore paragraph_embedding member.
18123 (handle_single_display_spec, next_overlay_string)
18124 (get_overlay_strings_1, reseat_1, reseat_to_string)
18125 (push_display_prop): Set up the `unibyte' member of bidi_it.string
18126 correctly. Don't assume unibyte strings are not bidi-reordered.
18127 (compute_display_string_pos)
18128 (compute_display_string_end): Fix handling the case of C string.
18129 (push_it, pop_it): Save and restore from_disp_prop_p.
18130 (handle_single_display_spec, push_display_prop): Set the
18131 from_disp_prop_p flag.
18132 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
18133 (pop_it): Call iterate_out_of_display_property only if we are
18134 popping after iteration over a string that came from a display
18135 property. Fix a typo in popping stretch info. Add an assertion
18136 for verifying that the iterator position is in sync with the bidi
18137 iterator.
18138 (handle_single_display_spec, get_overlay_strings_1)
18139 (push_display_prop): Fix initialization of paragraph direction for
18140 string when that of the parent object is not yet determined.
18141 (reseat_1): Call bidi_init_it to resync the bidi
18142 iterator with IT's position. (Bug#7616)
18143 (find_row_edges): If ROW->start.pos gives position
18144 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
18145 (handle_stop, back_to_previous_visible_line_start, reseat_1):
18146 Reset the from_disp_prop_p flag.
18147 (SAVE_IT, RESTORE_IT): New macros.
18148 (pos_visible_p, face_before_or_after_it_pos)
18149 (back_to_previous_visible_line_start)
18150 (move_it_in_display_line_to, move_it_in_display_line)
18151 (move_it_to, move_it_vertically_backward, move_it_by_lines)
18152 (try_scrolling, redisplay_window, display_line): Use them when
18153 saving a temporary copy of the iterator and restoring it back.
18154 (back_to_previous_visible_line_start, reseat_1)
18155 (init_iterator): Empty the bidi cache "stack".
18156 (move_it_in_display_line_to): If iterator ended up at
18157 EOL, but we never saw any buffer positions smaller than
18158 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
18159 motion in bidi-reordered lines.
18160 (move_it_in_display_line_to): Record prev_method and prev_pos
18161 immediately before the call to set_iterator_to_next. Fixes cursor
18162 motion in bidi-reordered lines with stretch glyphs and strings
18163 displayed in margins. (Bug#8133) (Bug#8867)
18164 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
18165 TO_CHARPOS.
640c8776
SM
18166 (pos_visible_p): Support positions in bidi-reordered lines.
18167 Save and restore bidi cache.
0bb23927
EZ
18168
18169 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
18170 (bidi_paragraph_info): Delete unused struct.
18171 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
18172 (bidi_cache_start): New variable.
18173 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
18174 to zero.
18175 (bidi_cache_fetch_state, bidi_cache_search)
18176 (bidi_cache_find_level_change, bidi_cache_iterator_state)
18177 (bidi_cache_find, bidi_peek_at_next_level)
18178 (bidi_level_of_next_char, bidi_find_other_level_edge)
18179 (bidi_move_to_visually_next): Compare cache index with
18180 bidi_cache_start rather than with zero.
18181 (bidi_fetch_char): Accept new argument STRING; all callers
18182 changed. Support iteration over a string. Support strings with
18183 display properties. Support unibyte strings. Fix the type of
18184 `len' according to what STRING_CHAR_AND_LENGTH expects.
18185 (bidi_paragraph_init, bidi_resolve_explicit_1)
18186 (bidi_resolve_explicit, bidi_resolve_weak)
640c8776
SM
18187 (bidi_level_of_next_char, bidi_move_to_visually_next):
18188 Support iteration over a string.
0bb23927
EZ
18189 (bidi_set_sor_type, bidi_resolve_explicit_1)
18190 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
18191 can now be zero (for strings); special values 0 and -1 were
18192 changed to -1 and -2, respectively.
18193 (bidi_char_at_pos): New function.
18194 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
18195 Call it instead of FETCH_MULTIBYTE_CHAR.
18196 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
18197 initialized to valid values.
18198 (bidi_init_it): Don't initialize charpos and bytepos with invalid
18199 values.
18200 (bidi_level_of_next_char): Allow the sentinel "position" to pass
18201 the test for valid cached positions. Fix the logic for looking up
18202 the sentinel state in the cache. GCPRO the Lisp string we are
18203 iterating.
18204 (bidi_push_it, bidi_pop_it): New functions.
18205 (bidi_initialize): Initialize the bidi cache start stack pointer.
18206 (bidi_cache_ensure_space): New function, refactored from part of
18207 bidi_cache_iterator_state. Don't assume the required size is just
18208 one BIDI_CACHE_CHUNK away.
18209 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
18210 (bidi_count_bytes, bidi_char_at_pos): New functions.
18211 (bidi_cache_search): Don't assume bidi_cache_last_idx is
18212 always valid if bidi_cache_idx is valid.
18213 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
18214 is valid if it's going to be used.
18215 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
18216 (bidi_cache_fetch_state, bidi_cache_search)
c965adc5
EZ
18217 (bidi_cache_find_level_change, bidi_cache_ensure_space)
18218 (bidi_cache_iterator_state, bidi_cache_find)
640c8776
SM
18219 (bidi_find_other_level_edge, bidi_cache_start_stack):
18220 All variables related to cache indices are now EMACS_INT.
c965adc5 18221
0bb23927
EZ
18222 * dispextern.h (struct bidi_string_data): New structure.
18223 (struct bidi_it): New member `string'. Make flag members be 1-bit
18224 fields, and put them last in the struct.
640c8776
SM
18225 (compute_display_string_pos, compute_display_string_end):
18226 Update prototypes.
0bb23927
EZ
18227 (bidi_push_it, bidi_pop_it): Add prototypes.
18228 (struct iterator_stack_entry): New members bidi_p,
18229 paragraph_embedding, and from_disp_prop_p.
18230 (struct it): Member bidi_p is now a bit field 1 bit wide.
640c8776
SM
18231 (bidi_shelve_cache, bidi_unshelve_cache):
18232 Declare prototypes.
0bb23927
EZ
18233
18234 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
18235 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
18236 and vector-like objects.
18237
18238 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
18239 cache around display iteration.
18240
18241 * window.c (Fwindow_end, window_scroll_pixel_based)
18242 (displayed_window_lines, Frecenter): Save and restore the bidi
18243 cache around display iteration.
18244
3bbd2265
LMI
182452011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18246
18247 * editfns.c (Fdelete_region): Clarify the use of the named
18248 parameters (bug#6788).
18249
adc47434
MR
182502011-07-14 Martin Rudalics <rudalics@gmx.at>
18251
18252 * indent.c (Fvertical_motion): Set and restore w->pointm when
18253 saving and restoring the window's buffer (Bug#9006).
18254
837c31f8
LMI
182552011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18256
18257 * editfns.c (Fstring_to_char): Clarify just what is returned
18258 (bug#6576). Text by Eli Zaretskii.
18259
ac389d0c
JB
182602011-07-13 Juanma Barranquero <lekktu@gmail.com>
18261
18262 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
18263
0be0ce47
EZ
182642011-07-13 Eli Zaretskii <eliz@gnu.org>
18265
18266 * buffer.c (mmap_find): Fix a typo.
18267
cd18e7e3
JB
182682011-07-13 Johan Bockgård <bojohan@gnu.org>
18269
18270 Fix execution of x selection hooks.
18271 * xselect.c (Qx_lost_selection_functions)
18272 (Qx_sent_selection_functions): New vars.
18273 (syms_of_xselect): DEFSYM them.
18274 (x_handle_selection_request): Pass Qx_sent_selection_functions
18275 rather than Vx_sent_selection_functions to Frun_hook_with_args.
18276 (x_handle_selection_clear,x_clear_frame_selections):
18277 Pass Qx_lost_selection_functions rather than
18278 Vx_lost_selection_functions to Frun_hook_with_args.
18279
47ea7f44
PE
182802011-07-13 Paul Eggert <eggert@cs.ucla.edu>
18281
ac389d0c 18282 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
2941c447
PE
18283 The old code sometimes used this field without initializing it.
18284
47ea7f44
PE
18285 * alloc.c (gc_sweep): Don't read past end of array.
18286 In theory, the old code could also have corrupted Emacs internals,
18287 though it'd be very unlikely.
18288
bc985c87
AS
182892011-07-12 Andreas Schwab <schwab@linux-m68k.org>
18290
18291 * character.c (Fcharacterp): Don't advertise optional ignored
ac389d0c 18292 argument. (Bug#4026)
bc985c87 18293
0cf34688
LMI
182942011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
18295
b3dadd76
LMI
18296 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
18297 key" (bug#4257).
18298
0cf34688
LMI
18299 * window.c (Fset_window_start): Doc fix (bug#4199).
18300 (Fset_window_hscroll): Ditto.
18301
270768cd
PE
183022011-07-12 Paul Eggert <eggert@cs.ucla.edu>
18303
077e3dda 18304 Fix minor new problems caught by GCC 4.6.1.
270768cd 18305 * term.c (init_tty): Remove unused local.
490011a6 18306 * xsettings.c (store_monospaced_changed): Define this function only
077e3dda 18307 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
490011a6 18308 not used otherwise.
270768cd 18309
b1f58454
CY
183102011-07-12 Chong Yidong <cyd@stupidchicken.com>
18311
18312 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
18313
22b9578d
LMI
183142011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18315
6e70ab07
LMI
18316 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
18317 are the mini-buffer and the echo area (bug#3320).
18318
22b9578d
LMI
18319 * term.c (init_tty): Remove support for supdup, c10 and perq
18320 terminals, which are no longer supported (bug#1482).
18321
8974cc9f
JB
183222011-07-10 Johan Bockgård <bojohan@gnu.org>
18323
18324 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
18325
a560d974
JD
183262011-07-10 Jan Djärv <jan.h.d@swipnet.se>
18327
18328 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
18329 for non-popups (Bug#3642).
18330
1dae0f0a
AS
183312011-07-10 Andreas Schwab <schwab@linux-m68k.org>
18332
268c2c36 18333 * alloc.c (reset_malloc_hooks): Protoize.
1dae0f0a 18334 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
268c2c36
AS
18335 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
18336 * cm.c (losecursor): Likewise.
1dae0f0a
AS
18337 * data.c (fmod): Likewise.
18338 * dispnew.c (swap_glyphs_in_rows): Likewise.
18339 * emacs.c (memory_warning_signal): Likewise.
18340 * floatfns.c (float_error): Likewise.
18341 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
18342 (otf_open, font_otf_capability, generate_otf_features)
18343 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
18344 Likewise.
18345 * image.c (pbm_read_file): Likewise.
18346 * indent.c (string_display_width): Likewise.
18347 * intervals.c (check_for_interval, search_for_interval)
18348 (inc_interval_count, count_intervals, root_interval)
18349 (adjust_intervals_for_insertion, make_new_interval): Likewise.
18350 * lread.c (defalias): Likewise.
268c2c36 18351 * ralloc.c (r_alloc_check): Likewise.
1dae0f0a
AS
18352 * regex.c (set_image_of_range_1, set_image_of_range)
18353 (regex_grow_registers): Likewise.
18354 * sysdep.c (strerror): Likewise.
18355 * termcap.c (valid_filename_p, tprint, main): Likewise.
18356 * tparam.c (main): Likewise.
18357 * unexhp9k800.c (run_time_remap, save_data_space)
18358 (update_file_ptrs, read_header, write_header, calculate_checksum)
18359 (copy_file, copy_rest, display_header): Likewise.
18360 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
18361 Likewise.
18362 * xdisp.c (check_it): Likewise.
18363 * xfaces.c (register_color, unregister_color, unregister_colors):
18364 Likewise.
18365 * xfns.c (print_fontset_result): Likewise.
18366 * xrdb.c (member, fatal, main): Likewise.
18367
99033785
PE
183682011-07-10 Paul Eggert <eggert@cs.ucla.edu>
18369
18370 Fix minor problems found by static checking (Bug#9031).
18371 * chartab.c (char_table_set_range, map_sub_char_table):
18372 Remove unused locals.
18373 (uniprop_table): Now static.
18374 * composite.c (_work_char): Remove unused static var.
18375
9cb2ac56
JB
183762011-07-09 Juanma Barranquero <lekktu@gmail.com>
18377
18378 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
18379
f25661f0
JD
183802011-07-09 Jan Djärv <jan.h.d@swipnet.se>
18381
18382 * gtkutil.c (qttip_cb): Remove code without function.
18383
8278c4fe
EZ
183842011-07-09 Eli Zaretskii <eliz@gnu.org>
18385
18386 * w32.c (pthread_sigmask): New stub.
18387
1692ae2d 183882011-07-08 Paul Eggert <eggert@cs.ucla.edu>
123403e4 18389
8a6ebd58 18390 Use pthread_sigmask, not sigprocmask (Bug#9010).
123403e4
PE
18391 sigprocmask is portable only for single-threaded applications, and
18392 Emacs can be multi-threaded when it uses GTK.
1301ac26
PE
18393 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
18394 (LIBES): Use it.
18395 * callproc.c (Fcall_process):
18396 * process.c (create_process):
18397 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
18398 Use pthread_sigmask, not sigprocmask.
123403e4 18399
1b854618
JD
184002011-07-08 Jan Djärv <jan.h.d@swipnet.se>
18401
18402 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
18403 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
18404 wrong (Bug#8591).
18405
3fe4b549
JD
184062011-07-08 Jan Djärv <jan.h.d@swipnet.se>
18407
0ce7e563
JD
18408 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
18409 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
18410 (xg_hide_tooltip): Fix comment.
18411
3fe4b549
JD
18412 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
18413 in registerServicesMenuSendTypes.
18414 (validRequestorForSendType): Don't check ns_return_types.
18415
18416 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
18417 ns_return_type.
18418
5df75e47
JR
184192011-07-08 Jason Rumney <jasonr@gnu.org>
18420
22610910
JR
18421 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
18422 SH_SHOW for hidden windows (Bug#5482).
18423
5df75e47
JR
18424 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
18425 frame struct members of non-existent frames (Bug#6284).
18426
699c10bd
JD
184272011-07-08 Jan Djärv <jan.h.d@swipnet.se>
18428
4393663b
JD
18429 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
18430 variable firstTime not needed on OSX >= 10.6.
18431 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
18432 >= 10.5. Use setKnobProportion, setDoubleValue.
18433
18434 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
18435 (MAC_OS_X_VERSION_10_5): Define if not defined.
18436 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
18437 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
18438 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
18439
18440 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
090bd7cb 18441 cString and lossyCString on OSX >= 10.4.
4393663b 18442
58179cce 18443 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
4393663b
JD
18444 sizeToFit on OSX >= 10.2.
18445
18446 * nsimage.m (allocInitFromFile): Don't use deprecated method
18447 bestRepresentationForDevice on OSX >= 10.6.
18448
18449 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
18450 to avoid warning.
18451
18452 * emacs.c: Declare unexec_init_emacs_zone.
18453
a63e0781
JD
18454 * nsgui.h: Fix compiler warning about gnulib redefining verify.
18455
699c10bd
JD
18456 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
18457
18458 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
18459 on svcsMenu (Bug#8842).
18460
18461 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
18462 ns_return_types.
18463 (Fns_list_services): Just return Qnil on 10.6, code not working there.
18464
18465 * nsterm.m (QUTF8_STRING): Declare.
18466 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
18467 (validRequestorForSendType): Return type is (id).
18468 Change indexOfObjectIdenticalTo to indexOfObject.
18469 Check if we have local selection before returning self (Bug#8842).
18470 (writeSelectionToPasteboard): Put local selection into paste board
18471 if we have a local selection (Bug#8842).
18472 (syms_of_nsterm): DEFSYM QUTF8_STRING.
18473
18474 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
18475 (ns_get_local_selection): Declare.
18476
54e10184
LMI
184772011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
18478
9888ff71
LMI
18479 * keymap.c (describe_map_tree): Don't insert a double newline at
18480 the end of the buffer (bug#1169) and return whether we inserted
18481 something.
18482
54e10184
LMI
18483 * callint.c (Fcall_interactively): Change "reading args" to
18484 "providing args" to try to clarify what it does (bug#1010).
18485
15fa4783
KH
184862011-07-07 Kenichi Handa <handa@m17n.org>
18487
18488 * composite.c (composition_compute_stop_pos): Ignore a static
18489 composition starting before CHARPOS (Bug#8915).
18490
18491 * xdisp.c (handle_composition_prop): Likewise.
18492
a8815b00
EZ
184932011-07-07 Eli Zaretskii <eliz@gnu.org>
18494
18495 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
18496 (Bug#9015)
18497
ef7b981d 184982011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
18499
18500 * character.h (unicode_category_t): New enum type.
18501
18502 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
18503 (Qchar_code_property_table): New variable.
18504 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
18505 (UNIPROP_COMPRESSED_FORM_P): New macros.
18506 (char_table_ascii): Uncompress the compressed values.
18507 (sub_char_table_ref): New arg is_uniprop. Callers changed.
18508 Uncompress the compressed values.
ac389d0c 18509 (sub_char_table_ref_and_range): Likewise.
c805dec0
KH
18510 (char_table_ref_and_range): Uncompress the compressed values.
18511 (sub_char_table_set): New arg is_uniprop. Callers changed.
18512 Uncompress the compressed values.
18513 (sub_char_table_set_range): Args changed. Callers changed.
18514 (char_table_set_range): Adjuted for the above change.
18515 (map_sub_char_table): Delete args default_val and parent. Add arg
18516 top. Give decoded values to a Lisp function.
640c8776 18517 (map_char_table): Adjust for the above change. Give decoded
c805dec0
KH
18518 values to a Lisp function. Gcpro more variables.
18519 (uniprop_table_uncompress)
18520 (uniprop_decode_value_run_length): New functions.
18521 (uniprop_decoder, uniprop_decoder_count): New variables.
18522 (uniprop_get_decoder, uniprop_encode_value_character)
18523 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
18524 New functions.
18525 (uniprop_encoder, uniprop_encoder_count): New variables.
18526 (uniprop_get_encoder, uniprop_table)
18527 (Funicode_property_table_internal, Fget_unicode_property_internal)
18528 (Fput_unicode_property_internal): New functions.
18529 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
18530 Sunicode_property_table_internal, Sget_unicode_property_internal,
5e617bc2 18531 and Sput_unicode_property_internal. Defvar_lisp
c805dec0
KH
18532 char-code-property-alist.
18533
640c8776 18534 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
c805dec0
KH
18535 Vunicode_category_table.
18536
640c8776 18537 * font.c (font_range): Adjust for the change of
c805dec0
KH
18538 Vunicode_category_table.
18539
76b397fb
DN
185402011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
18541
18542 * m/iris4d.h: Remove file, move contents ...
18543 * s/irix6-5.h: ... here.
18544
22b4128e
PE
185452011-07-06 Paul Eggert <eggert@cs.ucla.edu>
18546
18547 Remove unportable assumption about struct layout (Bug#8884).
8a5c77bb
PE
18548 * alloc.c (mark_buffer):
18549 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
18550 (clone_per_buffer_values): Don't assume that
22b4128e
PE
18551 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
18552 This isn't true in general, and it's particularly not true
18553 if Emacs is configured with --with-wide-int.
18554 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
18555 New macros, used in the buffer.c change.
18556
869795d6
JD
185572011-07-05 Jan Djärv <jan.h.d@swipnet.se>
18558
18559 * xsettings.c: Use both GConf and GSettings if both are available.
18560 (store_config_changed_event): Add comment.
18561 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
18562 (store_tool_bar_style_changed): New functions.
5e617bc2 18563 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
869795d6
JD
18564 (struct xsettings): Move font inside HAVE_XFT.
18565 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
640c8776 18566 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
869795d6 18567 Move inside HAVE_XFT.
640c8776 18568 (something_changed_gsettingsCB): Rename from something_changedCB.
869795d6
JD
18569 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
18570 also.
18571 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
5e617bc2 18572 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
640c8776 18573 (something_changed_gconfCB): Rename from something_changedCB.
869795d6
JD
18574 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
18575 (parse_settings): Move check for font inside HAVE_XFT.
18576 (read_settings, apply_xft_settings): Add comment.
18577 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
18578 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
18579 call store_font_name_changed.
18580 (xft_settings_event): Add comment.
18581 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
18582 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
18583 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
18584 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
18585 (xsettings_initialize): Call init_gsettings last.
640c8776
SM
18586 (xsettings_get_system_font, xsettings_get_system_normal_font):
18587 Add comment.
869795d6 18588
d8ed26bd
PE
185892011-07-05 Paul Eggert <eggert@cs.ucla.edu>
18590
18591 Random fixes. E.g., (random) never returned negative values.
18592 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
18593 subseconds part to the entropy, as that's a bit more random.
18594 Prefer signed to unsigned, since the signedness doesn't matter and
18595 in general we prefer signed. When given a limit, use a
18596 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
18597 latter isn't right if USE_2_TAGS_FOR_INTS.
18598 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
18599 not 0..VALMASK. Don't discard "excess" bits that random () returns.
18600
cabf1cac
SM
186012011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18602
18603 * textprop.c (text_property_stickiness):
18604 Obey Vtext_property_default_nonsticky.
18605 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
18606 * w32fns.c (syms_of_w32fns):
18607 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
18608
6e9b2be9
PE
186092011-07-04 Paul Eggert <eggert@cs.ucla.edu>
18610
18611 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
18612 This is more efficient than Ffile_directory_p and avoids a minor race.
18613
90186c68
LMI
186142011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
18615
7c301272
LMI
18616 * buffer.c (Foverlay_put): Say what the return value is
18617 (bug#7835).
18618
c4f2d8d4
LMI
18619 * fileio.c (barf_or_query_if_file_exists): Check first if the file
18620 is a directory before asking whether to use the file name
18621 (bug#7564).
ad637907
LMI
18622 (barf_or_query_if_file_exists): Make the "File is a directory"
18623 error be more correct.
c4f2d8d4 18624
90186c68
LMI
18625 * fns.c (Frequire): Remove the mention of the .gz files, since
18626 that's installation-specific, but keep the mention of
18627 `get-load-suffixes'.
18628
da64016e
PE
186292011-07-04 Paul Eggert <eggert@cs.ucla.edu>
18630
18631 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
18632 Report string overflow if the output is too long.
18633
7d47b580
JB
186342011-07-04 Juanma Barranquero <lekktu@gmail.com>
18635
a555cb87
JB
18636 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
18637 (syms_of_gnutls): Remove duplicate DEFSYM for
18638 Qgnutls_bootprop_verify_hostname_error, an error for
18639 Qgnutls_bootprop_verify_error (which is no longer used).
18640
7d47b580
JB
18641 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
18642 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
18643 Also (re)move comments that are misplaced or no longer relevant.
18644
1e49bfab
LMI
186452011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
18646
18647 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
18648
1485f4c0
CY
186492011-07-03 Chong Yidong <cyd@stupidchicken.com>
18650
18651 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
18652 and background color parameters if they have been changed.
18653
a9ab721e
LMI
186542011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
18655
18656 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
18657
cf7cff57
PE
186582011-07-03 Paul Eggert <eggert@cs.ucla.edu>
18659
2e13213d
PE
18660 * xsettings.c (SYSTEM_FONT): Define only when used.
18661 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
18662
cf7cff57
PE
18663 * keymap.c (access_keymap_1): Now static.
18664
7a8e04f7
CY
186652011-07-02 Chong Yidong <cyd@stupidchicken.com>
18666
18667 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
18668 leave any prefix arg for the up event (Bug#1586).
18669
61352f62
LMI
186702011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18671
69bb1ef7
LMI
18672 * lread.c (syms_of_lread): Mention single symbols defined by
18673 `defvar' or `defconst' (bug#7154).
18674
61352f62 18675 * fns.c (Frequire): Mention .el.gz files (bug#7314).
7b3747f9 18676 (Frequire): Mention get-load-suffixes.
61352f62 18677
28545e04
MR
186782011-07-02 Martin Rudalics <rudalics@gmx.at>
18679
18680 * window.h (window): Remove clone_number slot.
18681 * window.c (Fwindow_clone_number, Fset_window_clone_number):
18682 Remove.
18683 (make_parent_window, make_window, saved_window)
18684 (Fset_window_configuration, save_window_save): Don't deal with
18685 clone numbers.
18686 * buffer.c (Qclone_number): Remove declaration.
18687 (sort_overlays, overlay_strings): Don't deal with clone numbers.
18688
3349e122
SM
186892011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
18690
18691 Add multiple inheritance to keymaps.
18692 * keymap.c (Fmake_composed_keymap): New function.
18693 (Fset_keymap_parent): Simplify.
18694 (fix_submap_inheritance): Remove.
18695 (access_keymap_1): New function extracted from access_keymap to handle
18696 embedded parents and handle lists of maps.
18697 (access_keymap): Use it.
18698 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
18699 (Fcopy_keymap): Handle embedded parents.
18700 (Fcommand_remapping, define_as_prefix): Simplify.
18701 (Fkey_binding): Simplify.
18702 (syms_of_keymap): Move minibuffer-local-completion-map,
18703 minibuffer-local-filename-completion-map,
18704 minibuffer-local-must-match-map, and
18705 minibuffer-local-filename-must-match-map to Elisp.
18706 (syms_of_keymap): Defsubr make-composed-keymap.
18707 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
18708 (parse_menu_item): Trivial simplification.
18709
3279eb87
GM
187102011-07-01 Glenn Morris <rgm@gnu.org>
18711
18712 * Makefile.in (SETTINGS_LIBS): Fix typo.
18713
39cb9e56 187142011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4550efdf
KI
18715
18716 * coding.c (Fencode_coding_string): Record the last coding system
18717 used, as the function doc string says (bug#8738).
18718
0949d2b6
JD
187192011-07-01 Jan Djärv <jan.h.d@swipnet.se>
18720
18721 * xsettings.c (store_monospaced_changed): Take new font as arg and
18722 check for change against current_mono_font.
18723 (EMACS_TYPE_SETTINGS): Remove this and related defines.
18724 (emacs_settings_constructor, emacs_settings_get_property)
18725 (emacs_settings_set_property, emacs_settings_class_init)
18726 (emacs_settings_init, gsettings_obj): Remove.
18727 (something_changedCB): New function for HAVE_GSETTINGS.
18728 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
18729 with value as argument.
18730 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
18731 g_settings_new (Bug#8967). Do not create gsettings_obj.
9173deec 18732 Remove calls to g_settings_bind. Connect something_changedCB to
0949d2b6
JD
18733 "changed".
18734
18735 * xgselect.c: Add defined (HAVE_GSETTINGS).
18736 (xgselect_initialize): Ditto.
18737
18738 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
18739 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
18740 xg_select.
18741
bbc6b304
PE
187422011-07-01 Paul Eggert <eggert@cs.ucla.edu>
18743
18744 * eval.c (struct backtrace): Simplify and port the data structure.
18745 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
18746 signed bit field, as this assumption is not portable and it makes
18747 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
18748 "char debug_on_exit : 1" as this is not portable either; instead,
18749 use the portable "unsigned int debug_on_exit : 1". Remove unused
18750 member evalargs. Remove obsolete comments about cc bombing out.
18751
9851bfc5
JD
187522011-06-30 Jan Djärv <jan.h.d@swipnet.se>
18753
51bb811f 18754 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
9851bfc5
JD
18755 Let HAVE_GSETTINGS override HAVE_GCONF.
18756 (store_monospaced_changed): New function.
18757 (EMACS_SETTINGS): A new type derived from GObject to handle
18758 GSettings notifications.
18759 (emacs_settings_constructor, emacs_settings_get_property)
18760 (emacs_settings_set_property, emacs_settings_class_init):
18761 New functions.
18762 (gsettings_client, gsettings_obj): New variables.
18763 (GSETTINGS_SCHEMA): New define.
18764 (something_changedCB): Call store_monospaced_changed.
18765 (init_gsettings): New function.
18766 (xsettings_initialize): Call init_gsettings.
18767 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
18768 to NULL.
18769
640c8776 18770 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
9851bfc5
JD
18771 GCONF_CFLAGS/LIBS.
18772
5386012d
MR
187732011-06-29 Martin Rudalics <rudalics@gmx.at>
18774
18775 * window.c (resize_root_window, grow_mini_window)
18776 (shrink_mini_window): Rename Qresize_root_window to
18777 Qwindow_resize_root_window and Qresize_root_window_vertically to
18778 Qwindow_resize_root_window_vertically.
18779
f13e0b08
PE
187802011-06-28 Paul Eggert <eggert@cs.ucla.edu>
18781
18782 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
18783
94515237
JB
187842011-06-27 Juanma Barranquero <lekktu@gmail.com>
18785
18786 * makefile.w32-in: Redesign dependencies so they reflect more
18787 clearly which files are directly included by each source file,
18788 and not through other includes.
18789
e43b6e43
MR
187902011-06-27 Martin Rudalics <rudalics@gmx.at>
18791
18792 * buffer.c (Qclone_number): Declare static and DEFSYM it.
18793 (sort_overlays, overlay_strings): When an overlay's clone number
18794 matches the window's clone number process the overlay even if
18795 the overlay's window property doesn't match the current window.
18796
d68443dc
MR
18797 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
18798 (Fwindow_hchild): Rename to Fwindow_left_child.
18799 (Fwindow_next): Rename to Fwindow_next_sibling.
18800 (Fwindow_prev): Rename to Fwindow_prev_sibling.
d615d6d2
MR
18801 (resize_window_check): Rename to window_resize_check.
18802 (resize_window_apply): Rename to window_resize_apply.
18803 (Fresize_window_apply): Rename to Fwindow_resize_apply.
18804 (Fdelete_other_windows_internal, resize_frame_windows)
18805 (Fsplit_window_internal, Fdelete_window_internal)
18806 (grow_mini_window, shrink_mini_window)
18807 (Fresize_mini_window_internal): Fix callers accordingly.
d68443dc 18808
c7e73be5
JD
188092011-06-26 Jan Djärv <jan.h.d@swipnet.se>
18810
18811 * emacsgtkfixed.h: State that this is only used with Gtk+3.
18812 (emacs_fixed_set_min_size): Remove.
18813 (emacs_fixed_new): Take frame as argument.
18814
18815 * emacsgtkfixed.c: State that this is only used with Gtk+3.
18816 (_EmacsFixedPrivate): Remove minwidth/height.
18817 Add struct frame *f.
18818 (emacs_fixed_init): Initialize priv->f.
18819 (get_parent_class, emacs_fixed_set_min_size): Remove.
18820 (emacs_fixed_new): Set priv->f to argument.
18821 (emacs_fixed_get_preferred_width)
18822 (emacs_fixed_get_preferred_height): Use min_width/height from
18823 frames size_hint to set minimum and natural (Bug#8919).
18824 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
18825 and use min_width/height from frames size_hint to set
18826 min_width/height (Bug#8919).
18827
18828 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
9173deec
JB
18829 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
18830 Fix indentation.
c7e73be5 18831
cf99dcf8
EZ
188322011-06-26 Eli Zaretskii <eliz@gnu.org>
18833
18834 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
18835 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
18836 called at ZV.
18837
029529ac
CY
188382011-06-26 Chong Yidong <cyd@stupidchicken.com>
18839
18840 * process.c (wait_reading_process_output): Bypass select if
18841 waiting for a cell while ignoring keyboard input, and input is
18842 pending. Suggested by Jan Djärv (Bug#8869).
18843
7a7ef429
PE
188442011-06-25 Paul Eggert <eggert@cs.ucla.edu>
18845
18846 Use gnulib's dup2 module instead of rolling our own.
18847 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
18848
11fdef7d 188492011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
989b42d2
YM
18850
18851 * dispnew.c (scrolling_window): Before scrolling, turn off a
18852 mouse-highlight in the window being scrolled.
18853
cd3520a4
JB
188542011-06-24 Juanma Barranquero <lekktu@gmail.com>
18855
18856 Move DEFSYM to lisp.h and use everywhere.
18857
18858 * character.h (DEFSYM): Move declaration...
18859 * lisp.h (DEFSYM): ...here.
18860
18861 * gnutls.c:
18862 * minibuf.c:
18863 * w32menu.c:
18864 * w32proc.c:
18865 * w32select.c: Don't include character.h.
18866
18867 * alloc.c (syms_of_alloc):
18868 * buffer.c (syms_of_buffer):
18869 * bytecode.c (syms_of_bytecode):
18870 * callint.c (syms_of_callint):
18871 * casefiddle.c (syms_of_casefiddle):
18872 * casetab.c (init_casetab_once):
18873 * category.c (init_category_once, syms_of_category):
18874 * ccl.c (syms_of_ccl):
18875 * cmds.c (syms_of_cmds):
18876 * composite.c (syms_of_composite):
18877 * dbusbind.c (syms_of_dbusbind):
18878 * dired.c (syms_of_dired):
18879 * dispnew.c (syms_of_display):
18880 * doc.c (syms_of_doc):
18881 * editfns.c (syms_of_editfns):
18882 * emacs.c (syms_of_emacs):
18883 * eval.c (syms_of_eval):
18884 * fileio.c (syms_of_fileio):
18885 * fns.c (syms_of_fns):
18886 * frame.c (syms_of_frame):
18887 * fringe.c (syms_of_fringe):
18888 * insdel.c (syms_of_insdel):
18889 * keymap.c (syms_of_keymap):
18890 * lread.c (init_obarray, syms_of_lread):
18891 * macros.c (syms_of_macros):
18892 * msdos.c (syms_of_msdos):
18893 * print.c (syms_of_print):
18894 * process.c (syms_of_process):
18895 * search.c (syms_of_search):
18896 * sound.c (syms_of_sound):
18897 * syntax.c (init_syntax_once, syms_of_syntax):
18898 * terminal.c (syms_of_terminal):
18899 * textprop.c (syms_of_textprop):
18900 * undo.c (syms_of_undo):
18901 * w32.c (globals_of_w32):
18902 * window.c (syms_of_window):
18903 * xdisp.c (syms_of_xdisp):
18904 * xfaces.c (syms_of_xfaces):
18905 * xfns.c (syms_of_xfns):
18906 * xmenu.c (syms_of_xmenu):
18907 * xsettings.c (syms_of_xsettings):
18908 * xterm.c (syms_of_xterm): Use DEFSYM.
18909
4228cf16
TZ
189102011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
18911
cd3520a4 18912 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
4228cf16 18913
7fcccf1e
PE
189142011-06-23 Paul Eggert <eggert@cs.ucla.edu>
18915
7efb4e0e
PE
18916 Integer and buffer overflow fixes (Bug#8873).
18917
ff5844ad
PE
18918 * print.c (printchar, strout): Check for string overflow.
18919 (PRINTPREPARE, printchar, strout):
18920 Don't set size unless allocation succeeds.
18921
90532f02
PE
18922 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
18923 for sizes. Check for string overflow more accurately.
18924 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
18925
6d84508d
PE
18926 * macros.c: Integer and buffer overflow fixes.
18927 * keyboard.h (struct keyboard.kbd_macro_bufsize):
18928 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
18929 Use ptrdiff_t, not int, for sizes.
18930 Don't increment bufsize until after realloc succeeds.
18931 Check for size-calculation overflow.
18932 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
18933
437b2cb4
PE
18934 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
18935
8b9ac8b4
PE
18936 * lread.c: Integer overflow fixes.
18937 (read_integer): Radix is now EMACS_INT, not int,
18938 to improve quality of diagnostics for out-of-range radices.
18939 Calculate buffer size correctly for out-of-range radices.
18940 (read1): Check for integer overflow in radices, and in
18941 read-circle numbers.
82cb60d3
PE
18942 (read_escape): Avoid int overflow.
18943 (Fload, openp, read_buffer_size, read1)
18944 (substitute_object_recurse, read_vector, read_list, map_obarray):
18945 Use ptrdiff_t, not int, for sizes.
18946 (read1): Use EMACS_INT, not int, for sizes.
20270765 18947 Check for size overflow.
8b9ac8b4 18948
7fcccf1e
PE
18949 * image.c (cache_image): Check for size arithmetic overflow.
18950
bfbbd7e7
PE
18951 * lread.c: Integer overflow issues.
18952 (saved_doc_string_size, saved_doc_string_length)
18953 (prev_saved_doc_string_size, prev_saved_doc_string_length):
18954 Now ptrdiff_t, not int.
18955 (read1): Don't assume doc string length fits in int. Check for
18956 out-of-range doc string lengths.
18957 (read_list): Don't assume file position fits in int.
39019e54 18958 (read_escape): Check for hex character overflow.
bfbbd7e7 18959
4e323265
LL
189602011-06-22 Leo Liu <sdl.web@gmail.com>
18961
18962 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
18963 Move to minibuffer.el.
18964
85fece3e
PE
189652011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18966
20b84ce9 18967 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
85fece3e
PE
18968 The following patches are for when GLYPH_DEBUG && !XASSERT.
18969 * dispextern.h (trace_redisplay_p, dump_glyph_string):
18970 * dispnew.c (flush_stdout):
18971 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
18972 Mark as externally visible.
18973 * dispnew.c (check_window_matrix_pointers): Now static.
18974 * dispnew.c (window_to_frame_vpos):
18975 * xfns.c (unwind_create_frame):
18976 * xterm.c (x_check_font): Remove unused local.
18977 * scroll.c (CHECK_BOUNDS):
18978 * xfaces.c (cache_fache): Rename local to avoid shadowing.
18979 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
18980 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
18981 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
18982 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
18983 Now static.
18984 (debug_method_add): Use va_list and vsprintf rather than relying
18985 on undefined behavior with wrong number of arguments.
18986 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
18987 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
18988 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
18989 since we're not interested in debugging glyphs with old libraries.
18990 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
18991 GCC 4.6.0's static checking.
18992
0766b489
PE
189932011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18994
31fd4b32
PE
18995 Integer overflow and signedness fixes (Bug#8873).
18996 A few related buffer overrun fixes, too.
18997
b79e8648
PE
18998 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
18999
0766b489
PE
19000 * dispextern.h (struct face.stipple):
19001 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
19002 (x_bitmap_mask, x_allocate_bitmap_record)
19003 (x_create_bitmap_from_data, x_create_bitmap_from_file)
19004 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
19005 (x_create_bitmap_from_xpm_data):
19006 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
19007 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
19008 (.bitmaps_last):
19009 * xfaces.c (load_pixmap):
19010 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
19011 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
19012 (.bitmaps_last, struct x_output.icon_bitmap):
19013 Use ptrdiff_t, not int, for bitmap indexes.
19014 (x_allocate_bitmap_record): Check for size overflow.
19015 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
19016
b081724f
PE
19017 Use ptrdiff_t, not int, for overlay counts.
19018 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
19019 * editfns.c (overlays_around, get_pos_property):
19020 * textprop.c (get_char_property_and_overlay):
19021 * xdisp.c (next_overlay_change, note_mouse_highlight):
19022 * xfaces.c (face_at_buffer_position):
21514da7
PE
19023 * buffer.c (OVERLAY_COUNT_MAX): New macro.
19024 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
19025 (Fnext_overlay_change, Fprevious_overlay_change)
19026 (mouse_face_overlay_overlaps, Foverlays_in):
b081724f 19027 Use ptrdiff_t, not int, for sizes.
21514da7 19028 (overlays_at, overlays_in): Check for size-calculation overflow.
b081724f 19029
3de73e5e
PE
19030 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
19031
2606c57b
PE
19032 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
19033 (x_session_initialize): Do not assume string length fits in int.
19034
aaafe47a
PE
19035 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
19036 This is unlikely, but can occur if DPI is outlandish.
19037
2674ddc8 19038 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
3a5077c5
PE
19039 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
19040
28154962
PE
19041 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
19042 * xrdb.c (magic_file_p, search_magic_path):
19043 Omit last arg SUFFIX; it was always 0. All callers changed.
19044 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
19045
7de51af5
PE
19046 * xfont.c (xfont_match): Avoid need for strlen.
19047
25ed6cc3
PE
19048 * xfns.c: Don't assume strlen fits in int.
19049 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
19050
4eab31dd
PE
19051 * xdisp.c (message_log_check_duplicate): Return intmax_t,
19052 not unsigned long, as we prefer signed integers. All callers changed.
19053 Detect integer overflow in repeat count.
19054 (message_dolog): Don't assume print length fits in 39 bytes.
df1f27af 19055 (display_mode_element): Don't assume strlen fits in int.
4eab31dd 19056
171e2a58
PE
19057 * termcap.c: Don't assume sizes fit in int and never overflow.
19058 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
19059 (gobble_line): Check for size-calculation overflow.
19060
ad39faca 19061 * minibuf.c (Fread_buffer):
6e5bb2dc 19062 * lread.c (intern, intern_c_string):
74ca2eb3
PE
19063 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
19064 Don't assume string length fits in int.
19065
52c61c22 19066 * keyboard.c (parse_tool_bar_item):
9bda3520
PE
19067 * gtkutil.c (style_changed_cb): Avoid need for strlen.
19068
b5b8c9e5
PE
19069 * font.c: Don't assume string length fits in int.
19070 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
19071 Use ptrdiff_t, not int.
ccd6111c
PE
19072 (font_intern_prop): Don't assume string length fits in int.
19073 Don't assume integer property fits in fixnum.
19074 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
b5b8c9e5 19075
882f0d81 19076 * filelock.c: Fix some buffer overrun and integer overflow issues.
51cab52b 19077 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
882f0d81
PE
19078 Reformulate so as not to need the command string.
19079 Invoke gzip -cd rather than gunzip, as it's more portable.
19080 (lock_info_type, lock_file_1, lock_file):
19081 Don't assume pid_t and time_t fit in unsigned long.
19082 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
19083 (current_lock_owner): Prefer signed type for sizes.
19084 Use memcpy, not strncpy, where memcpy is what is really wanted.
19085 Don't assume (via atoi) that time_t and pid_t fit in int.
19086 Check for time_t and/or pid_t out of range, e.g., via a network share.
19087 Don't alloca where an auto var works fine.
19088
93f4cf88
PE
19089 * fileio.c: Fix some integer overflow issues.
19090 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
19091 Don't assume string length fits in int.
19092 (directory_file_name): Don't assume string length fits in long.
19093 (make_temp_name): Don't assume pid fits in int, or that its print
19094 length is less than 20.
19095
f3e92b69
PE
19096 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
19097
1bfdaf10
PE
19098 * coding.c (make_subsidiaries): Don't assume string length fits in int.
19099
35016e9a
PE
19100 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
19101
3d1e65a1
PE
19102 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
19103 We prefer signed integers, even for size calculations.
19104
0b963a93
PE
19105 * emacs.c: Don't assume string length fits in 'int'.
19106 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
19107 (main): Don't invoke strlen when not needed.
19108
573f4b54
PE
19109 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
19110 (XD_DEBUG_MESSAGE): Don't waste a byte.
19111
989f33ba
PE
19112 * callproc.c (getenv_internal_1, getenv_internal)
19113 (Fgetenv_internal):
965d34eb
PE
19114 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
19115
e4d29b33
PE
19116 * lread.c (invalid_syntax): Omit length argument.
19117 All uses changed. This doesn't fix a bug, but it simplifies the
19118 code away from its former Hollerith-constant appearance, and it's
19119 one less 'int' to worry about when looking at integer-overflow issues.
51cab52b 19120 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
e4d29b33 19121
eb49b136
PE
19122 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
19123 This didn't break anything, but it didn't help either.
19124 It's confusing to put a bogus integer in a place where the actual
19125 value does not matter.
9f62aeb1 19126 (LIST_END_P): Remove unused macro and its bogus comment.
cbeff735 19127 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
eb49b136 19128
15375a22
PE
19129 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
19130 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
19131 implementation.
b61cc01c
PE
19132 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
19133 We prefer signed types, and the value cannot exceed the EMACS_INT
19134 range anyway (because otherwise the length would not be representable).
9a8e8d9b
PE
19135 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
19136 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
19137 This avoids a GCC warning when WIDE_EMACS_INT.
15375a22 19138
53b2623d
PE
19139 * indent.c (sane_tab_width): New function.
19140 (current_column, scan_for_column, Findent_to, position_indentation)
19141 (compute_motion): Use it. This is just for clarity.
8fcaf9cc 19142 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
53b2623d 19143
51cab52b 19144 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
45aebb64 19145
f2ed8a70
PE
19146 * lisp.h (lint_assume): New macro.
19147 * composite.c (composition_gstring_put_cache):
19148 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
19149
abe80cc6
PE
19150 * editfns.c, insdel.c:
19151 Omit unnecessary forward decls, to simplify future changes.
a9e860e1 19152
b02c740e
PE
19153 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
19154
ebc96716
PE
19155 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
19156
b4e50fa0 19157 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
f03dc6ef 19158 Use much-faster test for byte-length change.
311d5d7c 19159 Don't assume string byte-length fits in 'int'.
a4cf38e4 19160 Check that character arg fits in 'int'.
85461888 19161 (mapcar1): Declare byte as byte, for clarity.
b4e50fa0 19162
c0c1ee9f
PE
19163 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
19164
a498d7f4
PE
19165 * fns.c (concat): Catch string overflow earlier.
19166 Do not rely on integer wraparound.
19167
51cab52b
PE
19168 * dispextern.h (struct it.overlay_strings_charpos)
19169 (struct it.selective): Now EMACS_INT, not int.
87830974
PE
19170 * xdisp.c (forward_to_next_line_start)
19171 (back_to_previous_visible_line_start)
19172 (reseat_at_next_visible_line_start, next_element_from_buffer):
19173 Don't arbitrarily truncate the value of 'selective' to int.
19174
76031fad
PE
19175 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
19176
5eb55db9
PE
19177 * composite.c: Don't truncate sizes to 'int'.
19178 (composition_gstring_p, composition_reseat_it)
19179 (composition_adjust_point): Use EMACS_INT, not int.
7d100a81
PE
19180 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
19181 not EMACS_UINT, for indexes.
5eb55db9 19182
0703a717
PE
19183 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
19184
d6202519
PE
19185 * buffer.c: Include <verify.h>.
19186 (struct sortvec.priority, struct sortstr.priority):
8961a454 19187 Now EMACS_INT, not int.
c20998a7 19188 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
67c36fce
PE
19189 (struct sortstr.size, record_overlay_string)
19190 (struct sortstrlist.size, struct sortlist.used):
19191 Don't truncate size to int.
19192 (record_overlay_string): Check for size-calculation overflow.
d6202519 19193 (init_buffer_once): Check at compile-time, not run-time.
fadf4e30 19194
d5a19415
JM
191952011-06-22 Jim Meyering <meyering@redhat.com>
19196
029529ac 19197 Don't leak an XBM-image-sized buffer
d5a19415
JM
19198 * image.c (xbm_load): Free the image buffer after using it.
19199
a9041e6c
PE
192002011-06-21 Paul Eggert <eggert@cs.ucla.edu>
19201
19202 Port to Sun C.
19203 * composite.c (find_automatic_composition): Omit needless 'return 0;'
19204 that Sun C diagnosed.
19205 * fns.c (secure_hash): Fix pointer signedness issue.
19206 * intervals.c (static_offset_intervals): New function.
19207 (offset_intervals): Use it.
19208
7f3f739f
LL
192092011-06-21 Leo Liu <sdl.web@gmail.com>
19210
19211 * deps.mk (fns.o):
19212 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
19213 sha512.h.
19214
19215 * fns.c (secure_hash): Rename from crypto_hash_function and change
19216 the first arg to accept symbols.
5b66d427 19217 (Fsecure_hash): New primitive.
7f3f739f
LL
19218 (syms_of_fns): New symbols.
19219
76147d94
DD
192202011-06-20 Deniz Dogan <deniz@dogan.se>
19221
19222 * process.c (Fset_process_buffer): Clarify return value in
19223 docstring.
19224
7d7d0045
CY
192252011-06-18 Chong Yidong <cyd@stupidchicken.com>
19226
19227 * dispnew.c (add_window_display_history): Use BVAR.
19228
19229 * xdisp.c (debug_method_add): Use BVAR.
19230 (check_window_end, dump_glyph_matrix, dump_glyph)
19231 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
19232
19233 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
19234 Likewise.
19235
19236 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
19237 check till after the cache is created in init_frame_faces.
19238
ff2bc410
SM
192392011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
19240
19241 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
19242
28177add
PE
192432011-06-16 Paul Eggert <eggert@cs.ucla.edu>
19244
dd3482fe
PE
19245 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
19246 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
19247 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
19248
393d71f3 19249 Improve buffer-overflow checking (Bug#8873).
1c8e352f
PE
19250 * fileio.c (Finsert_file_contents):
19251 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
19252 Remove the old (too-loose) buffer overflow checks.
19253 They weren't needed, since make_gap checks for buffer overflow.
19254 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
19255 The old code merely checked for Emacs fixnum overflow, and relied
19256 on undefined (wraparound) behavior. The new code avoids undefined
19257 behavior, and also checks for ptrdiff_t and/or size_t overflow.
19258
2e6813b0 19259 * editfns.c (Finsert_char): Don't dump core with very negative counts.
21d890a4
PE
19260 Tune. Don't use wider integers than needed. Don't use alloca.
19261 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
2e6813b0 19262
599a9e4f
PE
19263 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
19264
99561444
PE
19265 * insdel.c, lisp.h (buffer_overflow): New function.
19266 (insert_from_buffer_1, replace_range, replace_range_2):
19267 * insdel.c (make_gap_larger):
19268 * editfns.c (Finsert_char):
19269 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
19270
28177add
PE
19271 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
19272
e69dafad
PE
192732011-06-15 Paul Eggert <eggert@cs.ucla.edu>
19274
4baa020d 19275 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
ff672d2c 19276
b1c46f02
PE
19277 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
19278 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
19279
e69dafad
PE
19280 * fileio.c: Don't assume EMACS_INT fits in off_t.
19281 (emacs_lseek): New static function.
19282 (Finsert_file_contents, Fwrite_region): Use it.
19283 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
19284
566684ea
PE
19285 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
19286
e6966cd6
PE
19287 * fns.c: Don't overflow int when computing a list length.
19288 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
19289 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
19290 truncation on 64-bit hosts. Check for QUIT every
19291 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
19292 faster and is responsive enough.
19293 (Flength): Report an error instead of overflowing an integer.
19294 (Fsafe_length): Return a float if the value is not representable
19295 as a fixnum. This shouldn't happen except in contrived situations.
6346d301 19296 (Fnthcdr, Fsort): Don't assume list length fits in int.
de41a810 19297 (Fcopy_sequence): Don't assume vector length fits in int.
00c604f2 19298
dd0b0efb
PE
19299 * alloc.c: Check that resized vectors' lengths fit in fixnums.
19300 (header_size, word_size): New constants.
19301 (allocate_vectorlike): Don't check size overflow here.
19302 (allocate_vector): Check it here instead, since this is the only
19303 caller of allocate_vectorlike that could cause overflow.
19304 Check that the new vector's length is representable as a fixnum.
19305
86fe5cfe
PE
19306 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
19307 The previous code was bogus. For example, next_almost_prime (32)
19308 returned 39, which is undesirable as it is a multiple of 3; and
19309 next_almost_prime (24) returned 25, which is a multiple of 5 so
19310 why was the code bothering to check for multiples of 7?
19311
80e88859
PE
19312 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
19313
4a2f0ad6
PE
19314 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
19315
f66c7cf8
PE
19316 Variadic C functions now count arguments with ptrdiff_t.
19317 This partly undoes my 2011-03-30 change, which replaced int with size_t.
19318 Back then I didn't know that the Emacs coding style prefers signed int.
19319 Also, in the meantime I found a few more instances where arguments
4a2f0ad6
PE
19320 were being counted with int, which may truncate counts on 64-bit
19321 machines, or EMACS_INT, which may be unnecessarily wide.
f66c7cf8
PE
19322 * lisp.h (struct Lisp_Subr.function.aMANY)
19323 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
19324 Arg counts are now ptrdiff_t, not size_t.
19325 All variadic functions and their callers changed accordingly.
19326 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
19327 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
19328 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
19329 * callint.c (Fcall_interactively): Check arg count for overflow,
19330 to avoid potential buffer overrun. Use signed char, not 'int',
19331 for 'varies' array, so that we needn't bother to check its size
19332 calculation for overflow.
19333 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
19334 * eval.c (apply_lambda):
19335 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
19336 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
19337 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
19338
a1759b76
PE
19339 * callint.c (Fcall_interactively): Don't use index var as event count.
19340
d96be9fc
PE
19341 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
19342 * mem-limits.h (SIZE): Remove; no longer used.
19343
a690a978 19344 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
5efd304b 19345
578c21e6
PE
19346 Remove unnecessary casts.
19347 * xterm.c (x_term_init):
19348 * xfns.c (x_set_border_pixel):
19349 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
19350 These aren't needed now that we assume ANSI C.
19351
96f53c6c
PE
19352 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
19353 It's more likely to cause problems (due to unsigned overflow)
19354 than to cure them.
19355
83c77d31
PE
19356 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
19357
ee2079f1
PE
19358 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
19359
6da65536
PE
19360 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
19361
7147c4a4
PE
19362 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
19363
193e32d9
PE
19364 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
19365
e5533da6
PE
19366 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
19367
9910e595
PE
19368 GLYPH_CODE_FACE returns EMACS_INT, not int.
19369 * dispextern.h (merge_faces):
19370 * xfaces.c (merge_faces):
01103c44
PE
19371 * xdisp.c (get_next_display_element, next_element_from_display_vector):
19372 Don't assume EMACS_INT fits in int.
9910e595 19373
2638320e
PE
19374 * character.h (CHAR_VALID_P): Remove unused parameter.
19375 * fontset.c, lisp.h, xdisp.c: All uses changed.
19376
045eb8d9
PE
19377 * editfns.c (Ftranslate_region_internal): Omit redundant test.
19378
c1f134b5
PE
19379 * fns.c (concat): Minor tuning based on overflow analysis.
19380 This doesn't fix any bugs. Use int to hold character, instead
19381 of constantly refetching from Emacs object. Use XFASTINT, not
19382 XINT, for value known to be a character. Don't bother comparing
19383 a single byte to 0400, as it's always less.
19384
395fcb93 19385 * floatfns.c (Fexpt):
327eeec8
PE
19386 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
19387
abbd3d23
PE
19388 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
19389 for characters.
19390
684a03ef
PE
19391 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
19392
0fed43f3
PE
19393 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
19394 Without this fix, on a 64-bit host (aset S 0 4294967386) would
19395 incorrectly succeed when S was a string, because 4294967386 was
19396 truncated before it was used.
19397
8fd02eb7
PE
19398 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
19399 Otherwise, an out-of-range integer could cause undefined behavior
19400 on a 64-bit host.
19401
f8c86b69
PE
19402 * composite.c: Use int, not EMACS_INT, for characters.
19403 (fill_gstring_body, composition_compute_stop_pos): Use int, not
19404 EMACS_INT, for values that are known to be in character range.
19405 This doesn't fix any bugs but is the usual style inside Emacs and
19406 may generate better code on 32-bit machines.
19407
34206dd2
PE
19408 Make sure a 64-bit char is never passed to ENCODE_CHAR.
19409 This is for reasons similar to the recent CHAR_STRING fix.
19410 * charset.c (Fencode_char): Check that character arg is actually
19411 a character. Pass an int to ENCODE_CHAR.
19412 * charset.h (ENCODE_CHAR): Verify that the character argument is no
19413 wider than 'int', as a compile-time check to prevent future regressions
19414 in this area.
19415
c5958d4c 19416 * character.c (char_string): Remove unnecessary casts.
13bdea59
PE
19417
19418 Make sure a 64-bit char is never passed to CHAR_STRING.
19419 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
19420 by silently ignoring the top 32 bits, allowing some values
19421 that were far too large to be valid characters.
19422 * character.h: Include <verify.h>.
19423 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
19424 arguments are no wider than unsigned, as a compile-time check
19425 to prevent future regressions in this area.
19426 * data.c (Faset):
01103c44 19427 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
13bdea59
PE
19428 (Fsubst_char_in_region):
19429 * fns.c (concat):
19430 * xdisp.c (decode_mode_spec_coding):
19431 Adjust to CHAR_STRING's new requirement.
19432 * editfns.c (Finsert_char, Fsubst_char_in_region):
19433 * fns.c (concat): Check that character args are actually
19434 characters. Without this test, these functions did the wrong
19435 thing with wildly out-of-range values on 64-bit hosts.
19436
d37ca623
PE
19437 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
19438 These casts should not be needed on 32-bit hosts, either.
19439 * keyboard.c (read_char):
19440 * lread.c (Fload): Remove casts to unsigned.
19441
ea204efb
PE
19442 * lisp.h (UNSIGNED_CMP): New macro.
19443 This fixes comparison bugs on 64-bit hosts.
19444 (ASCII_CHAR_P): Use it.
19445 * casefiddle.c (casify_object):
01103c44 19446 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
ea204efb
PE
19447 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
19448 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
19449 * dispextern.h (FACE_FROM_ID):
19450 * keyboard.c (read_char): Use UNSIGNED_CMP.
19451
41cb286c
PE
19452 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
19453 not to EMACS_INT, to avoid GCC warning.
19454
4a1b9832
PE
19455 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
19456
55daad71
PE
19457 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
19458 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
19459 isn't needed on 32-bit machines.
8f95c75c 19460
01103c44
PE
19461 * buffer.c (Fgenerate_new_buffer_name):
19462 Use EMACS_INT for count, not int.
0ceccced 19463 (advance_to_char_boundary): Return EMACS_INT, not int.
e762cafe
PE
19464
19465 * data.c (Qcompiled_function): Now static.
19466
c6f072e7
PE
19467 * window.c (window_body_lines): Now static.
19468
20ce5912
PE
19469 * image.c (gif_load): Rename local to avoid shadowing.
19470
9c4c5f81
PE
19471 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
19472 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
19473 * alloc.c (make_save_value): Integer argument is now of type
19474 ptrdiff_t, not int.
19475 (mark_object): Use ptrdiff_t, not int.
19476 * lisp.h (pD): New macro.
19477 * print.c (print_object): Use it.
19478
c0c5c8ae
PE
19479 * alloc.c: Use EMACS_INT, not int, to count objects.
19480 (total_conses, total_markers, total_symbols, total_vector_size)
19481 (total_free_conses, total_free_markers, total_free_symbols)
01103c44
PE
19482 (total_free_floats, total_floats, total_free_intervals)
19483 (total_intervals, total_strings, total_free_strings):
c0c5c8ae
PE
19484 Now EMACS_INT, not int. All uses changed.
19485 (Fgarbage_collect): Compute overall total using a double, so that
19486 integer overflow is less likely to be a problem. Check for overflow
19487 when converting back to an integer.
5a25e253
PE
19488 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
19489 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
19490 These were 'int' variables that could overflow on 64-bit hosts;
19491 they were never used, so remove them instead of repairing them.
211a0b2a 19492 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
6349ae4d
PE
19493 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
19494 Previously, this ceilinged at INT_MAX, but that doesn't work on
19495 64-bit machines.
e46bb31a 19496 (allocate_pseudovector): Don't use EMACS_INT when int would do.
c0c5c8ae 19497
c78baabf 19498 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
86f61a15 19499 (allocate_vectorlike): Check for ptrdiff_t overflow.
b6439961
PE
19500 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
19501 when a (possibly-narrower) signed value would do just as well.
19502 We prefer using signed arithmetic, to avoid comparison confusion.
c78baabf 19503
c9d624c6
PE
19504 * alloc.c: Catch some string size overflows that we were missing.
19505 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
19506 for convenience in STRING_BYTES_MAX.
19507 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
19508 The definition here is exact; the one in lisp.h was approximate.
19509 (allocate_string_data): Check for string overflow. This catches
19510 some instances we weren't catching before. Also, it catches
19511 size_t overflow on (unusual) hosts where SIZE_MAX <= min
19512 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
19513 and ptrdiff_t and EMACS_INT are both 64 bits.
c78baabf 19514
c9d624c6
PE
19515 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
19516 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
640c8776 19517 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
c9d624c6 19518
353032ce
PE
19519 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
19520
2bccce07
PE
19521 * alloc.c (Fmake_string): Check for out-of-range init.
19522
0ac30604
SM
195232011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19524
19525 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
19526
c195f2de
JD
195272011-06-14 Jan Djärv <jan.h.d@swipnet.se>
19528
19529 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
19530 xg_get_default_scrollbar_width.
19531
19532 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
19533 (int_gtk_range_get_value): Move to the scroll bar part of the file.
19534 (style_changed_cb): Call update_theme_scrollbar_width and call
19535 x_set_scroll_bar_default_width and xg_frame_set_char_size for
19536 all frames (Bug#8505).
19537 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
19538 Call gtk_window_set_resizable if HAVE_GTK3.
19539 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
19540 and height if HAVE_GTK3 (Bug#8505).
19541 (scroll_bar_width_for_theme): New variable.
19542 (update_theme_scrollbar_width): New function.
19543 (xg_get_default_scrollbar_width): Move code to
19544 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
19545 (xg_initialize): Call update_theme_scrollbar_width.
19546
19547 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
19548
19549 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
19550
e10ac9f1
MR
195512011-06-12 Martin Rudalics <rudalics@gmx.at>
19552
19553 * frame.c (make_frame): Call other_buffer_safely instead of
19554 other_buffer.
19555
19556 * window.c (temp_output_buffer_show): Call display_buffer with
19557 second argument Vtemp_buffer_show_specifiers and reset latter
19558 immediately after the call.
19559 (Vtemp_buffer_show_specifiers): New variable.
19560 (auto_window_vscroll_p, next_screen_context_lines)
19561 (Vscroll_preserve_screen_position): Remove leading asterisks from
19562 doc-strings.
19563
2d3c217e 195642011-06-12 Paul Eggert <eggert@cs.ucla.edu>
4475bec4 19565
7b7f97e8 19566 Fix minor problems found by GCC 4.6.0 static checking.
4475bec4
PE
19567 * buffer.c (Qclone_number): Remove for now, as it's unused.
19568 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
19569 (record_buffer): Remove unused local.
19570 * frame.c (other_visible_frames, frame_buffer_list): Now static.
19571 (set_frame_buffer_list): Remove; unused.
19572 * frame.h (other_visible_frames): Remove decl.
19573 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
19574 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
19575 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
19576 if HAVE_GPM.
19577 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
19578 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
19579 Define only if HAVE_GPM.
19580 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
19581 (update_hints_inhibit): Remove; never set. All uses removed.
19582 * widgetprv.h (emacsFrameClassRec): Remove decl.
19583 * window.c (delete_deletable_window): Now returns void, since it
19584 wasn't returning anything.
19585 (compare_window_configurations): Remove unused locals.
19586 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
19587 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
4475bec4
PE
19588 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
19589 the same widths as pointers. This follows up on the 2011-05-06 patch.
19590 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
19591 * xterm.h: Likewise.
19592 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
19593
1384b89e
JB
195942011-06-12 Juanma Barranquero <lekktu@gmail.com>
19595
19596 * makefile.w32-in: Update dependencies.
19597 (LISP_H): Add lib/intprops.h.
19598
1100a63c
CY
195992011-06-11 Chong Yidong <cyd@stupidchicken.com>
19600
19601 * image.c (gif_load): Add animation frame delay to the metadata.
19602 (syms_of_image): Use DEFSYM. New symbol `delay'.
19603
6198ccd0
MR
196042011-06-11 Martin Rudalics <rudalics@gmx.at>
19605
19606 * window.c (delete_deletable_window): Re-add.
19607 (Fset_window_configuration): Rewrite to handle dead buffers and
19608 consequently deletable windows.
19609 (window_tree, Fwindow_tree): Remove. Supply functionality in
19610 window.el.
19611 (compare_window_configurations): Simplify code.
19612
b6e3633c
AS
196132011-06-11 Andreas Schwab <schwab@linux-m68k.org>
19614
1ab0dee5
AS
19615 * image.c (imagemagick_load_image): Fix type mismatch.
19616 (Fimagemagick_types): Likewise.
19617
b6e3633c
AS
19618 * window.h (replace_buffer_in_windows): Declare.
19619
9397e56f
MR
196202011-06-11 Martin Rudalics <rudalics@gmx.at>
19621
19622 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
19623 Qclone_number. Remove external declaration of Qdelete_window.
19624 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
19625 code.
640c8776
SM
19626 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
19627 Run Qbuffer_list_update_hook if allowed.
9397e56f
MR
19628 (Fother_buffer): Rewrite doc-string. Major rewrite for new
19629 buffer list implementation.
19630 (other_buffer_safely): New function.
19631 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
19632 calls to replace_buffer_in_windows and
19633 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
19634 if allowed.
19635 (record_buffer): Inhibit quitting and rewrite using quittable
19636 functions. Run Qbuffer_list_update_hook if allowed.
19637 (Frecord_buffer, Funrecord_buffer): New functions.
640c8776
SM
19638 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
19639 Move switch-to-buffer to window.el.
9397e56f
MR
19640 (bury-buffer): Move to window.el.
19641 (Vbuffer_list_update_hook): New variable.
19642
19643 * lisp.h (other_buffer_safely): Add prototype in buffer.c
19644 section.
19645
19646 * window.h (resize_frame_windows): Move up in code.
19647 (Fwindow_frame): Remove EXFUN.
19648 (replace_buffer_in_all_windows): Remove prototype.
19649 (replace_buffer_in_windows_safely): Add prototype.
19650
19651 * window.c: Declare Qdelete_window static again. Move down
19652 declaration of select_count.
19653 (Fnext_window, Fprevious_window): Rewrite doc-strings.
19654 (Fother_window): Move to window.el.
19655 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
19656 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
19657 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
19658 window.el.
19659 (replace_buffer_in_windows): Implement by calling
19660 Qreplace_buffer_in_windows.
19661 (replace_buffer_in_all_windows): Remove with some functionality
19662 moved into replace_buffer_in_windows_safely.
19663 (replace_buffer_in_windows_safely): New function.
19664 (select_window_norecord, select_frame_norecord): Move in front
19665 of run_window_configuration_change_hook. Remove now obsolete
19666 declarations.
640c8776
SM
19667 (Fset_window_buffer): Rewrite doc-string.
19668 Call Qrecord_window_buffer.
9397e56f
MR
19669 (keys_of_window): Move binding for other-window to window.el.
19670
b50691aa
CY
196712011-06-11 Chong Yidong <cyd@stupidchicken.com>
19672
19673 * dispextern.h (struct image): Replace data member, whose int_val
19674 and ptr_val fields were not used by anything, with a single
19675 lisp_val object.
19676
19677 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
19678 (gif_clear_image, gif_load, imagemagick_load_image)
19679 (gs_clear_image, gs_load): Callers changed.
19680
3f754b86
PE
196812011-06-10 Paul Eggert <eggert@cs.ucla.edu>
19682
cca69397
PE
19683 * buffer.h: Include <time.h>, for time_t.
19684 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
19685
109e28d0
PE
19686 Fix minor problems found by static checking.
19687
60737f02
PE
19688 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
19689
4b66faf3
PE
19690 Make identifiers static if they are not used in other modules.
19691 * data.c (Qcompiled_function, Qframe, Qvector):
19692 * image.c (QimageMagick, Qsvg):
19693 * minibuf.c (Qmetadata):
19694 * window.c (resize_window_check, resize_root_window): Now static.
19695 * window.h (resize_window_check, resize_root_window): Remove decls.
19696
109e28d0
PE
19697 * window.c (window_deletion_count, delete_deletable_window):
19698 Remove; unused.
46a4ce9e
PE
19699 (window_body_lines): Now static.
19700 (Fdelete_other_windows_internal): Mark vars as initialized.
19701 Make sure 'resize_failed' is initialized.
19702 (run_window_configuration_change_hook): Rename local to avoid shadowing.
19703 (resize_window_apply): Remove unused local.
19704 * window.h (delete_deletable_window): Remove decl.
19705
109e28d0 19706 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
33290528
PE
19707 (imagemagick_load_image): Fix pointer signedness problem by changing
19708 last arg from unsigned char * to char *. All uses changed.
19709 Also, fix a local for similar reasons.
19710 Remove unused locals. Remove locals to avoid shadowing.
19711 (fn_rsvg_handle_free): Remove; unused.
19712 (svg_load, svg_load_image): Fix pointer signedness problem.
f7e13da3 19713 (imagemagick_load_image): Don't use garbage pointer image_wand.
33290528 19714
3f754b86
PE
19715 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
19716
2547adb1
CY
197172011-06-10 Chong Yidong <cyd@stupidchicken.com>
19718
19719 * image.c (gif_load): Fix omitted cast error introduced by
19720 2011-06-06 change.
19721
2c8e37d4
MR
197222011-06-10 Martin Rudalics <rudalics@gmx.at>
19723
19724 * window.h (resize_proportionally, orig_total_lines)
19725 (orig_top_line): Remove from window structure.
19726 (set_window_height, set_window_width, change_window_heights)
19727 (Fdelete_window): Remove prototypes.
19728 (resize_frame_windows): Remove duplicate declaration.
19729
440a42e3
EZ
197302011-06-10 Eli Zaretskii <eliz@gnu.org>
19731
19732 * window.h (resize_frame_windows, resize_window_check)
19733 (delete_deletable_window, resize_root_window)
19734 (resize_frame_windows): Declare prototypes.
19735
19736 * window.c (resize_window_apply): Make definition be "static" to
19737 match the prototype.
19738
562dd5e9
MR
197392011-06-10 Martin Rudalics <rudalics@gmx.at>
19740
19741 * window.c: Remove declarations of Qwindow_size_fixed,
19742 window_min_size_1, window_min_size_2, window_min_size,
19743 size_window, window_fixed_size_p, enlarge_window, delete_window.
19744 Remove static from declaration of Qdelete_window, it's
19745 temporarily needed by Fbury_buffer.
19746 (replace_window): Don't assign orig_top_line and
19747 orig_total_lines.
19748 (Fdelete_window, delete_window): Remove. Window deletion is
19749 handled by window.el.
640c8776
SM
19750 (window_loop): Remove DELETE_OTHER_WINDOWS case.
19751 Replace Fdelete_window calls with calls to Qdelete_window.
562dd5e9
MR
19752 (Fdelete_other_windows): Remove. Deleting other windows is
19753 handled by window.el.
19754 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
19755 handled in window.el.
19756 (window_min_size_2, window_min_size_1, window_min_size): Remove.
19757 Window minimum sizes are handled in window.el.
19758 (shrink_windows, size_window, set_window_height)
19759 (set_window_width, change_window_heights, window_height)
19760 (window_width, CURBEG, CURSIZE, enlarge_window)
19761 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
19762 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
19763 handled in window.el.
19764 (make_dummy_parent): Rename to make_parent_window and give it a
19765 second argument horflag.
19766 (make_window): Don't set resize_proportionally any more.
19767 (Fsplit_window): Remove. Windows are split in window.el.
19768 (save_restore_action, save_restore_orig_size)
19769 (shrink_window_lowest_first, save_restore_orig_size): Remove.
19770 Resize mini windows in window.el.
19771 (grow_mini_window, shrink_mini_window): Implement by calling
19772 Qresize_root_window_vertically, resize_window_check and
19773 resize_window_apply.
640c8776
SM
19774 (saved_window, Fset_window_configuration, save_window_save):
19775 Do not handle orig_top_line, orig_total_lines, and
562dd5e9
MR
19776 resize_proportionally.
19777 (window_min_height, window_min_width): Move to window.el.
19778 (keys_of_window): Move bindings for delete-other-windows,
19779 split-window, delete-window and enlarge-window to window.el.
19780
19781 * buffer.c: Temporarily extern Qdelete_window.
19782 (Fbury_buffer): Temporarily call Qdelete_window instead of
19783 Fdelete_window (Fbury_buffer will move to window.el soon).
19784
19785 * frame.c (set_menu_bar_lines_1): Remove code handling
19786 orig_top_line and orig_total_lines.
19787
19788 * dispnew.c (adjust_frame_glyphs_initially): Don't use
19789 set_window_height but set heights directly.
19790 (change_frame_size_1): Use resize_frame_windows.
19791
19792 * xdisp.c (init_xdisp): Don't use set_window_height but set
19793 heights directly.
19794
640c8776
SM
19795 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
19796 Use resize_frame_windows instead of change_window_heights and run
562dd5e9
MR
19797 run_window_configuration_change_hook.
19798
19799 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
19800 instead of change_window_heights and run
19801 run_window_configuration_change_hook.
19802
1a13852e
MR
198032011-06-09 Martin Rudalics <rudalics@gmx.at>
19804
19805 * window.c (replace_window): Rename second argument REPLACEMENT to
19806 NEW. New third argument SETFLAG. Rewrite.
19807 (delete_window, make_dummy_parent): Call replace_window with
19808 third argument 1.
19809 (window_list_1): Move down in code.
19810 (run_window_configuration_change_hook): Move set_buffer part
19811 before select_frame_norecord part in order to unwind correctly.
19812 Rename count1 to count.
19813 (recombine_windows, delete_deletable_window, resize_root_window)
19814 (Fdelete_other_windows_internal)
19815 (Frun_window_configuration_change_hook, make_parent_window)
19816 (resize_window_check, resize_window_apply, Fresize_window_apply)
19817 (resize_frame_windows, Fsplit_window_internal)
640c8776
SM
19818 (Fdelete_window_internal, Fresize_mini_window_internal):
19819 New functions.
1a13852e
MR
19820 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
19821
f3d1777e
MR
198222011-06-08 Martin Rudalics <rudalics@gmx.at>
19823
496e208e
MR
19824 * window.h (window): Add some new members to window structure -
19825 normal_lines, normal_cols, new_total, new_normal, clone_number,
19826 splits, nest, prev_buffers, next_buffers.
19827 (WINDOW_TOTAL_SIZE): Move here from window.c.
b9e809c2 19828 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
496e208e 19829
f3d1777e
MR
19830 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
19831 Remove.
496e208e
MR
19832 (make_dummy_parent): Set new members of windows structure.
19833 (make_window): Move down in code. Handle new members of window
19834 structure.
19835 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
19836 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
19837 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
19838 (Fset_window_prev_buffers, Fwindow_next_buffers)
640c8776
SM
19839 (Fset_window_next_buffers, Fset_window_clone_number):
19840 New functions.
496e208e
MR
19841 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
19842 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
19843 Doc-string fixes.
19844 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
19845 Argument WINDOW can be now internal window too.
19846 (Fwindow_use_time): Move up in code.
19847 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
19848 Rewrite doc-string.
19849 (Fset_window_configuration, saved_window)
19850 (Fcurrent_window_configuration, save_window_save): Handle new
19851 members of window structure.
b9e809c2
MR
19852 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
19853 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
19854 (syms_of_window): New Lisp objects Qrecord_window_buffer,
19855 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
19856 Qget_mru_window, Qresize_root_window,
19857 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
19858 Qauto_buffer_name; staticpro them.
f3d1777e 19859
abde8f8c
MR
198602011-06-07 Martin Rudalics <rudalics@gmx.at>
19861
19862 * window.c (Fwindow_total_size, Fwindow_left_column)
19863 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
19864 (Fwindow_list_1): New functions.
19865 (window_box_text_cols): Replace with window_body_cols.
640c8776
SM
19866 (Fwindow_width, Fscroll_left, Fscroll_right):
19867 Use window_body_cols instead of window_box_text_cols.
19868 (delete_window, Fset_window_configuration):
19869 Call delete_all_subwindows with window as argument.
fa8a67e6
MR
19870 (delete_all_subwindows): Take a window as argument and not a
19871 structure. Rewrite.
190b47e6
MR
19872 (window_loop): Remove handling of GET_LRU_WINDOW and
19873 GET_LARGEST_WINDOW.
19874 (Fget_lru_window, Fget_largest_window): Move to window.el.
abde8f8c
MR
19875
19876 * window.h: Extern window_body_cols instead of
fa8a67e6
MR
19877 window_box_text_cols. delete_all_subwindows now takes a
19878 Lisp_Object as argument.
abde8f8c 19879
640c8776
SM
19880 * indent.c (compute_motion, Fcompute_motion):
19881 Use window_body_cols instead of window_box_text_cols.
abde8f8c 19882
fa8a67e6
MR
19883 * frame.c (delete_frame): Call delete_all_subwindows with root
19884 window as argument.
19885
a54e3482
DC
198862011-06-07 Daniel Colascione <dan.colascione@gmail.com>
19887
19888 * fns.c (Fputhash): Document return value.
19889
60002bf5
CY
198902011-06-06 Chong Yidong <cyd@stupidchicken.com>
19891
19892 * image.c (gif_load): Implement gif89a spec "no disposal" method.
19893
0c671da6 198942011-06-06 Paul Eggert <eggert@cs.ucla.edu>
ccd9a01a 19895
b862a52a 19896 Cons<->int and similar integer overflow fixes (Bug#8794).
77984278 19897
be44ca6c
PE
19898 Check for overflow when converting integer to cons and back.
19899 * charset.c (Fdefine_charset_internal, Fdecode_char):
19900 Use cons_to_unsigned to catch overflow.
19901 (Fencode_char): Use INTEGER_TO_CONS.
19902 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
19903 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
19904 * data.c (long_to_cons, cons_to_long): Remove.
19905 (cons_to_unsigned, cons_to_signed): New functions.
19906 These signal an error for invalid or out-of-range values.
19907 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
19908 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
19909 * font.c (Ffont_variation_glyphs):
19910 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
19911 * lisp.h: Include <intprops.h>.
19912 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
19913 (cons_to_signed, cons_to_unsigned): New decls.
19914 (long_to_cons, cons_to_long): Remove decls.
19915 * undo.c (record_first_change): Use INTEGER_TO_CONS.
19916 (Fprimitive_undo): Use CONS_TO_INTEGER.
19917 * xfns.c (Fx_window_property): Likewise.
19918 * xselect.c: Include <limits.h>.
19919 (x_own_selection, selection_data_to_lisp_data):
19920 Use INTEGER_TO_CONS.
19921 (x_handle_selection_request, x_handle_selection_clear)
19922 (x_get_foreign_selection, Fx_disown_selection_internal)
19923 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
19924 (lisp_data_to_selection_data): Use cons_to_unsigned.
19925 (x_fill_property_data): Use cons_to_signed.
19926 Report values out of range.
19927
d1f3d2af
PE
19928 Check for buffer and string overflow more precisely.
19929 * buffer.h (BUF_BYTES_MAX): New macro.
19930 * lisp.h (STRING_BYTES_MAX): New macro.
19931 * alloc.c (Fmake_string):
19932 * character.c (string_escape_byte8):
19933 * coding.c (coding_alloc_by_realloc):
19934 * doprnt.c (doprnt):
19935 * editfns.c (Fformat):
19936 * eval.c (verror):
19937 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
19938 since they may not be the same number.
19939 * editfns.c (Finsert_char):
19940 * fileio.c (Finsert_file_contents):
19941 Likewise for BUF_BYTES_MAX.
19942
dd52fcea
PE
19943 * image.c: Use ptrdiff_t, not int, for sizes.
19944 (slurp_file): Switch from int to ptrdiff_t.
19945 All uses changed.
19946 (slurp_file): Check that file size fits in both size_t (for
19947 malloc) and ptrdiff_t (for sanity and safety).
19948
7f9bbdbb
PE
19949 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
19950 if b->modtime has its maximal value.
19951
dfe18f82
PE
19952 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
19953
84acfcf0
PE
19954 Don't assume time_t can fit into int.
19955 * buffer.h (struct buffer.modtime): Now time_t, not int.
19956 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
19957 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
19958
ccd9a01a
PE
19959 Minor fixes for signed vs unsigned integers.
19960 * character.h (MAYBE_UNIFY_CHAR):
19961 * charset.c (maybe_unify_char):
19962 * keyboard.c (read_char, reorder_modifiers):
19963 XINT -> XFASTINT, since the integer must be nonnegative.
19964 * ftfont.c (ftfont_spec_pattern):
19965 * keymap.c (access_keymap, silly_event_symbol_error):
19966 XUINT -> XFASTINT, since the integer must be nonnegative.
19967 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
19968 since it makes no difference and we prefer signed.
19969 * keyboard.c (record_char): Use XUINT when all the neighbors do.
19970 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
19971 nonnegative.
19972
d6d100dd
SM
199732011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
19974
19975 * window.h (Fwindow_frame): Declare.
19976
2b6148e4
PE
199772011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19978
19979 * alloc.c: Simplify handling of large-request failures (Bug#8800).
19980 (SPARE_MEMORY): Always define.
19981 (LARGE_REQUEST): Remove.
19982 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
19983
f230ecc9
MR
199842011-06-06 Martin Rudalics <rudalics@gmx.at>
19985
727e958e
MR
19986 * lisp.h: Move EXFUNS for Fframe_root_window,
19987 Fframe_first_window and Fset_frame_selected_window to window.h.
19988
19989 * window.h: Move EXFUNS for Fframe_root_window,
19990 Fframe_first_window and Fset_frame_selected_window here from
19991 lisp.h.
19992
19993 * frame.c (Fwindow_frame, Fframe_first_window)
19994 (Fframe_root_window, Fframe_selected_window)
19995 (Fset_frame_selected_window): Move to window.c.
19996 (Factive_minibuffer_window): Move to minibuf.c.
19997 (Fother_visible_frames_p): New function.
19998
19999 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
20000
f230ecc9
MR
20001 * window.c (decode_window, decode_any_window): Move up in code.
20002 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
20003 (inhibit_frame_unsplittable): Remove unused variable.
bf60a96b
MR
20004 (Fwindow_buffer): Move up and rewrite doc-string.
20005 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
20006 (Fwindow_prev): New functions.
727e958e
MR
20007 (Fwindow_frame): Move here from frame.c. Accept any window as
20008 argument.
20009 (Fframe_root_window, Fframe_first_window)
20010 (Fframe_selected_window): Move here from frame.c. Accept frame
20011 or arbitrary window as argument. Update doc-strings.
20012 (Fminibuffer_window): Move up in code.
20013 (Fwindow_minibuffer_p): Move up in code and simplify.
d6d100dd
SM
20014 (Fset_frame_selected_window): Move here from frame.c.
20015 Marginal rewrite.
727e958e
MR
20016 (Fselected_window, select_window, Fselect_window): Move up in
20017 code. Minor doc-string fixes.
f230ecc9 20018
4d09bcf6
PE
200192011-06-06 Paul Eggert <eggert@cs.ucla.edu>
20020
20021 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
20022 Do not assume that spare memory exists; that assumption is valid
20023 only if SYSTEM_MALLOC.
20024 (LARGE_REQUEST): New macro, so that the issue of large requests
20025 is separated from the issue of spare memory.
20026
810928a2
AS
200272011-06-05 Andreas Schwab <schwab@linux-m68k.org>
20028
172418ad
AS
20029 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
20030 format. (Bug#8806)
20031
43f862f7
AS
20032 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
20033
810928a2
AS
20034 * xfns.c (x_set_scroll_bar_default_width): Move declarations
20035 before statements.
20036
a059fe24
JD
200372011-06-05 Jan Djärv <jan.h.d@swipnet.se>
20038
20039 * gtkutil.c (xg_get_default_scrollbar_width): New function.
20040
20041 * gtkutil.h: Declare xg_get_default_scrollbar_width.
20042
20043 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
20044 min width by calling x_set_scroll_bar_default_width (Bug#8505).
20045
989bf368
JB
200462011-06-05 Juanma Barranquero <lekktu@gmail.com>
20047
20048 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
20049
4b80f674
CY
200502011-06-04 Chong Yidong <cyd@stupidchicken.com>
20051
20052 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
20053 (x_clipboard_manager_save): Add return value.
d6d100dd
SM
20054 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
20055 New error handlers.
4b80f674
CY
20056 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
20057 Obey Vx_select_enable_clipboard_manager. Catch errors in
20058 x_clipboard_manager_save (Bug#8779).
20059 (Vx_select_enable_clipboard_manager): New variable.
de65b42c 20060 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
4b80f674 20061
99a33b77 200622011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
8b3115e7
DN
20063
20064 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
20065
99a33b77 200662011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14eca62f
YM
20067
20068 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
20069 in the current matrix if keep_current_p is non-zero.
20070
8264569d
EZ
200712011-06-04 Eli Zaretskii <eliz@gnu.org>
20072
20073 * bidi.c (bidi_level_of_next_char): Fix last change.
20074
57f97249
EZ
200752011-06-03 Eli Zaretskii <eliz@gnu.org>
20076
fec2107c 20077 Support bidi reordering of text covered by display properties.
57f97249 20078
fec2107c
EZ
20079 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
20080 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
20081 (bidi_cache_search, bidi_cache_iterator_state)
20082 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
d6d100dd
SM
20083 (bidi_level_of_next_char, bidi_move_to_visually_next):
20084 Support character positions inside a run of characters covered by a
fec2107c
EZ
20085 display string.
20086 (bidi_paragraph_init, bidi_resolve_explicit_1)
20087 (bidi_level_of_next_char): Call bidi_fetch_char and
20088 bidi_fetch_char_advance instead of FETCH_CHAR and
20089 FETCH_CHAR_ADVANCE.
20090 (bidi_init_it): Initialize new members.
20091 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
20092 definitions.
20093 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
20094 instead of using explicit *_CHAR codes.
d6d100dd
SM
20095 (bidi_resolve_explicit, bidi_resolve_weak):
20096 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
fec2107c
EZ
20097 bidirectional text is supported only in multibyte buffers.
20098 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
20099 it to initialize the frame_window_p member of struct bidi_it.
20100 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
20101 (bidi_resolve_explicit, bidi_resolve_weak)
20102 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
20103 bidi_it->nchars is non-positive.
20104 (bidi_level_of_next_char): Don't try to lookup the cache for the
20105 next/previous character if nothing is cached there yet, or if we
20106 were just reseat()'ed to a new position.
c40e2fb2 20107
0e14fe90
EZ
20108 * xdisp.c (set_cursor_from_row): Set start and stop points
20109 according to the row's direction when priming the loop that looks
20110 for the glyph on which to display cursor.
20111 (single_display_spec_intangible_p): Function deleted.
20112 (display_prop_intangible_p): Reimplement to call
20113 handle_display_spec instead of single_display_spec_intangible_p.
d6d100dd
SM
20114 Accept 3 additional arguments needed by handle_display_spec.
20115 This fixes incorrect cursor motion across display property with complex
0e14fe90
EZ
20116 values: lists, `(when COND...)' forms, etc.
20117 (single_display_spec_string_p): Support property values that are
20118 lists with the argument STRING its top-level element.
20119 (display_prop_string_p): Fix the condition for processing a
20120 property that is a list to be consistent with handle_display_spec.
fec2107c 20121 (handle_display_spec): New function, refactored from the
fc6f18ce
EZ
20122 last portion of handle_display_prop.
20123 (compute_display_string_pos): Accept additional argument
20124 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
20125 value of a `display' property is a "replacing spec".
20126 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
20127 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
20128 the display property, but just return a value indicating whether
20129 the display property will replace the characters it covers.
20130 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
20131 frame_window_p members of struct bidi_it.
d6d100dd
SM
20132 (compute_display_string_pos, compute_display_string_end):
20133 New functions.
fec2107c
EZ
20134 (push_it): Accept second argument POSITION, where pop_it should
20135 jump to continue iteration.
20136 (reseat_1): Initialize bidi_it.disp_pos.
fc6f18ce 20137
fec2107c
EZ
20138 * keyboard.c (adjust_point_for_property): Adjust the call to
20139 display_prop_intangible_p to its new signature.
fc6f18ce
EZ
20140
20141 * dispextern.h (struct bidi_it): New member frame_window_p.
fec2107c
EZ
20142 (bidi_init_it): Update prototypes.
20143 (display_prop_intangible_p): Update prototype.
d6d100dd
SM
20144 (compute_display_string_pos, compute_display_string_end):
20145 Declare prototypes.
fec2107c
EZ
20146 (struct bidi_it): New members nchars and disp_pos. ch_len is now
20147 EMACS_INT.
fc6f18ce 20148
40087514 201492011-06-02 Paul Eggert <eggert@cs.ucla.edu>
0de4bb68 20150
57f53182
PE
20151 Malloc failure behavior now depends on size of allocation.
20152 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
20153 * lisp.h: Change signatures accordingly.
20154 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
20155 All callers changed. (Bug#8762)
20156
20157 * gnutls.c: Use Emacs's memory allocators.
20158 Without this change, the gnutls library would invoke malloc etc.
20159 directly, which causes problems on non-SYNC_INPUT hosts, and which
20160 runs afoul of improving memory_full behavior. (Bug#8761)
20161 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
20162 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
20163 xfree instead of the default malloc, realloc, free.
20164 (Fgnutls_boot): No need to check for memory allocation failure,
20165 since xmalloc does that for us.
20166
ac32cd99 20167 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
3870d916
PE
20168 * category.c (hash_get_category_set):
20169 * ccl.c (ccl_driver):
20170 * charset.c (Fdefine_charset_internal):
20171 * charset.h (struct charset.hash_index):
20172 * composite.c (get_composition_id, gstring_lookup_cache)
20173 (composition_gstring_put_cache):
20174 * composite.h (struct composition.hash_index):
20175 * dispextern.h (struct image.hash):
20176 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
20177 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
20178 (hashfn_equal, hashfn_user_defined, make_hash_table)
20179 (maybe_resize_hash_table, hash_lookup, hash_put)
20180 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
20181 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
20182 (Fsxhash, Fgethash, Fputhash, Fmaphash):
20183 * image.c (make_image, search_image_cache, lookup_image)
20184 (xpm_put_color_table_h):
20185 * lisp.h (struct Lisp_Hash_Table):
0de4bb68 20186 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
ac389d0c 20187 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
3870d916 20188 for hashes and hash indexes, instead of 'unsigned' and 'int'.
40087514
PE
20189 * alloc.c (allocate_vectorlike):
20190 Check for overflow in vector size calculations.
20191 * ccl.c (ccl_driver):
20192 Check for overflow when converting EMACS_INT to int.
0de4bb68
PE
20193 * fns.c, image.c: Remove unnecessary static decls that would otherwise
20194 need to be updated by these changes.
40087514
PE
20195 * fns.c (make_hash_table, maybe_resize_hash_table):
20196 Check for integer overflow with large hash tables.
0de4bb68
PE
20197 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
20198 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
20199 (SXHASH_REDUCE): New macro.
20200 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
20201 Use it instead of discarding useful hash info with large hash values.
20202 (sxhash_float): New function.
20203 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
20204 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
40087514
PE
20205 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
20206 Rewrite to use FIXNUM_BITS, as this simplifies things.
0de4bb68
PE
20207 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
20208 Adjust signatures to match updated version of code.
20209 (consing_since_gc): Now EMACS_INT, since a single hash table can
20210 use more than INT_MAX bytes.
20211
698d32e2
DN
202122011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
20213
20214 Make it possible to build with GCC-4.6+ -O2 -flto.
20215
20216 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
20217
fd6fa53f
SM
202182011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20219
20220 * minibuf.c (get_minibuffer, read_minibuf_unwind):
20221 Call minibuffer-inactive-mode.
20222
864db017
JB
202232011-05-31 Juanma Barranquero <lekktu@gmail.com>
20224
20225 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
20226 Update dependencies.
20227
2ad0baf4
DN
202282011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20229
20230 * data.c (init_data): Remove code for UTS, this system is not
20231 supported anymore.
20232
4fcc2638
DN
202332011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20234
20235 Don't force ./temacs to start in terminal mode.
20236
20237 * frame.c (make_initial_frame): Initialize faces in all cases, not
20238 only when CANNOT_DUMP is defined.
20239 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
20240
c56e0fd5
DN
202412011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20242
20243 * dispnew.c (add_window_display_history): Use const for the string
20244 pointer. Remove declaration, not needed.
20245
333d54da 202462011-05-31 Paul Eggert <eggert@cs.ucla.edu>
9cf9f756 20247
55d4c1b2 20248 Use 'inline', not 'INLINE'.
333d54da 20249 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
55d4c1b2
PE
20250 * alloc.c, fontset.c (INLINE): Remove.
20251 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
20252 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
20253 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
20254 * gmalloc.c (register_heapinfo): Use inline unconditionally.
20255 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
20256
738db178
DN
202572011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20258
20259 Make it possible to run ./temacs.
20260
20261 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
20262 syms_of_callproc does the same thing. Remove test for
20263 "initialized", do it in the caller.
20264 * emacs.c (main): Avoid calling set_initial_environment when dumping.
20265
620c53a6
SM
202662011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20267
20268 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
20269 (read_minibuf): Use get_minibuffer.
20270 (syms_of_minibuf): Use DEFSYM.
20271 (Qmetadata): New var.
20272 * data.c (Qbuffer): Don't make it static.
20273 (syms_of_data): Use DEFSYM.
20274
e003a292
PE
202752011-05-31 Paul Eggert <eggert@cs.ucla.edu>
20276
20277 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
20278 (CCL_CODE_MIN): New macro.
20279
ed008a6d
PE
202802011-05-30 Paul Eggert <eggert@cs.ucla.edu>
20281
3687c2ef
PE
20282 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
20283
ed008a6d
PE
20284 * eval.c (Qdebug): Now static.
20285 * lisp.h (Qdebug): Remove decl. This reverts a part of the
20286 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
20287 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
20288
d66c4c7c
CY
202892011-05-29 Chong Yidong <cyd@stupidchicken.com>
20290
20291 * image.c: Various fixes to ImageMagick code comments.
20292 (Fimagemagick_types): Doc fix.
20293
5fbc2025
PE
202942011-05-29 Paul Eggert <eggert@cs.ucla.edu>
20295
0196f88a
PE
20296 Minor fixes prompted by GCC 4.6.0 warnings.
20297
20298 * xselect.c (converted_selections, conversion_fail_tag): Now static.
20299
5fbc2025
PE
20300 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
20301 (x_clipboard_manager_save_all): Move extern decl to ...
20302 * xterm.h: ... here, so that it can be checked for consistency.
20303
1dd3c2d9
CY
203042011-05-29 Chong Yidong <cyd@stupidchicken.com>
20305
20306 * xselect.c (x_clipboard_manager_save_frame)
20307 (x_clipboard_manager_save_all): New functions.
20308 (Fx_clipboard_manager_save): Lisp function deleted.
20309
20310 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
20311 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
20312
20313 * xterm.h: Update prototype.
20314
5ba6571d
WX
203152011-05-28 William Xu <william.xwl@gmail.com>
20316
20317 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
20318 exiting (Bug#8239).
20319
3eaff834
JM
203202011-05-28 Jim Meyering <meyering@redhat.com>
20321
e1900994 20322 Avoid a sign-extension bug in crypto_hash_function.
3eaff834
JM
20323 * fns.c (to_uchar): Define.
20324 (crypto_hash_function): Use it to convert some newly-signed
20325 variables to unsigned, to avoid sign-extension bugs. For example,
20326 without this change, (md5 "truc") would evaluate to
20327 45723a2aff78ff4fff7fff1114760e62 rather than the expected
20328 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
e1900994 20329 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
3eaff834 20330
0f6990a7
PE
203312011-05-27 Paul Eggert <eggert@cs.ucla.edu>
20332
20333 Integer overflow fixes.
c8a9ca5a 20334
08686060
PE
20335 * dbusbind.c: Serial number integer overflow fixes.
20336 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
08686060
PE
20337 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
20338 to hold a serial number that is too large for a fixnum.
20339 (Fdbus_method_return_internal, Fdbus_method_error_internal):
20340 Check for serial numbers out of range. Decode any serial number
59568bf0 20341 that was so large that it became a float. (Bug#8722)
08686060 20342
2d1fc3c7
PE
20343 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
20344 (Fdbus_call_method, Fdbus_call_method_asynchronously):
20345 Use XFASTINT rather than XUINT when numbers are nonnegative.
20346 (xd_append_arg, Fdbus_method_return_internal):
20347 (Fdbus_method_error_internal): Likewise. Also, for unsigned
20348 arguments, check that Lisp number is nonnegative, rather than
59568bf0 20349 silently wrapping negative numbers around. (Bug#8722)
30217ff0 20350 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
59568bf0 20351 (Bug#8722)
2d1fc3c7 20352
c8a9ca5a
PE
20353 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
20354
519e1d69
PE
20355 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
20356
6df6ae42 20357 ccl: Add integer overflow checks.
30569699
PE
20358 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
20359 (IN_INT_RANGE): New macros.
20360 (ccl_driver): Use them to check for integer overflow when
20361 decoding a CCL program. Many of the new checks are whether XINT (x)
20362 fits in int; it doesn't always, on 64-bit hosts. The new version
20363 doesn't catch all possible integer overflows, but it's an
847044ea 20364 improvement. (Bug#8719)
30569699 20365
c11285dc
PE
20366 * alloc.c (make_event_array): Use XINT, not XUINT.
20367 There's no need for unsigned here.
20368
fdccd48e
PE
20369 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
20370 This follows up to the 2011-05-06 change that substituted uintptr_t
20371 for EMACS_INT. This case wasn't caught back then.
20372
37910ab2
PE
20373 Rework Fformat to avoid integer overflow issues.
20374 * editfns.c: Include <float.h> unconditionally, as it's everywhere
20375 now (part of C89). Include <verify.h>.
20376 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
20377 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
20378 (Fformat): Avoid the prepass trying to compute sizes; it was only
20379 approximate and thus did not catch overflow reliably. Instead, walk
20380 through the format just once, formatting and computing sizes as we go,
20381 checking for integer overflow at every step, and allocating a larger
20382 buffer as needed. Keep track separately whether the format is
20383 multibyte. Keep only the most-recently calculated precision, rather
20384 than them all. Record whether each argument has been converted to
20385 string. Use EMACS_INT, not int, for byte and char and arg counts.
20386 Support field widths and precisions larger than INT_MAX. Avoid
20387 sprintf's undefined behavior with conversion specifications such as %#d
20388 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
20389 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
20390 formatting out-of-range floating point numbers with int
9173deec 20391 formats. (Bug#8668)
37910ab2 20392
2e6578fb
PE
20393 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
20394
0ae6bdee
PE
20395 * data.c: Avoid integer truncation in expressions involving floats.
20396 * data.c: Include <intprops.h>.
20397 (arith_driver): When there's an integer overflow in an expression
20398 involving floating point, convert the integers to floating point
20399 so that the resulting value does not suffer from catastrophic
20400 integer truncation. For example, on a 64-bit host (* 4
20401 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
20402 Do not rely on undefined behavior after integer overflow.
20403
de883a70
PE
20404 merge count_size_as_multibyte, parse_str_to_multibyte
20405 * character.c, character.h (count_size_as_multibyte):
fd6fa53f 20406 Rename from parse_str_to_multibyte; all uses changed.
de883a70
PE
20407 Check for integer overflow.
20408 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
20409 since it's now a duplicate of the other. This is more of
20410 a character than a buffer op, so better that it's in character.c.
20411 * fns.c, print.c: Adjust to above changes.
20412
2ff916cb
PE
204132011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20414
20415 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
20416
f1b54466
PE
204172011-05-27 Paul Eggert <eggert@cs.ucla.edu>
20418
fb1ac845
PE
20419 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
20420 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
20421 (x_clipboard_manager_save): Now static.
20422 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
20423
f1b54466
PE
20424 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
20425 (crypto_hash_function): Now static.
20426 Fix pointer signedness problems. Avoid unnecessary initializations.
20427
a9f737ee
CY
204282011-05-27 Chong Yidong <cyd@stupidchicken.com>
20429
20430 * termhooks.h (Vselection_alist): Make it terminal-local.
20431
20432 * terminal.c (create_terminal): Initialize it.
20433
20434 * xselect.c: Support for clipboard managers.
20435 (Vselection_alist): Move to termhooks.h as terminal-local var.
20436 (LOCAL_SELECTION): New macro.
20437 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
20438 (symbol_to_x_atom): Remove gratuitous arg.
20439 (x_handle_selection_request, lisp_data_to_selection_data)
20440 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
620c53a6
SM
20441 (x_own_selection, x_get_local_selection, x_convert_selection):
20442 New arg, specifying work frame. Use terminal-local Vselection_alist.
a9f737ee
CY
20443 (some_frame_on_display): Delete unused function.
20444 (Fx_own_selection_internal, Fx_get_selection_internal)
20445 (Fx_disown_selection_internal, Fx_selection_owner_p)
20446 (Fx_selection_exists_p): New optional frame arg.
20447 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
20448 (x_handle_selection_clear): Don't treat other terminals with the
20449 same keyboard specially. Use the terminal-local Vselection_alist.
20450 (x_clear_frame_selections): Use Frun_hook_with_args.
20451
20452 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
20453
20454 * xterm.h: Add support for those atoms.
20455
e067f0c1
CY
204562011-05-26 Chong Yidong <cyd@stupidchicken.com>
20457
20458 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
20459 (converted_selections, conversion_fail_tag): New global variables.
20460 (x_selection_request_lisp_error): Free the above.
20461 (x_get_local_selection): Remove unnecessary code.
20462 (x_reply_selection_request): Args changed; handle arbitrary array
620c53a6
SM
20463 of converted selections stored in converted_selections.
20464 Separate the XChangeProperty and SelectionNotify steps.
e067f0c1
CY
20465 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
20466 (x_convert_selection): New function.
20467 (x_handle_selection_event): Simplify.
20468 (x_get_foreign_selection): Don't ignore incoming requests while
20469 waiting for an answer; this will fail when we implement
20470 SAVE_TARGETS, and seems unnecessary anyway.
20471 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
20472 (Vx_sent_selection_functions): Doc fix.
20473
0f4aebc0
LL
204742011-05-26 Leo Liu <sdl.web@gmail.com>
20475
20476 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
20477
e61124cd
YM
204782011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20479
20480 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
20481
20482 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
20483 for fringe update if it has periodic bitmap.
ac389d0c 20484 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
e61124cd
YM
20485 and fringe_bitmap_periodic_p.
20486
20487 * fringe.c (get_fringe_bitmap_data): New function.
20488 (draw_fringe_bitmap_1, update_window_fringes): Use it.
20489 (update_window_fringes): Record periodicity of fringe bitmap in glyph
20490 row. Mark glyph row for fringe update if periodicity changed.
20491
20492 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
20493 for fringe update unless it has periodic bitmap.
20494
f16d9837
KH
204952011-05-25 Kenichi Handa <handa@m17n.org>
20496
20497 * xdisp.c (get_next_display_element): Set correct it->face_id for
20498 a static composition.
20499
e1b90ef6
LL
205002011-05-24 Leo Liu <sdl.web@gmail.com>
20501
20502 * deps.mk (fns.o):
20503 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
20504
20505 * fns.c (crypto_hash_function, Fsha1): New function.
20506 (Fmd5): Use crypto_hash_function.
20507 (syms_of_fns): Add Ssha1.
20508
7400048f
PE
205092011-05-22 Paul Eggert <eggert@cs.ucla.edu>
20510
20511 * gnutls.c: Remove unused macros.
20512 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
20513 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
20514 Remove macros that are defined and never used.
20515 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
20516
abb71cf4
CY
205172011-05-22 Chong Yidong <cyd@stupidchicken.com>
20518
20519 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
20520 (Fx_get_selection_internal): Minor cleanup.
20521 (Fx_own_selection_internal): Rename arguments for consistency with
20522 select.el.
20523
6307db39
PE
205242011-05-22 Paul Eggert <eggert@cs.ucla.edu>
20525
20526 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
20527
f3d4e0a4
CY
205282011-05-22 Chong Yidong <cyd@stupidchicken.com>
20529
20530 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
20531
4d8ade89
YM
205322011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20533
20534 * dispnew.c (scrolling_window): Don't exclude the case that the
20535 last enabled row in the desired matrix touches the bottom boundary.
20536
32078c8d
GM
205372011-05-21 Glenn Morris <rgm@gnu.org>
20538
20539 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
33cf345f
GM
20540 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
20541 and add some more files.
32078c8d 20542
7285dc67
EZ
205432011-05-20 Eli Zaretskii <eliz@gnu.org>
20544
20545 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
20546 report_file_error introduced by the change from 2011-05-07.
20547
89d1bd22
PE
205482011-05-20 Paul Eggert <eggert@cs.ucla.edu>
20549
20550 * systime.h (Time): Define only if emacs is defined.
20551 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
20552 where the include path doesn't have X11/X.h by default. See
20553 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
20554
cd394be1 205552011-05-20 Kenichi Handa <handa@m17n.org>
31bfc35c
KH
20556
20557 * composite.c (find_automatic_composition): Fix previous change.
20558
b9704ad9
GM
205592011-05-20 Glenn Morris <rgm@gnu.org>
20560
20561 * lisp.mk: New file, split from Makefile.in.
20562 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
20563 (shortlisp): Remove.
20564 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
20565
4a720484
GM
205662011-05-19 Glenn Morris <rgm@gnu.org>
20567
20568 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
20569 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
20570 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
20571 (lisp): Set the order to that of loadup.el.
20572 (shortlisp): Make it a copy of $lisp.
20573 (SOME_MACHINE_LISP): Remove.
20574 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
20575 Use just $shortlisp, not $SOME_MACHINE_LISP too.
20576
a28d4396
KH
205772011-05-18 Kenichi Handa <handa@m17n.org>
20578
20579 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
20580 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
20581 (find_automatic_composition): Mostly rewrite for efficiency.
20582
a2b1fa8e
JB
205832011-05-18 Juanma Barranquero <lekktu@gmail.com>
20584
20585 * makefile.w32-in: Update dependencies.
20586
8e1f5610
CS
205872011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
20588
20589 * menu.c: Include limits.h (fixes the MS-Windows build broken by
7d7d0045 20590 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
8e1f5610 20591
7025ee00 205922011-05-18 Paul Eggert <eggert@cs.ucla.edu>
cb93f9be 20593
cdfa6eab
PE
20594 Fix some integer overflow issues, such as string length overflow.
20595
06d6db33
PE
20596 * insdel.c (count_size_as_multibyte): Check for string overflow.
20597
2b4560a8
PE
20598 * character.c (lisp_string_width): Check for string overflow.
20599 Use EMACS_INT, not int, for string indexes and lengths; in
20600 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
20601 the resulting string length overflows an EMACS_INT; instead,
20602 report a string overflow if no precision given. When checking for
20603 precision exhaustion, use a check that cannot possibly have
20604 integer overflow. (Bug#8675)
20605 * character.h (lisp_string_width): Adjust to new signature.
20606
cb93f9be
PE
20607 * alloc.c (string_overflow): New function.
20608 (Fmake_string): Use it. This doesn't change behavior, but saves
20609 a few bytes and will simplify future changes.
20610 * character.c (string_escape_byte8): Likewise.
20611 * lisp.h (string_overflow): New decl.
20612
1a1f3366
PE
20613 Fixups, following up to the user-interface timestamp change.
20614 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
20615 for UI timestamps, instead of unsigned long.
9fbd6841
PE
20616 * msdos.c (mouse_get_pos): Likewise.
20617 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
1a1f3366
PE
20618 * w32gui.h (Time): Define by including "systime.h" rather than by
20619 declaring it ourselves. (Bug#8664)
20620
d4e3e4d3
PE
20621 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
20622 * image.c (clear_image_cache): Likewise.
20623
f6a24d19
PE
20624 * term.c (term_mouse_position): Don't assume time_t wraparound.
20625
08dc5ae6
PE
20626 Be more systematic about user-interface timestamps.
20627 Before, the code sometimes used 'Time', sometimes 'unsigned long',
620c53a6
SM
20628 and sometimes 'EMACS_UINT', to represent these timestamps.
20629 This change causes it to use 'Time' uniformly, as that's what X uses.
08dc5ae6
PE
20630 This makes the code easier to follow, and makes it easier to catch
20631 integer overflow bugs such as Bug#8664.
20632 * frame.c (Fmouse_position, Fmouse_pixel_position):
20633 Use Time, not unsigned long, for user-interface timestamps.
20634 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
20635 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
20636 * keyboard.h (last_event_timestamp): Likewise.
20637 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
20638 * menu.h (xmenu_show): Likewise.
20639 * term.c (term_mouse_position): Likewise.
20640 * termhooks.h (struct input_event.timestamp): Likewise.
20641 (struct terminal.mouse_position_hook): Likewise.
20642 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
20643 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
20644 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
20645 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
20646 what it was before.
20647 * menu.h, termhooks.h: Include "systime.h", for Time.
20648
8e55734a
PE
20649 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
20650 Don't assume that the difference between two unsigned long values
20651 can fit into an integer. At this point, we know button_down_time
20652 <= event->timestamp, so the difference must be nonnegative, so
20653 there's no need to cast the result if double-click-time is
20654 nonnegative, as it should be; check that it's nonnegative, just in
20655 case. This bug is triggered when events are more than 2**31 ms
86db42d2 20656 apart (about 25 days). (Bug#8664)
8e55734a 20657
841f1b75 20658 * xselect.c (last_event_timestamp): Remove duplicate decl.
6434756c 20659 (x_own_selection): Remove needless cast to unsigned long.
841f1b75 20660
3e26f69c
PE
20661 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
20662 that always fit in int. Use a sentinel instead of a counter, to
20663 avoid a temp and to allay GCC's concerns about possible int overflow.
d230cb74
PE
20664 * frame.h (struct frame): Use int for menu_bar_items_used
20665 instead of EMACS_INT, since it always fits in int.
3e26f69c 20666
5cc152c0
PE
20667 * menu.c (grow_menu_items): Check for int overflow.
20668
d89eb65e
PE
20669 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
20670
5235bd3e
PE
20671 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
20672 Before, the code was not consistent. These values cannot exceed
20673 2**31 - 1 so there's no need to make them unsigned.
20674 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
20675 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
20676 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
20677 as modifiers.
20678 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
20679
bc827e23
PE
20680 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
20681 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
20682 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
20683 presumably because the widths might not match.
20684
78eb494e
PE
20685 * window.c (size_window): Avoid needless test at loop start.
20686
04f2d78b
CB
206872011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
20688
20689 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
20690
d2fc7e3d 206912011-05-12 Drew Adams <drew.adams@oracle.com>
e531bdff
DA
20692
20693 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
20694
d2fc7e3d 206952011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7db47798
YM
20696
20697 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
20698 `width' to `bar_area_x' and `bar_area_width', respectively.
20699 (x_scroll_run): Take account of fringe background extension.
20700
04f2d78b
CB
20701 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
20702 Rename local vars `left' and `width' to `bar_area_x' and
7db47798
YM
20703 `bar_area_width', respectively.
20704 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
20705 background extension.
20706
79b70037
GM
207072011-05-10 Jim Meyering <meyering@redhat.com>
20708
20709 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
20710
2f142cc5
JB
207112011-05-10 Juanma Barranquero <lekktu@gmail.com>
20712
20713 * image.c (Finit_image_library): Return t for built-in image types,
20714 like pbm and xbm. (Bug#8640)
20715
57679c86
AS
207162011-05-09 Andreas Schwab <schwab@linux-m68k.org>
20717
20718 * w32menu.c (set_frame_menubar): Fix submenu allocation.
20719
888c9e86
EZ
207202011-05-07 Eli Zaretskii <eliz@gnu.org>
20721
b0512a1d
EZ
20722 * w32console.c (Fset_screen_color): Doc fix.
20723 (Fget_screen_color): New function.
20724 (syms_of_ntterm): Defsubr it.
20725
7285dc67
EZ
20726 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
20727 unlink the temporary file if Fcall_process didn't create it in the
20728 first place.
20729 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
20730 child process will be redirected to a file specified with `:file'.
888c9e86
EZ
20731 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
20732 cue to call_process_cleanup not to close that handle.
20733
4d3fcc8e
BK
207342011-05-07 Ben Key <bkey76@gmail.com>
20735
20736 * makefile.w32-in: The bootstrap-temacs rule now makes use of
20737 one of two shell specific rules, either bootstrap-temacs-CMD or
20738 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
20739 to the previous implementation of the bootstrap-temacs rule.
20740 The bootstrap-temacs-CMD rule is similar to the previous
20741 implementation of the bootstrap-temacs rule except that it
20742 makes use of the ESC_CFLAGS variable instead of the CFLAGS
20743 variable.
20744
20745 These changes, along with some changes to nt/configure.bat,
20746 nt/gmake.defs, and nt/nmake.defs, are required to extend my
20747 earlier fix to add support for --cflags and --ldflags options
20748 that include quotes so that it works whether make uses cmd or
20749 sh as the shell.
20750
b4289b64
MA
207512011-05-06 Michael Albinus <michael.albinus@gmx.de>
20752
20753 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
20754 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
20755 is a constant.
20756 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
20757 a string. Handle both cases.
20758 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
20759 (Fdbus_register_method): Use Qinvalid_function.
20760
af4c0e28
JB
207612011-05-06 Juanma Barranquero <lekktu@gmail.com>
20762
20763 * makefile.w32-in: Update dependencies.
20764 (LISP_H): Add inttypes.h and stdin.h.
20765 (PROCESS_H): Add unistd.h.
20766
c51453d9
EZ
207672011-05-06 Eli Zaretskii <eliz@gnu.org>
20768
20769 * lread.c: Include limits.h (fixes the MS-Windows build broken by
20770 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
20771
8ff0ac3c 207722011-05-06 Paul Eggert <eggert@cs.ucla.edu>
c032b5f8 20773
4c4b566b
PE
20774 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
20775
aab2b9b5
PE
20776 * term.c (vfatal): Remove stray call to va_end.
20777 It's not needed and the C Standard doesn't allow it here anyway.
20778
c378da0b
PE
20779 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
20780 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
20781
288b08c7
PE
20782 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
20783 bytes.
20784
e3601888
PE
20785 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
20786
db6c0e74
PE
20787 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
20788
dd5963ea
PE
20789 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
20790
88c9450f
PE
20791 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
20792
2f9442b8
PE
20793 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
20794
c032b5f8
PE
20795 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
20796 * charset.c (Fdefine_charset_internal): Don't initialize
20797 charset.code_space[15]. The value was garbage, on hosts with
2d38271b 20798 32-bit int (Bug#8600).
a108c10b
PE
20799
20800 * lread.c (read_integer): Be more consistent with string-to-number.
20801 Use string_to_number to do the actual conversion; this avoids
20802 rounding errors and fixes some other screwups. Without this fix,
20803 for example, #x1fffffffffffffff was misread as -2305843009213693952.
20804 (digit_to_number): Move earlier, for benefit of read_integer.
20805 Return -1 if the digit is out of range for the base, -2 if it is
48e400f0 20806 not a digit in any supported base. (Bug#8602)
a108c10b 20807
ad5f9eea
PE
20808 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
20809
aec1708a
PE
20810 * dispnew.c (scrolling_window): Return 1 if we scrolled,
20811 to match comment at start of function. This also removes a
20812 GCC warning about overflow in a 32+64-bit port.
20813
47be4ab5
PE
20814 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
20815
371cac43
PE
20816 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
20817 Reported by Stefan Monnier in
20818 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
04f2d78b
CB
20819 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20820 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
371cac43 20821
d01a7826
PE
20822 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
20823 (EMACS_UINTPTR): Likewise, with uintptr_t.
20824
7fd47d5c
PE
20825 * lisp.h: Prefer 64-bit EMACS_INT if available.
20826 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
20827 on 32-bit hosts that have 64-bit int, so that they can access
20828 large files.
122b0c86
PE
20829 However, temporarily disable this change unless the temporary
20830 symbol WIDE_EMACS_INT is defined.
7fd47d5c 20831
8727937b
PE
20832 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
20833
8ac068ac
PE
20834 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
20835 This removes an assumption that EMACS_INT and long are the same
20836 width as pointers. The assumption is true for Emacs porting targets
20837 now, but we want to make other targets possible.
20838 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
20839 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
20840 In the rest of the code, change types of integers that hold casted
20841 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
20842 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
20843 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
20844 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
20845 No need to cast type when ORing.
20846 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
20847 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
20848 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
20849 assume EMACS_INT is the same width as char *.
20850 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
20851 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
20852 Remove no-longer-needed casts.
20853 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
20854 (xg_tool_bar_help_callback, xg_make_tool_item):
20855 Use EMACS_INTPTR to hold an integer
20856 that will be cast to void *; this can avoid a GCC warning
20857 if EMACS_INT is not the same width as void *.
20858 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
20859 * xdisp.c (display_echo_area_1, resize_mini_window_1):
20860 (current_message_1, set_message_1):
20861 Use a local to convert to proper width without a cast.
20862 * xmenu.c (dialog_selection_callback): Likewise.
20863
ede49d71
PE
20864 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
20865 Also, don't assume VALBITS / RAND_BITS is less than 5,
20866 and don't rely on undefined behavior when shifting a 1 left into
20867 the sign bit.
20868 * lisp.h (get_random): Change signature to match.
20869
2f30ecd0
PE
20870 * lread.c (hash_string): Use size_t, not int, for hash computation.
20871 Normally we prefer signed values; but hashing is special, because
20872 it's better to use unsigned division on hash table sizes so that
20873 the remainder is nonnegative. Also, size_t is the natural width
20874 for hashing into memory. The previous code used 'int', which doesn't
20875 retain enough info to hash well into very large tables.
20876 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
20877
2a866e7b
PE
20878 * dbusbind.c: Don't possibly lose pointer info when converting.
20879 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20880 Use XPNTR rather than XHASH, so that the high-order bits of
20881 the pointer aren't lost when converting through void *.
20882
51639eac
PE
20883 * eval.c (Fautoload): Don't double-shift a pointer.
20884
92394119
PE
20885 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
20886
dbdb9a7c
JB
208872011-05-06 Juanma Barranquero <lekktu@gmail.com>
20888
20889 * gnutls.c (DEF_GNUTLS_FN):
20890 * image.c (DEF_IMGLIB_FN): Make function pointers static.
20891
db7a0b4f
AS
208922011-05-05 Andreas Schwab <schwab@linux-m68k.org>
20893
20894 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
20895 marker. (Bug#8610)
20896
cd394be1 208972011-05-05 Eli Zaretskii <eliz@gnu.org>
fab624aa
EZ
20898
20899 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
20900 New version that can reserve upto 2GB of heap space.
20901
f7ff1b0f 209022011-05-05 Chong Yidong <cyd@stupidchicken.com>
45cb8994
CY
20903
20904 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
20905
639c109b
TZ
209062011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
20907
20908 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
20909 `gnutls_certificate_set_x509_key_file'.
20910
d2127135
JB
209112011-05-05 Juanma Barranquero <lekktu@gmail.com>
20912
20913 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
20914 Update dependencies.
20915
e968f4f3
JB
209162011-05-04 Juanma Barranquero <lekktu@gmail.com>
20917
20918 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
20919 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
20920 Remove unused parameter `fildes'.
20921 * process.c (read_process_output, send_process): Don't pass it.
20922
84d358f0
JB
209232011-05-04 Juanma Barranquero <lekktu@gmail.com>
20924
20925 Fix previous change: the library cache is defined in w32.c.
20926 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
20927 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
20928
0898ca10
JB
209292011-05-04 Juanma Barranquero <lekktu@gmail.com>
20930
20931 Implement dynamic loading of GnuTLS on Windows.
20932
20933 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
20934 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
20935 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20936 Declare.
20937
20938 * gnutls.c (Qgnutls_dll): Define.
20939 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
20940 (gnutls_*): Declare function pointers.
20941 (init_gnutls_functions): New function to initialize function pointers.
20942 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
20943 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
20944 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20945 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
20946 (emacs_gnutls_write, emacs_gnutls_read)
20947 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
20948 (Fgnutls_available_p): New function.
20949 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
20950 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
20951 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
20952
20953 * image.c: Include w32.h.
20954 (Vimage_type_cache): Delete.
20955 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
20956 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
20957 (w32_delayed_load): Move to w32.c.
20958
20959 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
20960
20961 * w32.c (QCloaded_from, Vlibrary_cache): Define.
20962 (w32_delayed_load): Move from image.c. When loading a library, record
20963 its filename in the :loaded-from property of the library id.
20964 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
20965 Initialize and staticpro them.
20966 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
20967
20968 * process.c: Include lisp.h before w32.h, not after.
20969 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
20970 instead of gnutls_record_check_pending.
20971
20972 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
20973
ff4de4aa
TZ
209742011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
20975
20976 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
20977 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
20978 as passed in.
20979
abe95abb
JD
209802011-05-03 Jan Djärv <jan.h.d@swipnet.se>
20981
20982 * xterm.c (x_set_frame_alpha): Do not set property on anything
20983 else than FRAME_X_OUTER_WINDOW (Bug#8608).
20984
e16e55d4
JB
209852011-05-02 Juanma Barranquero <lekktu@gmail.com>
20986
20987 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
20988
bafcf6a5
JB
209892011-05-02 Juanma Barranquero <lekktu@gmail.com>
20990
20991 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
20992 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
20993 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
20994 (gnutls_global_initialized, Qgnutls_bootprop_priority)
20995 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
20996 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
20997 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
20998 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
20999 (Qgnutls_bootprop_callbacks_verify): Make static.
21000
e7a6747f
AS
210012011-05-01 Andreas Schwab <schwab@linux-m68k.org>
21002
19ed11ba
AS
21003 * callproc.c: Indentation fixup.
21004
e7a6747f 21005 * sysdep.c (wait_for_termination_1): Make static.
04f2d78b
CB
21006 (wait_for_termination, interruptible_wait_for_termination):
21007 Move after wait_for_termination_1.
e7a6747f 21008
1ef14cb4
LMI
210092011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
21010
21011 * sysdep.c (interruptible_wait_for_termination): New function
21012 which is like wait_for_termination, but allows keyboard
21013 interruptions.
21014
21015 * callproc.c (Fcall_process): Add (:file "file") as an option for
21016 the STDOUT buffer.
21017 (Fcall_process_region): Ditto.
21018
330d880c
EZ
210192011-04-30 Eli Zaretskii <eliz@gnu.org>
21020
8db90b73
EZ
21021 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
21022 rather than `XVECTOR (FOO)->size'.
21023
330d880c
EZ
21024 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
21025 inttypes.h, as a gnulib replacement is used if it not available in
21026 system headers.
21027
15cbd324
EZ
210282011-04-21 Eli Zaretskii <eliz@gnu.org>
21029
21030 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
21031 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
21032 of MOST_POSITIVE_FIXNUM. (Bug#8528)
21033
21034 * coding.c (coding_alloc_by_realloc): Error out if destination
21035 will grow beyond MOST_POSITIVE_FIXNUM.
21036 (decode_coding_emacs_mule): Abort if there isn't enough place in
21037 charbuf for the composition carryover bytes. Reserve an extra
21038 space for up to 2 characters produced in a loop.
21039 (decode_coding_iso_2022): Abort if there isn't enough place in
21040 charbuf for the composition carryover bytes.
21041
210422011-04-21 Eli Zaretskii <eliz@gnu.org>
afda1437 21043
ae940cca
EZ
21044 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
21045 aborting when %lld or %lll format is passed.
21046 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
21047 %llo or %llx format is passed. (Bug#8545)
21048
03ab8921
EZ
21049 * window.c (window_scroll_line_based): Use a marker instead of
21050 simple variables to record original value of point. (Bug#7952)
21051
afda1437
EZ
21052 * doprnt.c (doprnt): Fix the case where a multibyte sequence
21053 produced by %s or %c overflows available buffer space. (Bug#8545)
21054
f76dee0c
PE
210552011-04-28 Paul Eggert <eggert@cs.ucla.edu>
21056
21057 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
283cdbef 21058 (SIZE_MAX): Move defn after all includes, as they might #define it.
f76dee0c 21059
fdc5744d
JB
210602011-04-28 Juanma Barranquero <lekktu@gmail.com>
21061
21062 * w32.c (init_environment): Warn about defaulting HOME to C:\.
21063
638f053a
JB
210642011-04-28 Juanma Barranquero <lekktu@gmail.com>
21065
21066 * keyboard.c (Qdelayed_warnings_hook): Define.
21067 (command_loop_1): Run `delayed-warnings-hook'
21068 if Vdelayed_warnings_list is non-nil.
21069 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
21070 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
21071
d178f871
EZ
210722011-04-28 Eli Zaretskii <eliz@gnu.org>
21073
21074 * doprnt.c (doprnt): Don't return value smaller than the buffer
21075 size if the message was truncated. (Bug#8545).
21076
b124fd93
JB
210772011-04-28 Juanma Barranquero <lekktu@gmail.com>
21078
21079 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
21080 (Fx_window_property): #if-0 the whole functions, not just the bodies.
21081
e810457d
PE
210822011-04-27 Paul Eggert <eggert@cs.ucla.edu>
21083
21084 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
21085
ea51cceb
JB
210862011-04-27 Juanma Barranquero <lekktu@gmail.com>
21087
21088 * makefile.w32-in: Update dependencies.
21089
94dcfacf
EZ
210902011-04-27 Eli Zaretskii <eliz@gnu.org>
21091
21092 Improve `doprnt' and its usage. (Bug#8545)
21093 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
21094 `format_end'. Remove support for %l as a conversion specifier.
21095 Don't use xrealloc. Improve diagnostics when the %l size modifier
21096 is used. Update the commentary.
21097
21098 * eval.c (verror): Simplify calculation of size_t.
21099
21100 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
21101 messages.
21102
f61f41d7
PE
211032011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
21104
21105 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
21106 change.
21107
96fb4434
PE
211082011-04-27 Paul Eggert <eggert@cs.ucla.edu>
21109
21110 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
21111 This makes this file independent of the recent pseudovector change.
21112
671875da 211132011-04-26 Paul Eggert <eggert@cs.ucla.edu>
eab3844f 21114
69e9b5a3
PE
21115 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
21116
b5f869a7 21117 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
7754e151 21118 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
8d4c3955 21119 Remove unused local.
c8926152 21120 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
080e5a8d 21121
841a1577 21122 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
04f2d78b
CB
21123 GCC 4.6.0 optimizes based on type-based alias analysis.
21124 For example, if b is of type struct buffer * and v of type struct
eab3844f
PE
21125 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
21126 != &v->size, and therefore "v->size = 1; b->size = 2; return
21127 v->size;" must therefore return 1. This assumption is incorrect
21128 for Emacs, since it type-puns struct Lisp_Vector * with many other
21129 types. To fix this problem, this patch adds a new type struct
f904488f 21130 vectorlike_header that documents the constraints on layout of vectors
eab3844f
PE
21131 and pseudovectors, and helps optimizing compilers not get fooled
21132 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
21133 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
f904488f
PE
21134 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
21135 the size member.
eab3844f
PE
21136 (XSETPVECTYPE): Rewrite in terms of new macro.
21137 (XSETPVECTYPESIZE): New macro, specifying both type and size.
21138 This is a bit clearer, and further avoids the possibility of
21139 undesirable aliasing.
21140 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
f904488f 21141 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
eab3844f
PE
21142 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
21143 since Lisp_Subr is a special case (no "next" field).
04f2d78b
CB
21144 (ASIZE): Now uses header.size rather than size.
21145 All previous uses of XVECTOR (foo)->size replaced to use this macro,
f904488f
PE
21146 to avoid the hassle of writing XVECTOR (foo)->header.size.
21147 (struct vectorlike_header): New type.
eab3844f
PE
21148 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
21149 object, to help avoid aliasing.
21150 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
21151 (SUBRP): Likewise, since Lisp_Subr is a special case.
21152 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
21153 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
21154 (struct Lisp_Hash_Table): Combine first two members into a single
f904488f 21155 struct vectorlike_header member. All uses of "size" and "next" members
eab3844f
PE
21156 changed to be "header.size" and "header.next".
21157 * buffer.h (struct buffer): Likewise.
21158 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
21159 * frame.h (struct frame): Likewise.
21160 * process.h (struct Lisp_Process): Likewise.
21161 * termhooks.h (struct terminal): Likewise.
21162 * window.c (struct save_window_data, struct saved_window): Likewise.
21163 * window.h (struct window): Likewise.
21164 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
21165 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
21166 * buffer.c (init_buffer_once): Likewise.
21167 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
21168 special case.
21169 * process.c (Fformat_network_address): Use local var for size,
21170 for brevity.
21171
0df1eac5
PE
21172 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
21173
847ab9d1 21174 Make the Lisp reader and string-to-float more consistent (Bug#8525)
452f4150
PE
21175 * data.c (atof): Remove decl; no longer used or needed.
21176 (digit_to_number): Move to lread.c.
21177 (Fstring_to_number): Use new string_to_number function, to be
21178 consistent with how the Lisp reader treats infinities and NaNs.
21179 Do not assume that floating-point numbers represent EMACS_INT
21180 without losing information; this is not true on most 64-bit hosts.
21181 Avoid double-rounding errors, by insisting on integers when
21182 parsing non-base-10 numbers, as the documentation specifies.
21183 * lisp.h (string_to_number): New decl, replacing ...
21184 (isfloat_string): Remove.
bc0a5c13 21185 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
d78050d6 21186 (read1): Do not accept +. and -. as integers; this
452f4150
PE
21187 appears to have been a coding error. Similarly, do not accept
21188 strings like +-1e0 as floating point numbers. Do not report
21189 overflow for integer overflows unless the base is not 10 which
21190 means we have no simple and reliable way to continue.
21191 Break out the floating-point parsing into a new
21192 function string_to_number, so that Fstring_to_number parses
21193 floating point numbers consistently with the Lisp reader.
04f2d78b 21194 (digit_to_number): Move here from data.c. Make it static inline.
452f4150
PE
21195 (E_CHAR, EXP_INT): Remove, replacing with ...
21196 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
21197 (string_to_number): New function, replacing isfloat_string.
21198 This function checks for valid syntax and produces the resulting
21199 Lisp float number too. Rework it so that string-to-number
bc0a5c13 21200 no longer mishandles examples like "1.0e+". Use strtoumax,
d78050d6
PE
21201 so that overflow for non-base-10 numbers is reported only when
21202 there's no portable and simple way to convert to floating point.
452f4150 21203
67769ffc
PE
21204 * textprop.c (set_text_properties_1): Rewrite for clarity,
21205 and to avoid GCC warning about integer overflow.
21206
c20db43f
PE
21207 * intervals.h (struct interval): Use EMACS_INT for members
21208 where EMACS_UINT might cause problems. See
21209 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
21210 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
21211 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
21212 All uses changed.
37aa2f85
PE
21213 (offset_intervals): Tell GCC not to worry about length overflow
21214 when negating a negative length.
c20db43f 21215
2538aa2f
PE
21216 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
21217 (overrun_check_free): Likewise.
21218
f2d3008d
PE
21219 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
21220 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
21221 word size.
21222
ec8df744
PE
21223 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
21224 (gnutls_make_error): Rename local to avoid shadowing.
21225 (gnutls_emacs_global_deinit): ifdef out; not used.
21226 (Fgnutls_boot): Use const for pointer to readonly storage.
21227 Comment out unused local. Fix pointer signedness problems.
21228
640ee02d
PE
21229 * lread.c (openp): Don't stuff size_t into an 'int'.
21230 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
21231 about possible signed overflow.
21232
6048fb2a
PE
21233 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
21234 (GDK_KEY_g): Don't define if already defined.
21235 (xg_prepare_tooltip): Avoid pointer signedness problem.
21236 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
21237
fa3c87e1
PE
21238 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
21239 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
21240
2172544b
PE
21241 * xfns.c (Fx_window_property): Simplify a bit,
21242 to make a bit faster and to avoid GCC 4.6.0 warning.
21243 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
21244
9b821a21
PE
21245 * fns.c (internal_equal): Don't assume size_t fits in int.
21246
3c616cfa
PE
21247 * alloc.c (compact_small_strings): Tighten assertion a little.
21248
c2982e87
PE
21249 Replace pEd with more-general pI, and fix some printf arg casts.
21250 * lisp.h (pI): New macro, generalizing old pEd macro to other
21251 conversion specifiers. For example, use "...%"pI"d..." rather
21252 than "...%"pEd"...".
21253 (pEd): Remove. All uses replaced with similar uses of pI.
61bdb816 21254 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
c2982e87
PE
21255 * alloc.c (check_pure_size): Don't overflow by converting size to int.
21256 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
21257 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
21258 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
21259 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
21260 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
21261 64-bit hosts.
21262 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
21263 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
21264 * print.c (safe_debug_print, print_object): Likewise.
21265 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
21266 to int.
6f04d126
PE
21267 Use pI instead of if-then-else-abort. Use %p to avoid casts,
21268 avoiding the 0 flag, which is not portable.
c2982e87
PE
21269 * process.c (Fmake_network_process): Use pI to avoid cast.
21270 * region-cache.c (pp_cache): Likewise.
21271 * xdisp.c (decode_mode_spec): Likewise.
21272 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
21273 behavior on 64-bit hosts with printf arg.
6f04d126 21274 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
c2982e87
PE
21275 (x_stop_queuing_selection_requests): Likewise.
21276 (x_get_window_property): Don't truncate byte count to an 'int'
21277 when tracing.
0b432f21 21278
5e073ec7
PE
21279 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
21280 here, since it parses constructs like leading '-' and spaces,
21281 which are not wanted; and it overflows with large numbers.
21282 Instead, simply match F[0-9]+, which is what is wanted anyway.
21283
36372bf9
PE
21284 * alloc.c: Remove unportable assumptions about struct layout.
21285 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
21286 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
21287 (allocate_vectorlike, make_pure_vector): Use the new macros,
21288 plus offsetof, to remove unportable assumptions about struct layout.
21289 These assumptions hold on all porting targets that I know of, but
21290 they are not guaranteed, they're easy to remove, and removing them
21291 makes further changes easier.
21292
0b432f21
PE
21293 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
21294 This doesn't fix a bug but makes the code clearer.
bfd1c781
PE
21295 (string_overrun_cookie): Now const. Use initializers that
21296 don't formally overflow signed char, to avoid warnings.
000098c1
PE
21297 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
21298 can cause Emacs to crash when string overrun checking is enabled.
c7bda33c
PE
21299 (allocate_buffer): Don't assume sizeof (struct buffer) is a
21300 multiple of sizeof (EMACS_INT); it need not be, if
21301 alignof(EMACS_INT) < sizeof (EMACS_INT).
d0f4e1f5 21302 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
0b432f21 21303
895009e1
JB
213042011-04-26 Juanma Barranquero <lekktu@gmail.com>
21305
21306 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
21307
6a7a1b0b
TZ
213082011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
21309
21310 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
b5f869a7 21311 supposed to be handshaking. (Bug#8556)
6a7a1b0b
TZ
21312 Reported by Paul Eggert <eggert@cs.ucla.edu>.
21313
841a1577 213142011-04-26 Daniel Colascione <dan.colascione@gmail.com>
0438ce91
DC
21315
21316 * lisp.h (Qdebug): List symbol.
895009e1 21317 * eval.c (Qdebug): Restore global linkage.
0438ce91
DC
21318 * keyboard.c (debug-on-event): New variable.
21319 (handle_user_signal): Break into debugger when debug-on-event
21320 matches the current signal symbol.
21321
f2d3ba6f
DN
213222011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
21323
21324 * alloc.c (check_sblock, check_string_bytes)
21325 (check_string_free_list): Convert to standard C.
21326
42ce4c63
TZ
213272011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
21328
21329 * w32.c (emacs_gnutls_push): Fix typo.
21330
825cd63c
EZ
213312011-04-25 Eli Zaretskii <eliz@gnu.org>
21332
fb11d64d
EZ
21333 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
21334 "cast to pointer from integer of different size".
21335
825cd63c
EZ
21336 Improve doprnt and its use in verror. (Bug#8545)
21337 * doprnt.c (doprnt): Document the set of format control sequences
21338 supported by the function. Use SAFE_ALLOCA instead of always
21339 using `alloca'.
21340
21341 * eval.c (verror): Don't limit the buffer size at size_max-1, that
21342 is one byte too soon. Don't use xrealloc; instead xfree and
21343 xmalloc anew.
21344
e061a11b
TZ
213452011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
21346
21347 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
21348 callbacks stage.
21349
21350 * gnutls.c: Renamed global_initialized to
21351 gnutls_global_initialized. Added internals for the
21352 :verify-hostname-error, :verify-error, and :verify-flags
21353 parameters of `gnutls-boot' and documented those parameters in the
21354 docstring. Start callback support.
9173deec
JB
21355 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
21356 unless a fatal error occurred. Call gnutls_alert_send_appropriate
21357 on error. Return error code.
e061a11b
TZ
21358 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
21359 (emacs_gnutls_read): Likewise.
21360 (Fgnutls_boot): Return handshake error code.
21361 (emacs_gnutls_handle_error): New function.
21362 (wsaerror_to_errno): Likewise.
21363
21364 * w32.h (emacs_gnutls_pull): Add prototype.
21365 (emacs_gnutls_push): Likewise.
21366
21367 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
21368 (emacs_gnutls_push): Likewise.
21369
213702011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
21371
21372 * process.c (wait_reading_process_output): Check if GnuTLS
21373 buffered some data internally if no FDs are set for TLS
21374 connections.
21375
21376 * makefile.w32-in (OBJ2): Add gnutls.$(O).
21377 (LIBS): Link to USER_LIBS.
21378 ($(BLD)/gnutls.$(0)): New target.
21379
fa6996bc
EZ
213802011-04-24 Eli Zaretskii <eliz@gnu.org>
21381
eb35682e
EZ
21382 * xdisp.c (handle_single_display_spec): Rename the
21383 display_replaced_before_p argument into display_replaced_p, to
21384 make it consistent with the commentary. Fix typos in the
21385 commentary.
21386
e2ad650c
EZ
21387 * textprop.c (syms_of_textprop): Remove dead code.
21388 (copy_text_properties): Delete obsolete commentary about an
21389 interface that was deleted long ago. Fix typos in the description
21390 of arguments.
21391
1b2de274
EZ
21392 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
21393 to changes in oldXMenu/XMenu.h from 2011-04-16.
21394 <menu_help_message, prev_menu_help_message>: Constify.
21395 (IT_menu_make_room): menu->help_text is now `const char **';
21396 adjust.
21397
21398 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
21399 to changes in oldXMenu/XMenu.h from 2011-04-16.
21400 (struct XMenu): Declare `help_text' `const char **'.
21401
21402 * xfaces.c <Qunspecified>: Make extern again.
21403
21404 * syntax.c: Include sys/types.h before including regex.h, as
75f1671a 21405 required by POSIX.
1b2de274 21406
762b15be
EZ
21407 * doc.c (get_doc_string): Improve the format passed to `error'.
21408
21409 * doprnt.c (doprnt): Improve commentary.
21410
21411 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
21412
21413 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
21414 them with etags.
21415
f1052e5d
EZ
21416 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
21417 changes in globals.h immediately force recompilation.
762b15be
EZ
21418 (TAGS): Depend on $(CURDIR)/m/intel386.h and
21419 $(CURDIR)/s/ms-w32.h.
21420 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
f1052e5d 21421
fa6996bc
EZ
21422 * character.c (Fchar_direction): Function deleted.
21423 (syms_of_character): Don't defsubr it.
21424 <char-direction-table>: Deleted.
21425
e6c3da20
EZ
214262011-04-23 Eli Zaretskii <eliz@gnu.org>
21427
21428 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
21429 * doprnt.c: Include limits.h.
21430 (SIZE_MAX): New macro.
04f2d78b
CB
21431 (doprnt): Return a size_t value. 2nd arg is now size_t.
21432 Many local variables are now size_t instead of int or unsigned.
e6c3da20
EZ
21433 Improve overflow protection. Support `l' modifier for integer
21434 conversions. Support %l conversion. Don't assume an EMACS_INT
21435 argument for integer conversions and for %c.
21436
21437 * lisp.h (doprnt): Restore prototype.
21438
21439 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
21440 $(SRC)/character.h.
21441
21442 * Makefile.in (base_obj): Add back doprnt.o.
21443
21444 * deps.mk (doprnt.o): Add back prerequisites.
21445 (callint.o): Depend on character.h.
21446
21447 * eval.c (internal_lisp_condition_case): Include the handler
21448 representation in the error message.
21449 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
21450 when breaking from the loop.
21451
21452 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
21453
21454 * callint.c (Fcall_interactively): When displaying error message
21455 about invalid control letter, pass the character's codepoint, not
21456 a pointer to its multibyte form. Improve display of the character
21457 in octal and display also its hex code.
21458
21459 * character.c (char_string): Use %x to display the (unsigned)
21460 codepoint of an invalid character, to avoid displaying a bogus
21461 negative value.
21462
21463 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
21464 `error', not SYMBOL_NAME itself.
21465
21466 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
21467 character arguments to `error'.
21468
21469 * charset.c (check_iso_charset_parameter): Fix incorrect argument
21470 to `error' in error message about FINAL_CHAR argument. Make sure
21471 FINAL_CHAR is a character, and use %c when it is passed as
21472 argument to `error'.
21473
4ffd0d6b 214742011-04-23 Eli Zaretskii <eliz@gnu.org>
97a93095
EZ
21475
21476 * s/ms-w32.h (localtime): Redirect to sys_localtime.
21477
21478 * w32.c: Include <time.h>.
21479 (sys_localtime): New function.
21480
4ffd0d6b 214812011-04-23 Chong Yidong <cyd@stupidchicken.com>
c17819f4
CY
21482
21483 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
21484
4ffd0d6b 21485 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
aac0c6e3 21486
4ffd0d6b 214872011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
aac0c6e3 21488
4ffd0d6b
GM
21489 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
21490 zombies (Bug#8467).
aac0c6e3 21491
04c56954
EZ
214922011-04-19 Eli Zaretskii <eliz@gnu.org>
21493
21494 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
21495 gl_state.e_property when gl_state.object is Qt.
21496
21497 * insdel.c (make_gap_larger): Remove limitation of buffer size
21498 to <= INT_MAX.
21499
16a43933
CY
215002011-04-18 Chong Yidong <cyd@stupidchicken.com>
21501
21502 * xdisp.c (lookup_glyphless_char_display)
21503 (produce_glyphless_glyph): Handle cons cell entry in
21504 glyphless-char-display.
21505 (Vglyphless_char_display): Document it.
21506
21507 * term.c (produce_glyphless_glyph): Handle cons cell entry in
21508 glyphless-char-display.
21509
4581706e
CY
215102011-04-17 Chong Yidong <cyd@stupidchicken.com>
21511
21512 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
21513
21514 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
21515
21516 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
21517 definition for no-X builds.
21518
4887c6e2 215192011-04-16 Paul Eggert <eggert@cs.ucla.edu>
764430a3 21520
fd35b6f9
PE
21521 Static checks with GCC 4.6.0 and non-default toolkits.
21522
5c1ccb01
PE
21523 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
21524
006c5daa
PE
21525 * process.c (keyboard_bit_set): Define only if SIGIO.
21526 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
21527 (send_process): Repair possible setjmp clobbering.
21528
efc736d3
PE
21529 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
21530
4e2fe2e6
PE
21531 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
21532
f97334a2
PE
21533 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
21534
4e75f29d
PE
21535 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
21536 Define only if needed.
21537
90efadd1
PE
21538 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
21539 by pacifying GCC about it. Maybe it's time to retire it?
875975e9 21540 * xfaces.c (USG, __TIMEVAL__): Likewise.
90efadd1 21541
3c647824
PE
21542 * dispextern.h (struct redisplay_interface): Rename param
21543 to avoid shadowing.
e264f262 21544 * termhooks.h (struct terminal): Likewise.
761383f4 21545 * xterm.c (xembed_send_message): Likewise.
3c647824 21546
b58c5c4a
PE
21547 * insdel.c (make_gap_smaller): Define only if
21548 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
21549
cad59032
PE
21550 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
21551 it.
21552
c339dc2e
PE
21553 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
21554 so that we aren't warned about unused symbols.
21555
91a3e27b
PE
21556 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
21557
399c71d3 21558 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
7a3fb125 21559
8ffc96f5
PE
21560 * xfns.c (x_real_positions): Mark locals as initialized.
21561
eef9bc79
PE
21562 * xmenu.c (xmenu_show): Don't use uninitialized vars.
21563
098db9dd
PE
21564 * xterm.c: Fix problems found by static analysis with other toolkits.
21565 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
dda3aedd
PE
21566 (x_dispatch_event): Declare static if USE_GTK, and
21567 define if USE_GTK || USE_X_TOOLKIT.
098db9dd 21568 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
dda3aedd 21569 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
841a1577
JB
21570 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
21571 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
098db9dd 21572
eb18f6cc
PE
21573 * xmenu.c (menu_help_callback): Pointer type fixes.
21574 Use const pointers when pointing at readonly data. Avoid pointer
21575 signedness clashes.
21576 (FALSE): Remove unused macro.
21577 (update_frame_menubar): Remove unused decl.
21578
1fe72bf8
PE
21579 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
21580
60d9e1db
PE
21581 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
21582 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
21583 (single_menu_item): Rename local to avoid shadowing.
21584
39261c26
PE
21585 * keyboard.c (make_lispy_event): Remove unused local var.
21586
018c5e19
PE
21587 * frame.c, frame.h (x_get_resource_string): Bring this back, but
21588 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
21589
63d2b86e
PE
21590 * bitmaps: Change bitmaps from unsigned char back to the X11
21591 compatible char. Avoid the old compiler warnings about
21592 out-of-range initializers by using, for example, '\xab' rather
21593 than 0xab.
21594
aefd87e1
PE
21595 * xgselect.c (xgselect_initialize): Check vs interface
21596 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
21597
bf501fb9
PE
21598 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
21599
e9829fdf
PE
21600 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
21601 to read-only memory.
21602
1086c095
PE
21603 * fns.c (vector): Remove; this old hack is no longer needed.
21604
2baccd04 21605 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
401f10cb 21606 Remove unused var.
dde42981 21607 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
2baccd04 21608
72391843 21609 * xrdb.c (x_load_resources): Omit unused local.
3565b346 21610
436c16df 21611 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
8a94ea33 21612 (x_window): Rename locals to avoid shadowing.
dc5ddd85 21613 (USG): Use the kludged USG macro, to pacify gcc.
436c16df 21614
92bb796d 21615 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
bbbef9e1 21616 (x_term_init): Remove local to avoid shadowing.
92bb796d 21617
764430a3 21618 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
4887c6e2
PE
21619
21620 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
21621 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
21622
d1dfb56c
EZ
216232011-04-16 Eli Zaretskii <eliz@gnu.org>
21624
c4354cb4
EZ
21625 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
21626
d1dfb56c
EZ
21627 Fix regex.c, syntax.c and friends for buffers > 2GB.
21628 * syntax.h (struct gl_state_s): Declare character position members
21629 EMACS_INT.
21630
21631 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
21632
04f2d78b
CB
21633 * textprop.c (verify_interval_modification, interval_of):
21634 Declare arguments EMACS_INT.
d1dfb56c
EZ
21635
21636 * intervals.c (adjust_intervals_for_insertion): Declare arguments
21637 EMACS_INT.
21638
21639 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
21640
21641 * indent.c (Fvertical_motion): Local variable it_start is now
21642 EMACS_INT.
21643
21644 * regex.c (re_match, re_match_2, re_match_2_internal)
21645 (bcmp_translate, regcomp, regexec, print_double_string)
21646 (group_in_compile_stack, re_search, re_search_2, regex_compile)
21647 (re_compile_pattern, re_exec): Declare arguments and local
21648 variables `size_t' and `ssize_t' and return values `regoff_t', as
21649 appropriate.
21650 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
21651 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
21652 <compile_stack_type>: `size' and `avail' are now `size_t'.
21653
21654 * regex.h <regoff_t>: Use ssize_t, not int.
21655 (re_search, re_search_2, re_match, re_match_2): Arguments that
21656 specify buffer/string position and length are now ssize_t and
21657 size_t. Return type is regoff_t.
21658
613052cd
BK
216592011-04-16 Ben Key <bkey76@gmail.com>
21660
21661 * nsfont.m: Fixed bugs in ns_get_family and
21662 ns_descriptor_to_entity that were caused by using free to
21663 deallocate memory blocks that were allocated by xmalloc (via
21664 xstrdup). This caused Emacs to crash when compiled with
21665 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
21666 --enable-checking=xmallocoverrun). xfree is now used to
21667 deallocate these memory blocks.
21668
4170f62f 216692011-04-15 Paul Eggert <eggert@cs.ucla.edu>
3e047f51 21670
71b41406
PE
21671 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
21672
9587a89d
PE
21673 emacs_write: Accept and return EMACS_INT for sizes.
21674 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
21675 et seq.
21676 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
21677 Accept and return EMACS_INT.
21678 (emacs_gnutls_write): Return the number of bytes written on
21679 partial writes.
21680 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
273a5f82
PE
21681 (emacs_read, emacs_write): Remove check for negative size, as the
21682 Emacs source code has been audited now.
9587a89d
PE
21683 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
21684 (emacs_read, emacs_write): Use it.
273a5f82
PE
21685 * process.c (send_process): Adjust to the new signatures of
21686 emacs_write and emacs_gnutls_write. Do not attempt to store
21687 a byte offset into an 'int'; it might overflow.
9587a89d 21688 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
273a5f82 21689
3e047f51
PE
21690 * sound.c: Don't assume sizes fit in 'int'.
21691 (struct sound_device.period_size, alsa_period_size):
9c3c56a7 21692 Return EMACS_INT, not int.
3e047f51 21693 (struct sound_device.write, vox_write, alsa_write):
9c3c56a7
PE
21694 Accept EMACS_INT, not int.
21695 (wav_play, au_play): Use EMACS_INT to store sizes and to
3e047f51
PE
21696 record read return values.
21697
cc39a9db
BK
216982011-04-15 Ben Key <bkey76@gmail.com>
21699
c9d0ec6d
JB
21700 * keyboard.c (Qundefined): Don't declare static since it is used
21701 in nsfns.m.
21702 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
21703 static since they are used in nsfont.m.
cc39a9db 21704
6c60eb9f
SM
217052011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
21706
21707 * process.c (Qprocessp): Don't declare static.
21708 * lisp.h (Qprocessp): Declare again.
21709
7990b61a
JB
217102011-04-15 Juanma Barranquero <lekktu@gmail.com>
21711
21712 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
21713
5d4cb038
PE
217142011-04-14 Paul Eggert <eggert@cs.ucla.edu>
21715
8bd7b830 21716 Improve C-level modularity by making more things 'static'.
cd64ea1d 21717
e3b27b31
PE
21718 Don't publish debugger-only interfaces to other modules.
21719 * lisp.h (safe_debug_print, debug_output_compilation_hack):
21720 (verify_bytepos, count_markers): Move decls to the only modules
21721 that need them.
21722 * region-cache.h (pp_cache): Likewise.
21723 * window.h (check_all_windows): Likewise.
21724 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
21725
5d4cb038
PE
21726 * sysdep.c (croak): Now static, if
21727 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
21728 * syssignal.h (croak): Declare only if not static.
69003fd8
PE
21729
21730 * alloc.c (refill_memory_reserve): Now static if
21731 !defined REL_ALLOC || defined SYSTEM_MALLOC.
21732 * lisp.h (refill_memory_reserve): Declare only if not static.
93ea6e8f 21733
e87b6180
PE
21734 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
21735 Define only if USE_LUCID.
21736
ac64929e
PE
21737 * xrdb.c (x_customization_string, x_rm_string): Now static.
21738
6f37259d
PE
21739 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
21740 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
21741
1683e3ab
PE
21742 * xdisp.c (draw_row_with_mouse_face): Now static.
21743 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
21744
de9c2632
PE
21745 * window.h (check_all_windows): Mark externally visible.
21746
2b96acb7
PE
21747 * window.c (window_deletion_count): Now static.
21748
21749 * undo.c: Make symbols static if they're not exported.
21750 (last_undo_buffer, last_boundary_position, pending_boundary):
21751 Now static.
21752
50436f33
PE
21753 * textprop.c (interval_insert_behind_hooks): Now static.
21754 (interval_insert_in_front_hooks): Likewise.
21755
64520e5c
PE
21756 * term.c: Make symbols static if they're not exported.
21757 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
21758 (max_frame_lines, tty_set_terminal_modes):
21759 (tty_reset_terminal_modes, tty_turn_off_highlight):
21760 (get_tty_terminal): Now static.
21761 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
21762 * termhooks.h (term_mouse_moveto): Do not declare if
8bd7b830 21763 HAVE_WINDOW_SYSTEM.
64520e5c
PE
21764 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
21765 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
21766
1fa53021
PE
21767 * sysdep.c: Make symbols static if they're not exported.
21768 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
21769 Now static.
21770 (sigprocmask_set, full_mask): Remove; unused.
21771 (wait_debugging): Mark as visible.
21772 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
21773 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
21774
d4b43b22
PE
21775 * syntax.c (syntax_temp): Define only if !__GNUC__.
21776
b7c513d0
PE
21777 * sound.c (current_sound_device, current_sound): Now static.
21778
989b29ad
PE
21779 * search.c (searchbufs, searchbuf_head): Now static.
21780
13a55a78
PE
21781 * scroll.c (scroll_cost): Remove; unused.
21782 * dispextern.h (scroll_cost): Remove decl.
21783
de68a1fc
PE
21784 * region-cache.h (pp_cache): Mark as externally visible.
21785
40ccffa6
PE
21786 * process.c: Make symbols static if they're not exported.
21787 (process_tick, update_tick, create_process, chan_process):
21788 (Vprocess_alist, proc_buffered_char, datagram_access):
21789 (fd_callback_data, send_process_frame, process_sent_to): Now static.
21790 (deactivate_process): Mark defn as static, as well as decl.
21791 * lisp.h (create_process): Remove decl.
21792 * process.h (chan_process, Vprocess_alist): Remove decls.
21793
ad64fc97
PE
21794 * print.c: Make symbols static if they're not exported.
21795 (print_depth, new_backquote_output, being_printed, print_buffer):
21796 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
21797 (print_interval, print_number_index, initial_stderr_stream):
21798 Now static.
21799 * lisp.h (Fprinc): Remove decl.
21800 (debug_output_compilation_hack): Mark as externally visible.
21801
adddb265
PE
21802 * sysdep.c (croak): Move decl from here to syssignal.h.
21803 * syssignal.h (croak): Put it here, so the API can be checked when
21804 'croak' is called from dissociate_if_controlling_tty.
21805
1717ede2
PE
21806 * minibuf.c: Make symbols static if they're not exported.
21807 (minibuf_save_list, choose_minibuf_frame): Now static.
21808 * lisp.h (choose_minibuf_frame): Remove decl.
21809
fa5fb2bc
PE
21810 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
21811
1e3890d1
PE
21812 * lread.c: Make symbols static if they're not exported.
21813 (read_objects, initial_obarray, oblookup_last_bucket_number):
21814 Now static.
21815 (make_symbol): Remove; unused.
21816 * lisp.h (initial_obarray, make_symbol): Remove decls.
21817
8a1414fa
PE
21818 * keyboard.c: Make symbols static if they're not exported.
21819 (single_kboard, recent_keys_index, total_keys, recent_keys):
21820 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
21821 (this_single_command_key_start, echoing, last_auto_save):
21822 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
21823 (command_loop, echo_now, keyboard_init_hook, help_char_p):
21824 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
21825 (Vlispy_mouse_stem, double_click_count):
21826 Now static.
21827 (force_auto_save_soon): Define only if SIGDANGER.
21828 (ignore_mouse_drag_p): Now static if
21829 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
21830 (print_help): Remove; unused.
21831 (stop_character, last_timer_event): Mark as externally visible.
21832 * keyboard.h (ignore_mouse_drag_p): Declare only if
21833 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
21834 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
21835 * lisp.h (echoing): Remove decl.
21836 (force_auto_save_soon): Declare only if SIGDANGER.
21837 * xdisp.c (redisplay_window): Simplify code, to make it more
21838 obvious that ignore_mouse_drag_p is not accessed if !defined
21839 USE_GTK && !defined HAVE_NS.
21840
93ea6e8f
PE
21841 * intervals.c: Make symbols static if they're not exported.
21842 (merge_properties_sticky, merge_interval_right, delete_interval):
21843 Now static.
21844 * intervals.h (merge_interval_right, delete_interval): Remove decls.
21845
77382fcc
PE
21846 * insdel.c: Make symbols static if they're not exported.
21847 However, leave prepare_to_modify_buffer alone. It's never
21848 called from outside this function, but that appears to be a bug.
21849 (combine_after_change_list, combine_after_change_buffer):
4889fc82 21850 (adjust_after_replace, signal_before_change): Now static.
77382fcc
PE
21851 (adjust_after_replace_noundo): Remove; unused.
21852 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
4889fc82 21853 (signal_before_change): Remove decls.
77382fcc 21854
9306c32e
PE
21855 * indent.c (val_compute_motion, val_vmotion): Now static.
21856
cd44d2eb
PE
21857 * image.c: Make symbols static if they're not exported.
21858 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
21859 if USE_GTK.
21860 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
21861 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
21862
ad9a7a06
PE
21863 * fringe.c (standard_bitmaps): Now static.
21864 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
21865
81626931
PE
21866 * frame.c: Make symbols static if they're not exported.
21867 (x_report_frame_params, make_terminal_frame): Now static.
21868 (get_frame_param): Now static, unless HAVE_NS.
21869 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
21870 (x_get_resource_string): Remove; not used.
21871 * frame.h (make_terminal_frame, x_report_frame_params):
21872 (x_get_resource_string); Remove decls.
21873 (x_fullscreen_adjust): Declare only if WINDOWSNT.
21874 * lisp.h (get_frame_param): Declare only if HAVE_NS.
21875
239f9db9
PE
21876 * font.c, fontset.c: Make symbols static if they're not exported.
21877 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
21878 (FACE_SUITABLE_FOR_CHAR_P): Use it.
21879 * font.c (font_close_object): Now static.
21880 * font.h (font_close_object): Remove.
21881 * fontset.c (FONTSET_OBJLIST): Remove.
21882 (free_realized_fontset) #if-0 the body, which does nothing.
21883 (face_suitable_for_char_p): #if-0, as it's never called.
21884 * fontset.h (face_suitable_for_char_p): Remove decl.
04f2d78b
CB
21885 * xfaces.c (face_at_string_position):
21886 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
239f9db9
PE
21887 since 0 is always ASCII.
21888
dfcf3579
PE
21889 * fns.c (weak_hash_tables): Now static.
21890
5045092b
PE
21891 * fileio.c: Make symbols static if they're not exported.
21892 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
21893 (Vwrite_region_annotation_buffers): Now static.
21894
57a96f5c
PE
21895 * eval.c: Make symbols static if they're not exported.
21896 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
21897 * lisp.h (backtrace_list): Remove decl.
21898
35f08c38
PE
21899 * emacs.c: Make symbols static if they're not exported.
21900 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
21901 (fatal_error_code, fatal_error_signal_hook, standard_args):
21902 Now static.
21903 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
21904 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
21905 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
21906 * lisp.h (fatal_error_signal_hook): Remove decl.
21907 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
21908
f44bd759
PE
21909 * editfns.c: Move a (normally-unused) function to its only use.
21910 * editfns.c, lisp.h (get_operating_system_release): Remove.
21911 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
21912 worth the hassle of breaking this out.
21913
b532497d
PE
21914 * xterm.c: Make symbols static if they're not exported.
21915 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
21916 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
21917 (x_destroy_window, x_delete_display):
21918 Now static.
21919 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
21920 (x_mouse_leave): Remove; unused.
21921 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
21922 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
21923 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
21924 Remove decls.
21925 (x_mouse_leave): Declare only if WINDOWSNT.
21926 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
21927 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
21928 USE_X_TOOLKIT.
21929
1675728f
PE
21930 * ftxfont.c: Make symbols static if they're not exported.
21931 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
21932 HAVE_FREETYPE.
21933 * font.h (ftxfont_driver): Likewise.
21934
e4cebfca
PE
21935 * xfns.c: Make symbols static if they're not exported.
21936 (x_last_font_name, x_display_info_for_name):
21937 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
21938 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
21939 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
21940 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
21941 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
21942 (last_show_tip_args): Now static.
21943 (xic_defaut_fontset, xic_create_fontsetname): Define only if
21944 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
21945 (x_screen_planes): Remove; unused.
21946 * dispextern.h (x_screen_planes): Remove decl.
21947
5bf46f05
PE
21948 * dispnew.c: Make symbols static if they're not exported.
21949 * dispextern.h (redraw_garbaged_frames, scrolling):
21950 (increment_row_positions): Remove.
21951 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
21952 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
21953 Now static.
21954 (redraw_garbaged_frames): Remove; unused.
21955
435f4c28
PE
21956 * xfaces.c: Make symbols static if they're not exported.
21957 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
21958 Remove decls.
21959 * xterm.h (defined_color): Remove decls.
21960 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
21961 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
21962 (menu_face_changed_default, defined_color, free_realized_face):
21963 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
21964 (ascii_face_of_lisp_face): Remove; unused.
21965
8524aef3
PE
21966 * xdisp.c: Make symbols static if they're not exported.
21967 * dispextern.h (scratch_glyph_row, window_box_edges):
21968 (glyph_to_pixel_coords, set_cursor_from_row):
21969 (get_next_display_element, set_iterator_to_next):
21970 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
21971 (show_mouse_face): Remove decls
21972 * frame.h (message_buf_print): Likewise.
21973 * lisp.h (pop_message, set_message, check_point_in_composition):
21974 Likewise.
21975 * xterm.h (set_vertical_scroll_bar): Likewise.
21976 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
21977 (message_buf_print, scratch_glyph_row, displayed_buffer):
21978 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
21979 (get_next_display_element, show_mouse_face, window_box_edges):
21980 (frame_to_window_pixel_xy, check_point_in_composition):
21981 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
21982 (glyph_to_pixel_coords): Remove; unused.
21983
16390cd2
PE
21984 * dired.c (file_name_completion): Now static.
21985
21986 * dbusbind.c (xd_in_read_queued_messages): Now static.
21987
a25f4dfa
PE
21988 * lisp.h (circular_list_error, FOREACH): Remove; unused.
21989 * data.c (circular_list_error): Remove.
21990
14a9c8df
PE
21991 * commands.h (last_point_position, last_point_position_buffer):
21992 (last_point_position_window): Remove decls.
21993 * keyboard.c: Make these variables static.
21994
04f2d78b
CB
21995 * coding.h (coding, code_convert_region, encode_coding_gap):
21996 Remove decls.
74ab6df5
PE
21997 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
21998 (iso_code_class, detect_coding, code_convert_region): Now static.
21999 (encode_coding_gap): Remove; unused.
22000
38dfbee1
PE
22001 * chartab.c (chartab_chars, chartab_bits): Now static.
22002
a2cb4e63
PE
22003 * charset.h (charset_iso_8859_1): Remove decl.
22004 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
22005 Now static.
22006
127198fd
PE
22007 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
22008 * ccl.c (Vccl_program_table): Now static.
22009 (check_ccl_update): Remove; unused.
22010
d85b608f
PE
22011 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
22012 * category.h: ... from here.
22013 * category.c (check_category_table, set_category_set): Now static.
22014
31cd66f3
PE
22015 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
22016 * lisp.h: Remove these decls.
22017
c358e587
PE
22018 * buffer.c (buffer_count): Remove unused var.
22019
e78aecca
PE
22020 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
22021 so that it's not optimized away.
22022 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
22023 * dispextern.h (bidi_dump_cached_states): Remove, since it's
22024 exported only to the debugger.
22025
e192d7d3 22026 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
04f2d78b 22027 * atimer.h (run_all_atimers): Remove; not exported.
e192d7d3 22028
92470028
PE
22029 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
22030 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
22031 was inaccessible from Lisp.
22032 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
22033 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
22034
244ed907
PE
22035 alloc.c: Import and export fewer symbols, and remove unused items.
22036 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
22037 is defined.
22038 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
22039 it's not optimized away by whole-program optimization.
22040 (message_enable_multibyte, free_misc): Remove.
22041 (catchlist, handlerlist, mark_backtrace):
22042 Declare only if BYTE_MARK_STACK.
22043 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
22044 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
22045 (message_enable_multibyte): Remove decl.
22046 (free_misc, interval_free_list, float_block, float_block_index):
22047 (n_float_blocks, float_free_list, cons_block, cons_block_index):
22048 (cons_free_list, last_marked_index):
22049 Now static.
22050 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
22051 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
22052 (mark_backtrace): Define only if BYTE_MARK_STACK.
22053 * xdisp.c (message_enable_multibyte): Now static.
22054
61c2b50e 22055 Declare Lisp_Object Q* variables to be 'static' if not exported.
955cbe7b
PE
22056 This makes it easier for human readers (and static analyzers)
22057 to see whether these variables are used from other modules.
22058 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
22059 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
22060 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
22061 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
22062 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
22063 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
22064 * xmenu.c, xselect.c:
22065 Declare Q* vars static if they are not used in other modules.
22066 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
22067 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
22068 Remove decls of unexported vars.
22069 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
22070
95c82688
PE
22071 * lisp.h (DEFINE_FUNC): Make sname 'static'.
22072
16a97296
PE
22073 Make Emacs functions such as Fatom 'static' by default.
22074 This makes it easier for human readers (and static analyzers)
22075 to see whether these functions can be called from other modules.
22076 DEFUN now defines a static function. To make the function external
22077 so that it can be used in other C modules, use the new macro DEFUE.
8bd7b830
PE
22078 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
22079 (Finit_image_library):
16a97296
PE
22080 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
22081 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
22082 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
22083 Remove decls, since these functions are now static.
22084 (Funintern, Fget_internal_run_time): New decls, since these functions
22085 were already external.
95c82688 22086
16a97296
PE
22087 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
22088 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
22089 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
22090 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
22091 * keyboard.c, keymap.c, lread.c:
22092 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
22093 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
22094 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
22095 Mark functions with DEFUE instead of DEFUN,
22096 if they are used in other modules.
22097 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
22098 decls for now-static functions.
22099 * buffer.h (Fdelete_overlay): Remove decl.
22100 * callproc.c (Fgetenv_internal): Mark as internal.
22101 * composite.c (Fremove_list_of_text_properties): Remove decl.
22102 (Fcomposition_get_gstring): New forward static decl.
22103 * composite.h (Fcomposite_get_gstring): Remove decl.
22104 * dired.c (Ffile_attributes): New forward static decl.
22105 * doc.c (Fdocumntation_property): New forward static decl.
22106 * eval.c (Ffetch_bytecode): New forward static decl.
22107 (Funintern): Remove extern decl; now in .h file where it belongs.
22108 * fileio.c (Fmake_symbolic_link): New forward static decl.
22109 * image.c (Finit_image_library): New forward static decl.
22110 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
22111 * intervals.h (Fprevious_property_change):
22112 (Fremove_list_of_text_properties): Remove decls.
22113 * keyboard.c (Fthis_command_keys): Remove decl.
22114 (Fcommand_execute): New forward static decl.
22115 * keymap.c (Flookup_key): New forward static decl.
22116 (Fcopy_keymap): Now static.
22117 * keymap.h (Flookup_key): Remove decl.
22118 * process.c (Fget_process): New forward static decl.
22119 (Fprocess_datagram_address): Mark as internal.
22120 * syntax.c (Fsyntax_table_p): New forward static decl.
22121 (skip_chars): Remove duplicate decl.
22122 * textprop.c (Fprevious_property_change): New forward static decl.
22123 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
22124 Now internal.
22125 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
22126 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
22127
785bbd42
PE
22128 * editfns.c (Fformat): Remove unreachable code.
22129
8b913b57
AS
221302011-04-14 Andreas Schwab <schwab@linux-m68k.org>
22131
22132 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
22133 change. (Bug#8496)
22134
a6744a35
EZ
221352011-04-13 Eli Zaretskii <eliz@gnu.org>
22136
22137 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
22138 when at ZV. (Bug#8487)
22139
e7974947
AS
221402011-04-12 Andreas Schwab <schwab@linux-m68k.org>
22141
baad03f0
AS
22142 * charset.c (Fclear_charset_maps): Use xfree instead of free.
22143 (Bug#8437)
22144 * keyboard.c (parse_tool_bar_item): Likewise.
22145 * sound.c (sound_cleanup, alsa_close): Likewise.
22146 * termcap.c (tgetent): Likewise.
22147 * xfns.c (x_default_font_parameter): Likewise.
22148 * xsettings.c (read_and_apply_settings): Likewise.
22149
e7974947
AS
22150 * alloc.c (overrun_check_malloc, overrun_check_realloc)
22151 (overrun_check_free): Protoize.
22152
28272684
PE
221532011-04-12 Paul Eggert <eggert@cs.ucla.edu>
22154
22155 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
22156 since callers should never pass a negative size.
22157 Change the signature to match that of plain 'read' and 'write'; see
22158 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
22159 * lisp.h: Update prototypes of emacs_write and emacs_read.
22160
11997c76
EZ
221612011-04-11 Eli Zaretskii <eliz@gnu.org>
22162
22163 * xdisp.c (redisplay_window): Don't try to determine the character
22164 position of the scroll margin if the window start point w->startp
e896f03c 22165 is outside the buffer's accessible region. (Bug#8468)
11997c76 22166
8a2cbd72
EZ
221672011-04-10 Eli Zaretskii <eliz@gnu.org>
22168
22169 Fix write-region and its subroutines for buffers > 2GB.
22170 * fileio.c (a_write, e_write): Modify declaration of arguments and
22171 local variables to support buffers larger than 2GB.
22172 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
22173
22174 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
22175 argument, local variables, and return value.
22176
22177 * lisp.h: Update prototypes of emacs_write and emacs_read.
22178
22179 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
22180
4073e537 221812011-04-10 Paul Eggert <eggert@cs.ucla.edu>
eb3f1cc8 22182
1ebfdcb6
PE
22183 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
22184
b2ded58d
PE
22185 Fix more problems found by GCC 4.6.0's static checks.
22186
7d66342c
PE
22187 * xdisp.c (vmessage): Use a better test for character truncation.
22188
bbf47d44
PE
22189 * charset.c (load_charset_map): <, not <=, for optimization,
22190 and to avoid potential problems with integer overflow.
9248994d 22191 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
f9a68bc5 22192 * casetab.c (set_identity, shuffle): Likewise.
3ab1c7ce 22193 * editfns.c (Fformat): Likewise.
1e69125e 22194 * syntax.c (skip_chars): Likewise.
3befa583 22195
e3019616
PE
22196 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
22197 This also lets GCC 4.6.0 generate slightly better loop code.
22198
becfa255
PE
22199 * callint.c (Fcall_interactively): <, not <=, for optimization.
22200 (Fcall_interactively): Count the number of arguments produced,
22201 not the number of arguments given. This is simpler and lets GCC
22202 4.6.0 generate slightly better code.
22203
dae0cd48
PE
22204 * ftfont.c: Distingish more carefully between FcChar8 and char.
22205 The previous code passed unsigned char * to a functions like
22206 strlen and xstrcasecmp that expect char *, which does not
22207 conform to the C standard.
22208 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
22209 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
22210 char * when the C standard requires it.
22211
76032d70
PE
22212 * keyboard.c (read_char): Remove unused var.
22213
eb3f1cc8
PE
22214 * eval.c: Port to Windows vsnprintf (Bug#8435).
22215 Include <limits.h>.
22216 (SIZE_MAX): Define if the headers do not.
22217 (verror): Do not give up if vsnprintf returns a negative count.
22218 Instead, grow the buffer. This ports to Windows vsnprintf, which
22219 does not conform to C99. Problem reported by Eli Zaretskii.
22220 Also, simplify the allocation scheme, by avoiding the need for
22221 calling realloc, and removing the ALLOCATED variable.
22222
70476b54
PE
22223 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
22224
12020a9e
PE
22225 Remove invocations of doprnt, as Emacs now uses vsnprintf.
22226 But keep the doprint source code for now, as we might revamp it
22227 and use it again (Bug#8435).
ea6c7ae6
PE
22228 * lisp.h (doprnt): Remove.
22229 * Makefile.in (base_obj): Remove doprnt.o.
22230 * deps.mk (doprnt.o): Remove.
22231
5fdb398c
PE
22232 error: Print 32- and 64-bit integers portably (Bug#8435).
22233 Without this change, on typical 64-bit hosts error ("...%d...", N)
22234 was used to print both 32- and 64-bit integers N, which relied on
22235 undefined behavior.
61bdb816 22236 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
5fdb398c
PE
22237 * lisp.h (error, verror): Mark as printf-like functions.
22238 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
22239 Report overflow in size calculations when allocating printf buffer.
22240 Do not truncate output string at its first null byte.
22241 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
22242 Truncate the output at a character boundary, since vsnprintf does not
22243 do that.
22244 * charset.c (check_iso_charset_parameter): Convert internal
22245 character to string before calling 'error', since %c now has the
22246 printf meaning.
22247 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
22248 overflow when computing char to be passed to 'error'. Do not
22249 pass Lisp_Object to 'error'; pass the integer instead.
22250 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
22251 formatted with plain %d.
22252
b189fa66
PE
22253 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
22254
bff87ef0
PE
22255 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
22256
7e2cac20
PE
22257 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
22258
ce4d90b5
PE
22259 * xterm.c (x_catch_errors): Remove duplicate declaration.
22260
266c9547
PE
22261 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
22262
79c49ad2
PE
22263 * xdisp.c, lisp.h (message_nolog): Remove; unused.
22264
368f4090
JM
222652011-04-10 Jim Meyering <meyering@redhat.com>
22266
22267 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
22268 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
22269 return ssize_t not "int", and use size_t as the buffer length.
22270 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
22271 * gnutls.h: Update declarations.
22272 * process.c (read_process_output): Use ssize_t, to match.
22273 (send_process): Likewise.
22274
a32d4040
CY
222752011-04-09 Chong Yidong <cyd@stupidchicken.com>
22276
22277 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
22278
8546720e 222792011-04-09 Chong Yidong <cyd@stupidchicken.com>
aac0c6e3 22280
04f2d78b
CB
22281 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
22282 Use unsigned char, to match FcChar8 type definition.
aac0c6e3 22283
8546720e
GM
22284 * xterm.c (handle_one_xevent):
22285 * xmenu.c (create_and_show_popup_menu):
22286 * xselect.c (x_decline_selection_request)
22287 (x_reply_selection_request): Avoid type-punned deref of X events.
aac0c6e3 22288
0a2f5c1a 222892011-04-09 Eli Zaretskii <eliz@gnu.org>
a53e2e89
EZ
22290
22291 Fix some uses of `int' instead of EMACS_INT.
22292 * search.c (string_match_1, fast_string_match)
22293 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
22294 (scan_buffer, find_next_newline_no_quit)
22295 (find_before_next_newline, search_command, Freplace_match)
22296 (Fmatch_data): Make some `int' variables be EMACS_INT.
22297
22298 * xdisp.c (display_count_lines): 3rd argument and return value now
22299 EMACS_INT. All callers changed.
22300 (pint2hrstr): Last argument is now EMACS_INT.
22301
22302 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
22303 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
22304 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
22305 (decode_coding_utf_16, decode_coding_emacs_mule)
22306 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22307 (decode_coding_ccl, decode_coding_charset)
22308 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
22309 (decode_coding_iso_2022, decode_coding_emacs_mule)
22310 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
22311 <char_offset, last_offset>: Declare EMACS_INT.
22312 (encode_coding_utf_8, encode_coding_utf_16)
22313 (encode_coding_emacs_mule, encode_invocation_designation)
22314 (encode_designation_at_bol, encode_coding_iso_2022)
22315 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
22316 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
22317 Declare EMACS_INT.
22318 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
22319 (encode_invocation_designation): Last argument P_NCHARS is now
22320 EMACS_INT.
22321 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
22322 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
22323
22324 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
22325 All users changed.
22326
22327 * ccl.c (Fccl_execute_on_string): Declare some variables
22328 EMACS_INT.
22329
8546720e 223302011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
0080dc6b
SS
22331
22332 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
22333
4e19a977
CS
223342011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
22335
22336 * process.c (Fformat_network_address): Doc fix.
22337
87302331
R
223382011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
22339
ee7683eb 22340 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
87302331 22341
cbb59342
CY
223422011-04-08 Chong Yidong <cyd@stupidchicken.com>
22343
22344 * keyboard.c (read_char): Call Lisp function help-form-show,
22345 instead of using internal_with_output_to_temp_buffer.
22346 (Qhelp_form_show): New var.
e0d38eeb 22347 (syms_of_keyboard): Use DEFSYM macro.
cbb59342
CY
22348
22349 * print.c (internal_with_output_to_temp_buffer): Function deleted.
22350
22351 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
22352
e67a13ab
CY
223532011-04-06 Chong Yidong <cyd@stupidchicken.com>
22354
04f2d78b
CB
22355 * process.c (Flist_processes): Remove to Lisp.
22356 (list_processes_1): Delete.
e67a13ab 22357
973f782d
EZ
223582011-04-06 Eli Zaretskii <eliz@gnu.org>
22359
7c106b1e
EZ
22360 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
22361
973f782d
EZ
22362 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
22363
41cf7d1a 223642011-04-06 Paul Eggert <eggert@cs.ucla.edu>
27ccc379 22365
ca23cc88
PE
22366 Fix more problems found by GCC 4.6.0's static checks.
22367
f390e2d5
PE
22368 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
22369
42eea0d0
PE
22370 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
22371
b69769da 22372 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
1e973bc7 22373
f9541e84
PE
22374 * xdisp.c (vmessage): Mark as a printf-like function.
22375
13841b55
PE
22376 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
22377
c136c10f
PE
22378 * sound.c (sound_warning): Don't crash if arg contains a printf format.
22379
5e2d4a30
PE
22380 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
22381 printf-like functions.
22382 (tiff_load): Add casts to remove these marks before passing them
22383 to system-supplied API.
22384
583f48b9
PE
22385 * eval.c (Fsignal): Remove excess argument to 'fatal'.
22386
b25d760e
PE
22387 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
22388 This avoids several warnings with gcc -Wstrict-overflow.
d5efd1d1
PE
22389 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
22390 directly, rather than having caller test rule sign. This avoids
22391 some unnecessary tests.
22392 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
22393 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
22394 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
b25d760e 22395
bc7b6697 22396 * xfont.c (xfont_text_extents): Remove var that was set but not used.
625a3eb1 22397 (xfont_open): Avoid unnecessary tests.
bc7b6697 22398
27ccc379
PE
22399 * composite.c (composition_gstring_put_cache): Use unsigned integer.
22400
dcd5c89a
PE
22401 * composite.h, composite.c (composition_gstring_put_cache):
22402 Use EMACS_INT, not int, for length.
22403
b13a45c6
PE
22404 * composite.h (COMPOSITION_DECODE_REFS): New macro,
22405 breaking out part of COMPOSITION_DECODE_RULE.
22406 (COMPOSITION_DECODE_RULE): Use it.
22407 * composite.c (get_composition_id): Remove unused local vars,
22408 by using the new macro.
22409
1e792e4d
PE
22410 * textprop.c (set_text_properties_1): Change while to do-while,
22411 since the condition is always true at first.
22412
dc6c6455 22413 * intervals.c (graft_intervals_into_buffer): Mark var as used.
aa86731f
PE
22414 (interval_deletion_adjustment): Return unsigned value.
22415 All uses changed.
dc6c6455 22416
aba7731a
PE
22417 * process.c (list_processes_1, create_pty, read_process_output):
22418 (exec_sentinel): Remove vars that were set but not used.
afd4052b 22419 (create_pty): Remove unnecessary "volatile"s.
bc57d757 22420 (Fnetwork_interface_info): Avoid possibility of int overflow.
82eaa333 22421 (read_process_output): Do adaptive read buffering even if carryover.
fe07cdfa 22422 (read_process_output): Simplify nbytes computation if buffered.
aba7731a 22423
fdfc4bf3
PE
22424 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
22425
fca8fe46 22426 * syntax.c (scan_words): Remove var that was set but not used.
12cbf13f 22427 (update_syntax_table): Use unsigned instead of int.
fca8fe46 22428
06a0259a 22429 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
3c346cc3 22430 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
e6eb4e9e 22431 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
06a0259a 22432
e7b9e80f
PE
22433 * print.c (print_error_message): Avoid int overflow.
22434
56201685
PE
22435 * font.c (font_list_entities): Redo for clarity,
22436 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
22437
78834453 22438 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
790771b1 22439 (font_score): Avoid potential overflow in diff calculation.
78834453 22440
0bc0b309 22441 * fns.c (substring_both): Remove var that is set but not used.
8cd55cb4 22442 (sxhash): Redo loop for clarity and to avoid wraparound warning.
0bc0b309 22443
e610eaca
PE
22444 * eval.c (funcall_lambda): Rename local to avoid shadowing.
22445
b895abce
PE
22446 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
22447 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
22448 can always succeed if overflow has undefined behavior.
22449
1f1d9321 22450 * search.c (boyer_moore, wordify): Remove vars set but not used.
6f076cc7 22451 (wordify): Omit three unnecessary tests.
1f1d9321 22452
c59478bc
PE
22453 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
22454 All callers changed. This avoids the need for an unused var.
22455
79b73827
PE
22456 * casefiddle.c (casify_region): Remove var that is set but not used.
22457
a4db5dfe
PE
22458 * dired.c (file_name_completion): Remove var that is set but not used.
22459
43aae36e
PE
22460 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
22461
2a47c44d 22462 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
163c5f32 22463 (Finsert_file_contents): Remove unnecessary code checking fd.
2a47c44d 22464
a37c69bf
PE
22465 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
22466 Check for integer overflow on size calculations.
22467
328ab8e7
PE
22468 * buffer.c (Fprevious_overlay_change): Remove var that is set
22469 but not used.
22470
e5a2a5cb
PE
22471 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
22472 Remove vars that are set but not used.
8d84a6eb 22473 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
6b043475 22474 (timer_check_2): Mark vars as initialized.
e5a2a5cb 22475
a60e5f68
PE
22476 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
22477
f661cb61 22478 * image.c (lookup_image): Remove var that is set but not used.
35fa624f 22479 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
f661cb61 22480
f0397f5a
PE
22481 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
22482 that are set but not used.
22483
8664db06 22484 * xfns.c (make_invisible_cursor): Don't return garbage
03733ee7 22485 if XCreateBitmapFromData fails (Bug#8410).
8664db06 22486
6abdaa4a
PE
22487 * xselect.c (x_get_local_selection, x_handle_property_notify):
22488 Remove vars that are set but not used.
22489
0ce7538d 22490 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
6abdaa4a 22491 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
0ce7538d 22492
9ae848fc
PE
22493 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
22494 Remove var that is set but not used.
0b918413
PE
22495 (scroll_bar_windows_size): Now size_t, not int.
22496 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
22497 Check for overflow.
9ae848fc 22498
a5a62657
PE
22499 * xfaces.c (realize_named_face): Remove vars that are set but not used.
22500 (map_tty_color) [!defined MSDOS]: Likewise.
22501
5c5cdd39
PE
22502 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
22503
66ebf983
PE
22504 * coding.c: Remove vars that are set but not used.
22505 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
22506 All callers changed.
22507 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
22508 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
22509 (decode_coding_charset): Remove vars that are set but not used.
22510
1be4d761
PE
22511 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
22512 that is set but not used.
22513
47553fa8
PE
22514 * print.c (print_object): Remove var that is set but not used.
22515
1f7196bf 22516 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
d1fdcab7
PE
22517 The gnulib version avoids calling malloc in the usual case,
22518 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
22519 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
22520 * filelock.c (current_lock_owner): Likewise.
22521 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
22522 * sysdep.c: Include allocator.h, careadlinkat.h.
22523 (emacs_no_realloc_allocator): New static constant.
22524 (emacs_readlink): New function.
fdb61804
PE
22525 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
22526 ../lib/careadlinkat.h.
d1fdcab7 22527
f84c17c7
SM
225282011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
22529
22530 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
22531 first non-nil return value).
22532
ef3862ad
JD
225332011-04-03 Jan Djärv <jan.h.d@swipnet.se>
22534
22535 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
22536 if not defined (Bug#8403).
22537
376a7006
JB
225382011-04-02 Juanma Barranquero <lekktu@gmail.com>
22539
22540 * xdisp.c (display_count_lines): Remove parameter `start',
22541 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
22542 (get_char_face_and_encoding): Remove parameter `multibyte_p',
22543 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
22544 (fill_stretch_glyph_string): Remove parameters `row' and `area',
22545 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
22546 and thereabouts. All callers changed.
22547 (get_per_char_metric): Remove parameter `f', unused since
22548 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
22549
6ca3801d
JM
225502011-04-02 Jim Meyering <meyering@redhat.com>
22551
22552 do not dereference NULL upon failed strdup
22553 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
22554 (ns_get_family): Likewise.
22555
d8e2b5ba
JB
225562011-04-02 Juanma Barranquero <lekktu@gmail.com>
22557
22558 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
22559
8c74fcbd
JD
225602011-04-02 Jan Djärv <jan.h.d@swipnet.se>
22561
22562 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
22563 later (Bug#8403).
22564
7200d79c
SM
225652011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22566
03408648 22567 Add lexical binding.
7200d79c 22568
03408648
SM
22569 * window.c (Ftemp_output_buffer_show): New fun.
22570 (Fsave_window_excursion):
22571 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
22572
22573 * lread.c (lisp_file_lexically_bound_p): New function.
22574 (Fload): Bind Qlexical_binding.
22575 (readevalloop): Remove `evalfun' arg.
22576 Bind Qinternal_interpreter_environment.
22577 (Feval_buffer): Bind Qlexical_binding.
22578 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
22579 Mark as dynamic.
22580 (syms_of_lread): Declare `lexical-binding'.
22581
22582 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
22583
22584 * keyboard.c (eval_dyn): New fun.
22585 (menu_item_eval_property): Use it.
ca105506
SM
22586
22587 * image.c (parse_image_spec): Use Ffunctionp.
ca105506 22588
03408648
SM
22589 * fns.c (concat, mapcar1): Accept byte-code-functions.
22590
22591 * eval.c (Fsetq): Handle lexical vars.
22592 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
22593 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
22594 (FletX, Flet): Obey lexical binding.
22595 (Fcommandp): Handle closures.
22596 (Feval): New `lexical' arg.
22597 (eval_sub): New function extracted from Feval. Use it almost
22598 everywhere where Feval was used. Look up vars in lexical env.
22599 Handle closures.
22600 (Ffunctionp): Move from subr.el.
22601 (Ffuncall): Handle closures.
22602 (apply_lambda): Remove `eval_flags'.
22603 (funcall_lambda): Handle closures and new byte-code-functions.
22604 (Fspecial_variable_p): New function.
22605 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
22606 but without exporting it to Lisp.
23aba0ea 22607
23aba0ea 22608 * doc.c (Fdocumentation, store_function_docstring):
03408648 22609 * data.c (Finteractive_form): Handle closures.
23aba0ea 22610
03408648
SM
22611 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
22612 interactive spec.
ba83908c 22613
04f2d78b
CB
22614 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
22615 New byte-codes.
03408648
SM
22616 (exec_byte_code): New function extracted from Fbyte_code to handle new
22617 calling convention for byte-code-functions. Add new byte-codes.
ba83908c 22618
03408648 22619 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
e2abe5a1 22620
03408648 22621 * alloc.c (Fmake_symbol): Init new `declared_special' field.
e2abe5a1 22622
e2abce01
JB
226232011-03-31 Juanma Barranquero <lekktu@gmail.com>
22624
22625 * xdisp.c (redisplay_internal): Fix prototype.
22626
63696a73 226272011-03-31 Eli Zaretskii <eliz@gnu.org>
09725d26 22628
63696a73 22629 * xdisp.c (SCROLL_LIMIT): New macro.
04f2d78b
CB
22630 (try_scrolling): Use it when setting scroll_limit.
22631 Limit scrolling to 100 screen lines.
63696a73
EZ
22632 (redisplay_window): Even when falling back on "recentering",
22633 position point in the window according to scroll-conservatively,
22634 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
22635
22636 (try_scrolling): When point is above the window, allow searching
22637 as far as scroll_max, or one screenful, to compute vertical
22638 distance from PT to the scroll margin position. This prevents
22639 try_scrolling from unnecessarily failing when
22640 scroll-conservatively is set to a value slightly larger than the
22641 window height. Clean up the case of PT below the margin at bottom
22642 of window: scroll_max can no longer be INT_MAX. When aggressive
22643 scrolling is in use, don't let point enter the opposite scroll
22644 margin as result of the scroll.
22645 (syms_of_xdisp) <scroll-conservatively>: Document the
09725d26
EZ
22646 threshold of 100 lines for never-recentering scrolling.
22647
e4cc2dfc
JB
226482011-03-31 Juanma Barranquero <lekktu@gmail.com>
22649
22650 * dispextern.h (move_it_by_lines):
22651 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
22652 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
22653 (message_log_check_duplicate): Remove parameters `prev_bol' and
22654 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
22655 (redisplay_internal): Remove parameter `preserve_echo_area',
22656 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
22657
22658 * indent.c (Fvertical_motion):
22659 * window.c (window_scroll_pixel_based, Frecenter):
22660 Don't pass `need_y_p' to `move_it_by_lines'.
22661
1c470562
SM
226622011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
22663
44f230aa
SM
22664 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
22665 steal a few bits to be more compact.
22666 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
22667 Remove unneeded casts.
22668
1c470562
SM
22669 * bytecode.c (Fbyte_code): CAR and CDR can GC.
22670
888adce9
ZK
226712011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
22672
22673 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
22674 binding" message (bug#7967).
22675
f838ed7b
PE
226762011-03-30 Paul Eggert <eggert@cs.ucla.edu>
22677
77861b95
PE
22678 Fix more problems found by GCC 4.6.0's static checks.
22679
de6dbc14
PE
22680 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
22681 Remove unused local var.
22682
f838ed7b
PE
22683 * editfns.c (Fmessage_box): Remove unused local var.
22684
792c7b2b
PE
22685 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
22686 (note_mode_line_or_margin_highlight, note_mouse_highlight):
22687 Omit unused local vars.
c499e557 22688 * window.c (shrink_windows): Omit unused local var.
b01a1c29 22689 * menu.c (digest_single_submenu): Omit unused local var.
0bc32927
PE
22690 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
22691 Omit unused local var.
22692
ba0165e1
PE
22693 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
22694 Don't assume string length fits in int.
32ad8845 22695 (keyremap_step, read_key_sequence): Use size_t for sizes.
48011560 22696 (read_key_sequence): Don't check last_real_key_start redundantly.
ba0165e1 22697
3c59b4c9
PE
22698 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
22699 instead of alloca (Bug#8344).
22700
a3eed478 22701 * eval.c (Fbacktrace): Don't assume nargs fits in int.
5d5d959d 22702 (Fbacktrace_frame): Don't assume nframes fits in int.
a3eed478 22703
eb4d412d
PE
22704 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
22705
1658b401
PE
22706 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
22707 concerns.
22708
22709 * term.c (produce_glyphless_glyph): Remove unnecessary test.
22710
22711 * cm.c (calccost): Turn while-do into do-while, for clarity.
44f730c8 22712
9a2c6e05
PE
22713 * keyboard.c (syms_of_keyboard): Use the same style as later
22714 in this function when indexing through an array. This also
22715 works around GCC bug 48267.
22716
03d0a109
PE
22717 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
22718
44f730c8
PE
22719 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
22720
fe75f926
PE
22721 * chartab.c (sub_char_table_ref_and_range): Redo for slight
22722 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
22723
ffa8c828
PE
22724 * keyboard.c, keyboard.h (num_input_events): Now size_t.
22725 This avoids undefined behavior on integer overflow, and is a bit
22726 more convenient anyway since it is compared to a size_t variable.
22727
c5101a77
PE
22728 Variadic C functions now count arguments with size_t, not int.
22729 This avoids an unnecessary limitation on 64-bit machines, which
22730 caused (substring ...) to crash on large vectors (Bug#8344).
22731 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
22732 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
77861b95 22733 All variadic functions and their callers changed accordingly.
c5101a77
PE
22734 (struct gcpro.nvars): Now size_t, not int. All uses changed.
22735 * data.c (arith_driver, float_arith_driver): Likewise.
22736 * editfns.c (general_insert_function): Likewise.
22737 * eval.c (struct backtrace.nargs, interactive_p)
22738 (internal_condition_case_n, run_hook_with_args, apply_lambda)
22739 (funcall_lambda, mark_backtrace): Likewise.
22740 * fns.c (concat): Likewise.
22741 * frame.c (x_set_frame_parameters): Likewise.
22742 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
22743 0 if not found, not -1. All callers changed.
22744
dd3f25f7
PE
22745 * alloc.c (garbage_collect): Don't assume stack size fits in int.
22746 (stack_copy_size): Now size_t, not int.
22747 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
22748
461c2ab9
JB
227492011-03-28 Juanma Barranquero <lekktu@gmail.com>
22750
22751 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
22752 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
22753 All callers changed.
22754
22755 * lisp.h (multibyte_char_to_unibyte):
22756 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
22757 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
22758 * character.h (CHAR_TO_BYTE8):
22759 * cmds.c (internal_self_insert):
22760 * editfns.c (general_insert_function):
22761 * keymap.c (push_key_description):
22762 * search.c (Freplace_match):
22763 * xdisp.c (message_dolog, set_message_1): All callers changed.
22764
f6d62986
SM
227652011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
22766
22767 * keyboard.c (safe_run_hook_funcall): New function.
22768 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
22769 don't set the hook to nil, but remove the offending function instead.
22770 (Qcommand_hook_internal): Remove, unused.
22771 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
22772 Vcommand_hook_internal.
22773
22774 * eval.c (enum run_hooks_condition): Remove.
22775 (funcall_nil, funcall_not): New functions.
22776 (run_hook_with_args): Call each function through a `funcall' argument.
22777 Remove `cond' argument, now redundant.
22778 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
22779 (Frun_hook_with_args_until_failure): Adjust accordingly.
22780 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
22781
1db5b1ad
JB
227822011-03-28 Juanma Barranquero <lekktu@gmail.com>
22783
22784 * dispextern.h (string_buffer_position): Remove declaration.
22785
22786 * print.c (strout): Remove parameter `multibyte', unused since
22787 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
22788
22789 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
22790 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
22791 All callers changed.
22792
22793 * w32.c (_wsa_errlist): Use braces for struct initializers.
22794
22795 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
22796 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
22797 All callers changed.
22798 (string_buffer_position): Likewise. Also, make static (it's never
22799 used outside xdisp.c).
22800 (cursor_row_p): Remove parameter `w', unused since
22801 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
22802 (decode_mode_spec): Remove parameter `precision', introduced during
22803 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
22804 All callers changed.
22805
5ffb62aa
JD
228062011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22807
22808 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
22809
461c2ab9 228102011-03-27 Anders Lindgren <andlind@gmail.com>
f0a1382a
JD
22811
22812 * nsterm.m (ns_menu_bar_is_hidden): New variable.
22813 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
22814 (ns_update_auto_hide_menu_bar): New functions.
22815 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
22816 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
22817 ns_constrain_all_frames.
22818 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
22819 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
22820
5c380ffb
JD
228212011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22822
22823 * nsmenu.m (runDialogAt): Remove argument to timer_check.
22824
9af30bdf
GM
228252011-03-27 Glenn Morris <rgm@gnu.org>
22826
22827 * syssignal.h: Replace RETSIGTYPE with void.
22828 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
22829 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
22830 Replace SIGTYPE with void everywhere.
22831 * s/usg5-4-common.h (SIGTYPE): Remove definition.
22832 * s/template.h (SIGTYPE): Remove commented out definition.
22833
e2abce01
JB
228342011-03-26 Eli Zaretskii <eliz@gnu.org>
22835
22836 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
22837 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
22838
f868cd8a
JB
228392011-03-26 Juanma Barranquero <lekktu@gmail.com>
22840
59eb0929
JB
22841 * w32.c (read_unc_volume): Use parameter `henum', instead of
22842 global variable `wget_enum_handle'.
22843
22844 * keymap.c (describe_vector): Remove parameters `indices' and
22845 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
22846 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
22847
f868cd8a
JB
22848 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
22849
22850 * keyboard.c (timer_check): Remove parameter `do_it_now',
22851 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
22852 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
22853 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
22854
22855 * keyboard.c (read_char):
22856 * w32menu.c (w32_menu_display_help):
22857 * xmenu.c (show_help_event, menu_help_callback):
22858 Adjust calls to `show_help_echo'.
22859
22860 * gtkutil.c (xg_maybe_add_timer):
22861 * keyboard.c (readable_events):
22862 * process.c (wait_reading_process_output):
22863 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
22864
22865 * insdel.c (adjust_markers_gap_motion):
22866 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
22867 (gap_left, gap_right): Don't call it.
22868
2ecf6fdb
CY
228692011-03-25 Chong Yidong <cyd@stupidchicken.com>
22870
22871 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
22872 incurred during fontification.
22873
6b1f9ba4
JB
228742011-03-25 Juanma Barranquero <lekktu@gmail.com>
22875
22876 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
22877 (DEFVAR_PER_BUFFER): Don't pass it.
22878
22879 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
22880 (scrolling_window): Don't pass it.
22881
0f4a96b5
JB
228822011-03-25 Juanma Barranquero <lekktu@gmail.com>
22883
22884 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
22885
22886 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
22887 and `suffix'.
22888 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
22889 of variables specific to SELinux and computation of `encoded_absname'.
22890
22891 * image.c (XPutPixel): Remove unused variable `height'.
22892
22893 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
22894
22895 * unexw32.c (get_section_info): Remove unused variable `section'.
22896
22897 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
22898 (system_process_attributes): Remove unused variable `sess'.
22899 (sys_read): Remove unused variable `err'.
22900
22901 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
22902 (w32_wnd_proc): Remove unused variable `isdead'.
22903 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
22904 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
22905 (x_create_tip_frame): Remove unused variable `tem'.
22906
22907 * w32inevt.c (w32_console_read_socket):
22908 Remove unused variable `no_events'.
22909
22910 * w32term.c (x_draw_composite_glyph_string_foreground):
22911 Remove unused variable `width'.
22912
1149507c
JB
229132011-03-24 Juanma Barranquero <lekktu@gmail.com>
22914
22915 * w32term.c (x_set_glyph_string_clipping):
22916 Don't pass uninitialized region to CombineRgn.
22917
9c88f339
JB
229182011-03-23 Juanma Barranquero <lekktu@gmail.com>
22919
22920 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
22921 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
22922 (Fx_close_connection): Remove unused variable `i'.
22923
22924 * w32font.c (w32font_draw): Return number of glyphs.
22925 (w32font_open_internal): Remove unused variable `i'.
22926 (w32font_driver): Add missing initializer.
22927
22928 * w32menu.c (utf8to16): Remove unused variable `utf16'.
22929 (fill_in_menu): Remove unused variable `items_added'.
22930
22931 * w32term.c (last_mouse_press_frame): Remove static global variable.
22932 (w32_clip_to_row): Remove unused variable `f'.
22933 (x_delete_terminal): Remove unused variable `i'.
22934
22935 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
22936 (NOTHING): Remove unused static global variable.
22937 (uniscribe_check_otf): Remove unused variable `table'.
22938 (uniscribe_font_driver): Add missing initializers.
22939
dee091a3
JD
229402011-03-23 Julien Danjou <julien@danjou.info>
22941
22942 * term.c (Fsuspend_tty, Fresume_tty):
22943 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
22944 * window.c (temp_output_buffer_show):
22945 * insdel.c (signal_before_change):
22946 * frame.c (Fhandle_switch_frame):
22947 * fileio.c (Fdo_auto_save):
22948 * emacs.c (Fkill_emacs):
22949 * editfns.c (save_excursion_restore):
22950 * cmds.c (internal_self_insert):
22951 * callint.c (Fcall_interactively):
22952 * buffer.c (Fkill_all_local_variables):
22953 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
22954 Use Frun_hooks.
0f4a96b5 22955 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
e9fce1ac 22956 unconditionally since it does the check itself.
dee091a3 22957
2c520ab5 229582011-03-23 Paul Eggert <eggert@cs.ucla.edu>
f0641eff 22959
c9c49752
PE
22960 Fix more problems found by GCC 4.5.2's static checks.
22961
8abc3f12
PE
22962 * coding.c (encode_coding_raw_text): Avoid unnecessary test
22963 the first time through the loop, since we know p0 < p1 then.
22964 This also avoids a gcc -Wstrict-overflow warning.
22965
a2d26660
PE
22966 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
22967 leading to a memory leak, possible in functions like
22968 load_charset_map_from_file that can allocate an unbounded number
b12ef411 22969 of objects (Bug#8318).
a2d26660 22970
916c72e9
PE
22971 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
22972 that could (at least in theory) be that large.
22973
19ab8a18
PE
22974 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
22975 This is less likely to overflow, and avoids undefined behavior if
22976 overflow does occur. All callers changed. Use strtoul to scan
22977 for the unsigned long integer.
b7cbbd6f
PE
22978 (pint2hrstr): Simplify and tune code slightly.
22979 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
19ab8a18 22980
f0641eff
PE
22981 * scroll.c (do_scrolling): Work around GCC bug 48228.
22982 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
22983
7f650bb9
PE
22984 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
22985 This also avoids a warning with gcc -Wstrict-overflow.
39f5e519
PE
22986 (validate_x_resource_name): Simplify count usage.
22987 This also avoids a warning with gcc -Wstrict-overflow.
7f650bb9 22988
37dd57d1
PE
22989 * fileio.c (Fcopy_file): Report error if fchown or fchmod
22990 fail (Bug#8306).
81e56e61 22991
699979fc 22992 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
dc1ca6a8 22993
401bf9b4
PE
22994 * process.c (Fmake_network_process): Use socklen_t, not int,
22995 where POSIX says socklen_t is required in portable programs.
22996 This fixes a porting bug on hosts like 64-bit HP-UX, where
591b2973 22997 socklen_t is wider than int (Bug#8277).
401bf9b4
PE
22998 (Fmake_network_process, server_accept_connection):
22999 (wait_reading_process_output, read_process_output):
23000 Likewise.
23001
b93aacde
PE
23002 * process.c: Rename or move locals to avoid shadowing.
23003 (list_processes_1, Fmake_network_process):
23004 (read_process_output_error_handler, exec_sentinel_error_handler):
23005 Rename or move locals.
4dc343ee 23006 (Fmake_network_process): Define label "retry_connect" only if needed.
0da49335 23007 (Fnetwork_interface_info): Fix pointer signedness.
f990b4e5 23008 (process_send_signal): Add cast to avoid pointer signedness problem.
7b808126 23009 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
c939f91b 23010 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
b93aacde 23011
af8a867c 23012 Make tparam.h and terminfo.c consistent.
44f230aa
SM
23013 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
23014 Include tparam.h instead, since it declares them.
af8a867c
PE
23015 * cm.h (PC): Remove extern decl; tparam.h now does this.
23016 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
23017 * terminfo.c: Include tparam.h, to check interfaces.
23018 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
23019 (tparam): Adjust signature to match interface in tparam.h;
23020 this removes some undefined behavior. Check that outstring and len
23021 are zero, which they always are with Emacs.
23022 * tparam.h (PC, BC, UP): New extern decls.
23023
0248044d 23024 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
001a7ab4 23025 (xftfont_open): Rename locals to avoid shadowing.
0248044d 23026
8ff096c1 23027 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
a00924bb
PE
23028 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
23029 (OTF_TAG_SYM): Omit macro if not needed.
e932860f 23030 (ftfont_list): Remove unused local.
49eaafba
PE
23031 (get_adstyle_property, ftfont_pattern_entity):
23032 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
23033 Rename locals to avoid shadowing.
8ff096c1 23034
e2be39f6
PE
23035 * xfont.c (xfont_list_family): Mark var as initialized.
23036
c9735e30
PE
23037 * xml.c (make_dom): Now static.
23038
8f5201ae
PE
23039 * composite.c (composition_compute_stop_pos): Rename local to
23040 avoid shadowing.
b246f932
PE
23041 (composition_reseat_it): Remove unused locals.
23042 (find_automatic_composition, composition_adjust_point): Likewise.
80e079b2 23043 (composition_update_it): Mark var as initialized.
11b61122
PE
23044 (find_automatic_composition): Mark vars as initialized,
23045 with a FIXME (Bug#8290).
8f5201ae 23046
760fbc2c
PE
23047 character.h: Rename locals to avoid shadowing.
23048 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
23049 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
23050 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
23051 (BUF_DEC_POS): Be more systematic about renaming local temporaries
23052 to avoid shadowing.
23053
ff08eb85
PE
23054 * textprop.c (property_change_between_p): Remove; unused.
23055
fc7bf025
PE
23056 * intervals.c (interval_start_pos): Now static.
23057
235d7abc
PE
23058 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
23059
44f230aa
SM
23060 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
23061 Rename locals to avoid shadowing.
3e7d6594 23062
50060332
PE
23063 * sound.c (wav_play, au_play, Fplay_sound_internal):
23064 Fix pointer signedness.
d01f234b 23065 (alsa_choose_format): Remove unused local var.
c83b8872
PE
23066 (wav_play): Initialize a variable to 0, to prevent undefined
23067 behavior (Bug#8278).
50060332 23068
c4fc4e30
PE
23069 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
23070
918436ed
PE
23071 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
23072
c939f91b
PE
23073 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
23074 clobbering (Bug#8298).
b9c7f648
PE
23075 * sysdep.c (sys_subshell): Likewise.
23076 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
7e9123a2 23077
6bd8c144
PE
23078 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
23079 This should get cleaned up, so that child_setup has the
23080 same signature on all platforms.
23081
7710357c 23082 * callproc.c (call_process_cleanup): Now static.
cb1d0ef7 23083 (relocate_fd): Rename locals to avoid shadowing.
7710357c 23084
c59da222
CY
230852011-03-22 Chong Yidong <cyd@stupidchicken.com>
23086
23087 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
23088 not to be necessary, and produces flickering.
23089
66b87493
GM
230902011-03-20 Glenn Morris <rgm@gnu.org>
23091
23092 * config.in: Remove file.
23093
45b6f6d5
JB
230942011-03-20 Juanma Barranquero <lekktu@gmail.com>
23095
23096 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
23097 are now in src/globals.h.
23098 (syms_of_minibuf): Remove spurious & from previous change.
23099
cd394be1 231002011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
23101
23102 * minibuf.c (completing-read-function): New variable.
23103 (completing-read-default): Rename from completing-read.
23104 (completing-read): Call completing-read-function.
23105
b14e3e21
CY
231062011-03-19 Juanma Barranquero <lekktu@gmail.com>
23107
23108 * xfaces.c (Fx_load_color_file):
23109 Read color file from absolute filename (bug#8250).
23110
f2b726e6
JB
231112011-03-19 Juanma Barranquero <lekktu@gmail.com>
23112
23113 * makefile.w32-in: Update dependencies.
23114
09f6ff02
EZ
231152011-03-17 Eli Zaretskii <eliz@gnu.org>
23116
23117 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
23118
29a6015a
PE
231192011-03-17 Paul Eggert <eggert@cs.ucla.edu>
23120
a3a6c54e
PE
23121 Fix more problems found by GCC 4.5.2's static checks.
23122
b766f867
PE
23123 * process.c (make_serial_process_unwind, send_process_trap):
23124 (sigchld_handler): Now static.
23125
be02381c
PE
23126 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
23127 That way, the code declares only the vars that it needs.
23128 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
23129 * s/cygwin.h (PTY_ITERATION): Likewise.
23130 * s/darwin.h (PTY_ITERATION): Likewise.
23131 * s/gnu-linux.h (PTY_ITERATION): Likewise.
23132
57048744
PE
23133 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
23134 * process.c (allocate_pty): Don't declare stb unless it's needed.
23135
7914961c 23136 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
615f2d59
PE
23137 (CONSTANTLIM): Remove; unused.
23138 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
23139 Define only if needed.
7914961c 23140
b3967b18
PE
23141 * unexelf.c (unexec): Name an expression,
23142 to avoid gcc -Wbad-function-cast warning.
9ae71512
PE
23143 Use a different way to cause a compilation error if anyone uses
23144 n rather than nn, a way that does not involve shadowing.
73366a00 23145 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
b3967b18 23146
29a6015a
PE
23147 * deps.mk (unexalpha.o): Remove; unused.
23148
43cfc33e 23149 New file unexec.h, the (simple) interface for unexec (Bug#8267).
7feda0d2 23150 * unexec.h: New file.
ce701a33
PE
23151 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
23152 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
23153 Depend on unexec.h.
23154 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
23155 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
23156 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
381259ef 23157 Change as necessary to match prototype in unexec.h.
ce701a33 23158
01f44d5a
PE
23159 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
23160 shadowing.
4f63c6bb 23161 (back_comment, skip_chars): Mark vars as initialized.
01f44d5a 23162
a6670b0b
PE
23163 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
23164 Rename locals to avoid shadowing.
23165
cef2010d 23166 * lread.c (read1): Rewrite so as not to use empty "else".
0902fe45 23167 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
cef2010d 23168
d4d7173a
PE
23169 * print.c (Fredirect_debugging_output): Fix pointer signedess.
23170
f08b802a
PE
23171 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
23172 warning when compiling print.c.
23173
3ddb0639
PE
23174 * font.c (font_unparse_fcname): Abort in an "impossible" situation
23175 instead of using an uninitialized var.
5ad03b97 23176 (font_sort_entities): Mark var as initialized.
3ddb0639 23177
170a2692
PE
23178 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
23179
e663c700
PE
23180 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
23181 pointers to constants.
89bc529a 23182 (font_parse_fcname): Remove unused vars.
7b81e2d0 23183 (font_delete_unmatched): Now static.
ea838e10 23184 (font_get_spec): Remove; unused.
13a547c6
PE
23185 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
23186 (font_update_drivers, Ffont_get_glyphs, font_add_log):
23187 Rename or move locals to avoid shadowing.
e663c700 23188
2a80c887 23189 * fns.c (require_nesting_list, require_unwind): Now static.
612f56df 23190 (Ffillarray): Rename locals to avoid shadowing.
2a80c887 23191
1384fa33 23192 * floatfns.c (domain_error2): Define only if needed.
a885e2ed 23193 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
1384fa33 23194
8b2c52e9
PE
23195 * alloc.c (mark_backtrace): Move decl from here ...
23196 * lisp.h: ... to here, so that it can be checked.
23197
475545b5 23198 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
d28a2170 23199 (Fdefvar): Rewrite so as not to use empty "else".
cfcbfb1a
PE
23200 (lisp_indirect_variable): Name an expression,
23201 to avoid gcc -Wbad-function-cast warning.
1faed8ae 23202 (Fdefvar): Rename locals to avoid shadowing.
475545b5 23203
b1349114 23204 * callint.c (quotify_arg, quotify_args): Now static.
a3e8cbda 23205 (Fcall_interactively): Rename locals to avoid shadowing.
b0e80955 23206 Use const pointer when appropriate.
b1349114 23207
a2928364
PE
23208 * lisp.h (get_system_name, get_operating_system_release):
23209 Move decls here, to check interfaces.
23210 * process.c (get_operating_system_release): Move decl to lisp.h.
23211 * xrdb.c (get_system_name): Likewise.
63c5d10b
PE
23212 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
23213 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
23214 some of which prompt warnings from gcc -Wbad-function-cast.
545b49b4
PE
23215 (Fformat_time_string, Fencode_time, Finsert_char):
23216 (Ftranslate_region_internal, Fformat):
23217 Rename or remove local vars to avoid shadowing.
9710023e 23218 (Ftranslate_region_internal): Mark var as initialized.
63c5d10b 23219
a415e694
PE
23220 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
23221 avoid shadowing.
23222
8ef4622d
PE
23223 * lisp.h (eassert): Check that the argument compiles, even if
23224 ENABLE_CHECKING is not defined.
23225
946f9a5b
PE
23226 * data.c (Findirect_variable): Name an expression, to avoid
23227 gcc -Wbad-function-cast warning.
112396d6 23228 (default_value, arithcompare, arith_driver, arith_error): Now static.
b9b84fa9 23229 (store_symval_forwarding): Rename local to avoid shadowing.
44f230aa
SM
23230 (Fmake_variable_buffer_local, Fmake_local_variable):
23231 Mark variables as initialized.
52746918 23232 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
946f9a5b 23233
e5aab7e7 23234 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
ae35e756
PE
23235 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
23236 Rename locals to avoid shadowing.
dff45157
PE
23237 (mark_stack): Move local variables into the #ifdef region where
23238 they're used.
7bc26fdb
PE
23239 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
23240 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
23241 needed otherwise.
23242 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
23243 (GC_STRING_CHARS): Remove; not used.
d40d4be1 23244 (Fmemory_limit): Cast sbrk's returned value to char *.
ae35e756 23245
e5aab7e7
PE
23246 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
23247 avoids undefined behavior in theory.
23248
4da60324
PE
23249 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
23250
88043301
PE
23251 Use functions, not macros, for up- and down-casing (Bug#8254).
23252 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
23253 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
23254 to use the following functions instead of these macros.
23255 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
23256 EMACS_INT, since callers assume the returned value fits in int.
23257 (upcase1): Likewise, for UPCASE_TABLE.
23258 (uppercasep, lowercasep, upcase): New static inline functions.
0da09c43 23259 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
db69b0cd 23260 the race-condition problem in the old DOWNCASE.
88043301 23261
19ed5445
PE
23262 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
23263 Rename locals to avoid shadowing.
23264 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
abbd1bcf
PE
23265 (regex_compile, re_search_2, re_match_2_internal):
23266 Remove unused local vars.
952db0d7
PE
23267 (FREE_VAR): Rewrite so as not to use empty "else",
23268 which gcc can warn about.
da053e48 23269 (regex_compile, re_match_2_internal): Mark locals as initialized.
b313f9d8
PE
23270 (RETALLOC_IF): Define only if needed.
23271 (WORDCHAR_P): Likewise. This one is never needed, but is used
23272 only in a comment talking about a compiler bug, so put inside
23273 the #if 0 of that comment.
23274 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
23275 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
23276 Remove; unused.
19ed5445 23277
1f3561e4 23278 * search.c (boyer_moore): Rename locals to avoid shadowing.
76ef09b7
PE
23279 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
23280 (PREV_CHAR_BOUNDARY): Likewise.
1f3561e4 23281
ded6f8f7
PE
23282 * search.c (simple_search): Remove unused var.
23283
dbd37a95
PE
23284 * dired.c (compile_pattern): Move decl from here ...
23285 * lisp.h: ... to here, so that it can be checked.
23286 (struct re_registers): New forward decl.
23287
7e47afad
PE
23288 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
23289
85f24f61
PE
23290 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
23291 All uses changed.
23292 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
23293 Rename locals to avoid shadowing.
5671df8f 23294 (Fvertical_motion): Mark locals as initialized.
85f24f61 23295
181aa2be 23296 * casefiddle.c (casify_object, casify_region): Now static.
e45a141a 23297 (casify_region): Mark local as initialized.
181aa2be 23298
930d429c
PE
23299 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
23300
7082eac6
PE
23301 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
23302 New macros, so that the caller can use some names other than
23303 gcpro1, gcpro2, etc.
23304 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
23305 of the new macros.
23306 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
23307 argument, for consistency with GCPRO2_VAR, etc: it is now the
23308 prefix of the variable, not the variable itself. All uses
23309 changed.
38b2c076
PE
23310 * dired.c (directory_files_internal, file_name_completion):
23311 Rename locals to avoid shadowing.
23312
15206ed9
PE
23313 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
23314 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
23315 dired.c's scmp function, had undefined behavior.
23316 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
23317 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
23318 * buffer.h: ... to here, because these macros use current_buffer,
23319 and the new implementation with inline functions needs to have
23320 current_buffer in scope now, rather than later when the macros
23321 are used.
23322 (downcase, upcase1): New static inline functions.
23323 (DOWNCASE, UPCASE1): Reimplement using these functions.
23324 This avoids undefined behavior in expressions like
23325 DOWNCASE (x) == DOWNCASE (y), which previously suffered
23326 from race conditions in accessing the global variables
23327 case_temp1 and case_temp2.
23328 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
23329 * lisp.h (case_temp1, case_temp2): Remove their decls.
23330 * character.h (ASCII_CHAR_P): Move from here ...
23331 * lisp.h: ... to here, so that the inline functions mentioned
23332 above can use them.
23333
4a6bea26
PE
23334 * dired.c (directory_files_internal_unwind): Now static.
23335
f14b7e14
PE
23336 * fileio.c (file_name_as_directory, directory_file_name):
23337 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
23338 Now static.
2893f146
PE
23339 (file_name_as_directory): Use const pointers when appropriate.
23340 (Fexpand_file_name): Likewise. In particular, newdir might
23341 point at constant storage, so make it a const pointer.
fd4ead52 23342 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
b14aac08
PE
23343 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
23344 signedness issues.
f839df0c
PE
23345 (Fset_file_times, Finsert_file_contents, auto_save_error):
23346 Rename locals to avoid shadowing.
f14b7e14 23347
5716756e 23348 * minibuf.c (choose_minibuf_frame_1): Now static.
62137a95
PE
23349 (Ftry_completion, Fall_completions): Rename or remove locals
23350 to avoid shadowing.
5716756e 23351
b4c3046a
PE
23352 * marker.c (bytepos_to_charpos): Remove; unused.
23353
b45db522
PE
23354 * lisp.h (verify_bytepos, count_markers): New decls,
23355 so that gcc does not warn that these functions aren't declared.
23356
85876d07
PE
23357 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
23358 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
f0cb4a60 23359 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
40ef059e 23360 (copy_text): Remove unused local var.
85876d07 23361
03d78a21 23362 * filelock.c (within_one_second): Now static.
b3dd38ab 23363 (lock_file_1): Rename local to avoid shadowing.
03d78a21 23364
5df8f01b
PE
23365 * buffer.c (fix_overlays_before): Mark locals as initialized.
23366 (fix_start_end_in_overlays): Likewise. This function should be
23367 simplified by using pointers-to-pointers, but that's a different
23368 matter.
b1d876f1 23369 (switch_to_buffer_1): Now static.
8f54f30a
PE
23370 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
23371 (report_overlay_modification): Rename locals to avoid shadowing.
c3bd59b5 23372
a70072c9 23373 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
fbd02d7b 23374 Fix pointer signedness issue.
edced198
PE
23375 (sys_subshell): Mark local as volatile if checking for lint,
23376 to suppress a gcc -Wclobbered warning that does not seem to be right.
15dfd3d9 23377 (MAXPATHLEN): Define only if needed.
a70072c9 23378
a0977c44
PE
23379 * process.c (serial_open, serial_configure): Move decls from here ...
23380 * systty.h: ... to here, so that they can be checked.
23381
a884fdcc
PE
23382 * fns.c (get_random, seed_random): Move extern decls from here ...
23383 * lisp.h: ... to here, so that they can be checked.
23384
604efe86 23385 * sysdep.c (reset_io): Now static.
b8950c94 23386 (wait_for_termination_signal): Remove; unused.
604efe86 23387
38fc62d9
PE
23388 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
23389 (copy_keymap_item, append_key, push_text_char_description):
23390 Now static.
1004a21a 23391 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
dbbb8427 23392 (DENSE_TABLE_SIZE): Remove; unused.
c1141155
PE
23393 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
23394 (describe_map_tree):
23395 Rename locals to avoid shadowing.
38fc62d9 23396
2f2650da
PE
23397 * keyboard.c: Declare functions static if they are not used elsewhere.
23398 (echo_char, echo_dash, cmd_error, top_level_2):
23399 (poll_for_input, handle_async_input): Now static.
69a058fa
PE
23400 (read_char, kbd_buffer_get_event, make_lispy_position):
23401 (make_lispy_event, make_lispy_movement, apply_modifiers):
23402 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
23403 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
23404 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
c8a06054 23405 (read_key_sequence, read_char): Mark locals as initialized.
3ac94672 23406 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
2f2650da 23407
a053e86c 23408 * keyboard.h (make_ctrl_char): New decl.
da2f2dd9
PE
23409 (mark_kboards): Move decl here ...
23410 * alloc.c (mark_kboards): ... from here.
a053e86c 23411
4752793e
PE
23412 * lisp.h (force_auto_save_soon): New decl.
23413
74f10ca7 23414 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
244fc23d
PE
23415 (DEFINE_DUMMY_FUNCTION): New macro.
23416 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
23417 Use it.
c03cd23f
PE
23418 (main): Add casts to avoid warnings
23419 if GCC considers string literals to be constants.
74f10ca7 23420
022e70d4
PE
23421 * lisp.h (fatal_error_signal): Add decl, since it's exported.
23422
59d6fe83
PE
23423 * dbusbind.c: Pointer signedness fixes.
23424 (xd_signature, xd_append_arg, xd_initialize):
23425 (Fdbus_call_method, Fdbus_call_method_asynchronously):
23426 (Fdbus_method_return_internal, Fdbus_method_error_internal):
23427 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
23428 (Fdbus_register_signal): Use SSDATA when the context wants char *.
23429
78320123
PE
23430 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
23431 if GCC considers string literals to be constants.
49cebcca 23432 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
78320123 23433
35ac2a97
SM
234342011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
23435
fb103ca9
SM
23436 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
23437 (print_preprocess, print_object): New macro to fix last change.
23438
35ac2a97
SM
23439 * print.c (print_preprocess): Don't forget font objects.
23440
62973b41
JB
234412011-03-16 Juanma Barranquero <lekktu@gmail.com>
23442
23443 * emacs.c (USAGE3): Doc fixes.
23444
0e48bb22
AS
234452011-03-15 Andreas Schwab <schwab@linux-m68k.org>
23446
23447 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
23448 structure.
23449
7684e57b
JB
234502011-03-14 Juanma Barranquero <lekktu@gmail.com>
23451
23452 * lisp.h (VWindow_system, Qfile_name_history):
23453 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
23454 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
23455 (w32_system_caret_x, w32_system_caret_y): Declare extern.
23456
23457 * w32select.c: Don't #include "keyboard.h".
c96bbc66 23458 (run_protected): Add extern declaration for waiting_for_input.
7684e57b
JB
23459
23460 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
23461 * w32console.c (detect_input_pending, read_input_pending)
23462 (encode_terminal_code):
23463 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
23464 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
23465 (w32_system_caret_y, Qfile_name_history):
23466 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
23467 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
23468 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
23469 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
23470 * w32proc.c (Qlocal, report_file_error):
23471 * w32term.c (Vwindow_system, updating_frame):
23472 * w32uniscribe.c (initialized, uniscribe_font_driver):
23473 Remove unneeded extern declarations.
23474
2aa46d6c
CY
234752011-03-14 Chong Yidong <cyd@stupidchicken.com>
23476
c96bbc66 23477 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
2aa46d6c 23478
cffc6f3b
CY
234792011-03-13 Chong Yidong <cyd@stupidchicken.com>
23480
23481 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
23482 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
23483 These macros can no longer be used for assignment.
23484
44f230aa
SM
23485 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
23486 Assign struct members directly, instead of using BUF_BEGV etc.
cffc6f3b
CY
23487 (record_buffer_markers, fetch_buffer_markers): New functions for
23488 recording and fetching special buffer markers.
23489 (set_buffer_internal_1, set_buffer_temp): Use them.
23490
23491 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
23492
23493 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
23494
23495 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
23496 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
23497
23498 * xdisp.c (hscroll_window_tree):
23499 (reconsider_clip_changes): Use PT instead of BUF_PT.
23500
d251f04b
EZ
235012011-03-13 Eli Zaretskii <eliz@gnu.org>
23502
23503 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
23504 $(EMACS_ROOT)/lib/intprops.h.
23505
f0c77cd1
PE
235062011-03-13 Paul Eggert <eggert@cs.ucla.edu>
23507
3eca4629
PE
23508 Fix more problems found by GCC 4.5.2's static checks.
23509
7c86ee98
PE
23510 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
23511 to unsigned char * to avoid compiler diagnostic.
b0afc268
PE
23512 (xg_free_frame_widgets): Make it clear that a local variable is
23513 needed only if USE_GTK_TOOLTIP.
01e0b5ad
PE
23514 (gdk_window_get_screen): Make it clear that this macro is needed
23515 only if USE_GTK_TOOLTIP.
1e5524e7
PE
23516 (int_gtk_range_get_value): New function, which avoids a diagnostic
23517 from gcc -Wbad-function-cast.
23518 (xg_set_toolkit_scroll_bar_thumb): Use it.
23519 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
23520 diagnostic from gcc -Wbad-function-cast.
65dc836c
PE
23521 (get_utf8_string, xg_get_file_with_chooser):
23522 Rename locals to avoid shadowing.
23523 (create_dialog): Move locals to avoid shadowing.
7c86ee98 23524
41729b81
PE
23525 * xgselect.c (xg_select): Remove unused var.
23526
f0c77cd1
PE
23527 * image.c (four_corners_best): Mark locals as initialized.
23528 (gif_load): Initialize transparent_p to zero (Bug#8238).
23529 Mark another local as initialized.
ec6cf4c6 23530 (my_png_error, my_error_exit): Mark with NO_RETURN.
f0c77cd1 23531
ce0ad53d 23532 * image.c (clear_image_cache): Now static.
d5d5a617 23533 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
e22cffbc 23534 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
77a765fd
PE
23535 (x_edge_detection): Remove unnecessary cast that
23536 gcc -Wbad-function-cast diagnoses.
2037898d 23537 (gif_load): Fix pointer signedness.
6ae141d6
PE
23538 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
23539 (jpeg_load, gif_load): Rename locals to avoid shadowing.
ce0ad53d 23540
33383987 235412011-03-12 Paul Eggert <eggert@cs.ucla.edu>
3eca4629 23542
d32df629
PE
23543 Improve quality of tests for time stamp overflow.
23544 For example, without this patch (encode-time 0 0 0 1 1
23545 1152921504606846976) returns the obviously-bogus value (-948597
23546 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
23547 reports time overflow. See
23548 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
b8d9bd41
PE
23549 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
23550 * editfns.c: Include limits.h and intprops.h.
23551 (TIME_T_MIN, TIME_T_MAX): New macros.
23552 (time_overflow): Move earlier, to before first use.
23553 (hi_time, lo_time): New functions, for an accurate test for
23554 out-of-range times.
23555 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
23556 (Fget_internal_run_time): Don't assume time_t fits in int.
23557 (make_time): Use list2 instead of Fcons twice.
23558 (Fdecode_time): More accurate test for out-of-range times.
23559 (check_tm_member): New function.
23560 (Fencode_time): Use it, to test for out-of-range times.
d32df629
PE
23561 (lisp_time_argument): Don't rely on undefined left-shift and
23562 right-shift behavior when checking for time stamp overflow.
8be6f318 23563
fe31d94c
PE
23564 * editfns.c (time_overflow): New function, refactoring common code.
23565 (Fformat_time_string, Fdecode_time, Fencode_time):
23566 (Fcurrent_time_string): Use it.
23567
8be6f318
PE
23568 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
23569 * dired.c (make_time): Move to ...
23570 * editfns.c (make_time): ... here.
23571 * systime.h: Note the move.
23572
09d9db2c 235732011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
c47cbdfd 23574
126bc0dc
YM
23575 * fringe.c (update_window_fringes): Remove unused variables.
23576
c47cbdfd
YM
23577 * unexmacosx.c (copy_data_segment): Also copy __got section.
23578 (Bug#8223)
23579
7ac80be9
EZ
235802011-03-12 Eli Zaretskii <eliz@gnu.org>
23581
c96bbc66 23582 * termcap.c [MSDOS]: Include "msdos.h".
058e5dad
EZ
23583 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
23584 Constify `char *' arguments and their references according to
23585 prototypes in tparam.h.
23586
ecb0f94d 23587 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
058e5dad 23588
7ac80be9
EZ
23589 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
23590 Adapt all references accordingly.
23591
23592 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
23593
ef1fd07e
TT
235942011-03-11 Tom Tromey <tromey@redhat.com>
23595
23596 * buffer.c (syms_of_buffer): Remove obsolete comment.
23597
7ef4b50c
EZ
235982011-03-11 Eli Zaretskii <eliz@gnu.org>
23599
23600 * termhooks.h (encode_terminal_code): Declare prototype.
23601
23602 * msdos.c (encode_terminal_code): Don't declare prototype.
23603
23604 * term.c (encode_terminal_code): Now external again, used by
23605 w32console.c and msdos.c.
23606
44f230aa
SM
23607 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
23608 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
7ef4b50c 23609
4b1ec863 236102011-03-11 Paul Eggert <eggert@cs.ucla.edu>
f78faa98 23611
1714f52b 23612 Fix some minor problems found by GCC 4.5.2's static checks.
83316bf4 23613
4b1ec863
PE
23614 * fringe.c (update_window_fringes): Mark locals as initialized
23615 (Bug#8227).
23616 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
bf60f616 23617
524c7aa6
PE
23618 * alloc.c (mark_fringe_data): Move decl from here ...
23619 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
23620 to check its interface.
23621 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
23622
a5c0af81 23623 * fontset.c (free_realized_fontset): Now static.
7519b8cd 23624 (Fset_fontset_font): Rename local to avoid shadowing.
cc6e5db1 23625 (fontset_font): Mark local as initialized.
a9a06e0b 23626 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
a5c0af81 23627
b4716021
PE
23628 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
23629
811e9bac 23630 * xselect.c (x_disown_buffer_selections): Remove; not used.
7b83e2f1 23631 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
aa0daa9f
PE
23632 (x_own_selection, Fx_disown_selection_internal): Rename locals
23633 to avoid shadowing.
23634 (x_handle_dnd_message): Remove local to avoid shadowing.
811e9bac 23635
7e3ab302
PE
23636 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
23637 so that the caller can use some name other than gcpro1.
23638 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
58d2d479
PE
23639 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
23640 (Fx_backspace_delete_keys_p):
23641 Use them to avoid shadowing, and rename vars to avoid shadowing.
23642 (x_decode_color, x_set_name, x_window): Now static.
6b437900 23643 (Fx_create_frame): Add braces to silence GCC warning.
c0951e53 23644 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
06b0c8a0
PE
23645 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
23646 Remove unused locals.
7e3ab302
PE
23647 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
23648 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
23649 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
23650 macros.
f78faa98 23651
e2b13473
PE
23652 * xterm.h (x_mouse_leave): New decl.
23653
77f23912
PE
23654 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
23655 Remove unused functions.
cdf4ba58
PE
23656 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
23657 (x_calc_absolute_position): Now static.
7411c686 23658 (XTread_socket): Don't define label "out" unless it's used.
2b07bcff 23659 Don't declare local "event" unless it's used.
ed7bf3a5
PE
23660 (x_iconify_frame, x_free_frame_resources): Don't declare locals
23661 unless they are used.
38d0b34a
PE
23662 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
23663 (x_fatal_error_signal): Remove; not used.
a6067996
PE
23664 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
23665 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
23666 (x_error_catcher, x_connection_closed, x_error_handler):
23667 (x_error_quitter, xembed_send_message, x_iconify_frame):
23668 (my_log_handler): Rename locals to avoid shadowing.
28f1c698 23669 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
2a8fade0 23670 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
77f23912 23671
44f230aa
SM
23672 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
23673 Rename or move locals to avoid shadowing.
6b463e58 23674 (tty_defined_color, merge_face_heights): Now static.
5967d051 23675 (free_realized_faces_for_fontset): Remove; not used.
1e9966ea
PE
23676 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
23677 does not deduce is never used uninitialized.
73719eba
PE
23678 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
23679 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
071048a3 23680
426994c3 23681 * terminal.c (store_terminal_param): Now static.
5489860b 23682
032f1620 23683 * xmenu.c (menu_highlight_callback): Now static.
9d66f88e 23684 (set_frame_menubar): Remove unused local.
d4323972 23685 (xmenu_show): Rename parameter to avoid shadowing.
6d1f7fee
PE
23686 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
23687 since they might point to immutable storage.
281585b0
PE
23688 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
23689 since it's unused otherwise.
032f1620 23690
367c19e5 23691 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
53df7c11 23692 Add a FIXME, since the code still doesn't look right. (Bug#8215)
9f36b9fd
PE
23693 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
23694 avoids a gcc -Wuninitialized diagnostic.
0e086e8f 23695 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
44a3a108
PE
23696 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
23697 does not deduce are never used uninitialized.
70739cbe 23698
07b48fa9
PE
23699 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
23700
8868a238 23701 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
4554d213
PE
23702 * window.c (window_loop, size_window):
23703 (run_window_configuration_change_hook, enlarge_window): Likewise.
8868a238 23704
7e5cf297 23705 * window.c (display_buffer): Now static.
d6550a9f
PE
23706 (size_window): Mark variables that gcc -Wuninitialized
23707 does not deduce are never used uninitialized.
a586633d
PE
23708 * window.h (check_all_windows): New decl, to forestall
23709 gcc -Wmissing-prototypes diagnostic.
5b555da1 23710 * dispextern.h (bidi_dump_cached_states): Likewise.
7e5cf297 23711
f6095868
PE
23712 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
23713 shadowing.
23714 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
726929c4
PE
23715 Include <limits.h>.
23716 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
23717 and to avoid gcc -Wuninitialized warning.
89ef49df
PE
23718 (load_charset_map): Mark variables that gcc -Wuninitialized
23719 does not deduce are never used uninitialized.
53df7c11 23720 (load_charset): Abort instead of using uninitialized var (Bug#8229).
f6095868 23721
f38b440c
PE
23722 * coding.c (coding_set_source, coding_set_destination):
23723 Use "else { /* comment */ }" rather than "else /* comment */;"
23724 for clarity, and to avoid gcc -Wempty-body warning.
2735d060
PE
23725 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
23726 a block, when the outer 'i' will do.
23727 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
23728 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
23729 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
23730 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
23731 (Fdecode_sjis_char, Fdefine_coding_system_internal):
23732 Rename locals to avoid shadowing.
23733 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
e2f1bab9
PE
23734 * coding.c (emacs_mule_char, encode_invocation_designation):
23735 Now static, since they're not used elsewhere.
413bb2db 23736 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
c4a63b12 23737 (decode_coding_object, encode_coding_object, detect_coding_system):
ee05f961
PE
23738 (decode_coding_emacs_mule): Mark variables that gcc
23739 -Wuninitialized does not deduce are never used uninitialized.
160b01f6
PE
23740 (detect_coding_iso_2022): Initialize a local variable that might
23741 be used uninitialized. Leave a FIXME because it's not clear that
53df7c11 23742 this initialization is needed. (Bug#8211)
5f58e762
PE
23743 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
23744 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
23745 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
23746 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
23747 Remove unused macros.
f38b440c 23748
232b38b9 23749 * category.c (hash_get_category_set): Remove unused local var.
9f3b5e69 23750 (copy_category_table): Now static, since it's not used elsewhere.
d0891610 23751 * character.c (string_count_byte8): Likewise.
232b38b9 23752
fb90da1b
PE
23753 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
23754 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
23755
fb93dbc2
PE
23756 * chartab.c (copy_sub_char_table): Now static, since it's not used
23757 elsewhere.
5c156ace
PE
23758 (sub_char_table_ref_and_range, char_table_ref_and_range):
23759 Rename locals to avoid shadowing.
bbcd0949 23760 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
fb93dbc2 23761
7d3b3862 23762 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
630d6892 23763 (BIDI_BOB): Remove unused macro.
7d3b3862 23764
6be7d3da
PE
23765 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
23766 deduce are never used uninitialized.
c2ed9c8b 23767 * term.c (encode_terminal_code): Likewise.
6be7d3da 23768
75f8807f 23769 * term.c (encode_terminal_code): Now static. Remove unused local.
72abad34 23770
50938595
PE
23771 * tparam.h: New file.
23772 * term.c, tparam.h: Include it.
23773 * deps.mk (term.o, tparam.o): Depend on tparam.h.
23774 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
23775 Move these decls to tparam.h, and make them agree with what
23776 is actually in tparam.c. The previous trick of using incompatible
23777 decls in different modules does not conform to the C standard.
23778 All callers of tparam changed to use tparam's actual API.
23779 * tparam.c (tparam1, tparam, tgoto):
23780 Use const pointers where appropriate.
23781
fbceeba2
PE
23782 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
23783 * cm.h (struct cm): Likewise.
23784 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
23785 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
23786 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
23787 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
23788 (turn_on_face, init_tty): Likewise.
23789 * termchar.h (struct tty_display_info): Likewise.
fbceeba2 23790
7f3f1250
PE
23791 * term.c (term_mouse_position): Rename local to avoid shadowing.
23792
e6ca6543
PE
23793 * alloc.c (mark_ttys): Move decl from here ...
23794 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
23795
c40f8d15
AS
237962011-03-11 Andreas Schwab <schwab@linux-m68k.org>
23797
23798 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
23799
cfe0661d
JB
238002011-03-09 Juanma Barranquero <lekktu@gmail.com>
23801
23802 * search.c (compile_pattern_1): Remove argument regp, unused since
23803 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
23804 (compile_pattern): Don't pass it.
23805
0afb4571
J
238062011-03-08 Jan Djärv <jan.h.d@swipnet.se>
23807
23808 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
23809 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
23810 for ! HAVE_GTK3.
23811 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
23812
23813 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
23814
23815 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
23816 gdk_window_get_screen, gdk_window_get_geometry,
23817 gdk_x11_window_lookup_for_display and GDK_KEY_g.
23818 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
23819 (xg_get_pixbuf_from_pixmap): New function.
23820 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
23821 to Pixmap, take frame as parameter, remove GdkColormap parameter.
23822 Call xg_get_pixbuf_from_pixmap instead of
23823 gdk_pixbuf_get_from_drawable.
23824 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
23825 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
23826 (xg_check_special_colors): Use GtkStyleContext and its functions
23827 for HAVE_GTK3.
23828 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
23829 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
23830 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
44f230aa
SM
23831 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
23832 Call gtk_widget_get_preferred_size.
0afb4571
J
23833 (xg_frame_resized): gdk_window_get_geometry only takes 5
23834 parameters.
44f230aa
SM
23835 (xg_win_to_widget, xg_event_is_for_menubar):
23836 Call gdk_x11_window_lookup_for_display.
0afb4571
J
23837 (xg_set_widget_bg): New function.
23838 (delete_cb): New function.
895009e1 23839 (xg_create_frame_widgets): Connect delete-event to delete_cb.
5c32d3f2 23840 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
0afb4571
J
23841 (xg_set_background_color): Call xg_set_widget_bg.
23842 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
23843 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
23844 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
23845 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
23846 if ! HAVE_GTK3.
23847 (update_frame_tool_bar): Call gtk_widget_hide.
23848 (xg_initialize): Use GDK_KEY_g.
23849
23850 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
23851 if ! HAVE_GTK3
23852 (x_session_initialize): Call gdk_x11_set_sm_client_id.
23853
23854 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
23855 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
23856 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
23857
1c2cc4ef
JB
238582011-03-08 Juanma Barranquero <lekktu@gmail.com>
23859
23860 * w32xfns.c (select_palette): Check success of RealizePalette against
23861 GDI_ERROR, not zero.
23862
33383987 23863See ChangeLog.11 for earlier changes.
aac0c6e3
MR
23864
23865;; Local Variables:
23866;; coding: utf-8
aac0c6e3
MR
23867;; End:
23868
ab422c4d 23869 Copyright (C) 2011-2013 Free Software Foundation, Inc.
aac0c6e3
MR
23870
23871 This file is part of GNU Emacs.
23872
23873 GNU Emacs is free software: you can redistribute it and/or modify
23874 it under the terms of the GNU General Public License as published by
23875 the Free Software Foundation, either version 3 of the License, or
23876 (at your option) any later version.
23877
23878 GNU Emacs is distributed in the hope that it will be useful,
23879 but WITHOUT ANY WARRANTY; without even the implied warranty of
23880 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23881 GNU General Public License for more details.
23882
23883 You should have received a copy of the GNU General Public License
23884 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.