Merge from trunk.
[bpt/emacs.git] / src / ChangeLog
1 2013-06-11 Paul Eggert <eggert@cs.ucla.edu>
2
3 Tickle glib by waiting for Emacs itself, not for process 0 (Bug#14569).
4 * process.c (init_process_emacs) [HAVE_GLIB && !WINDOWSNT]:
5 Wait for self, not for 0. This can't hurt on GNU or similar
6 system, and may help with Cygwin.
7
8 * keyboard.c: Don't use PROP (...) as an lvalue.
9 (parse_tool_bar_item) [!USE_GTK && !HAVE_NS]:
10 Use set_prop (A, B), not PROP (A) = B.
11
12 2013-06-10 Eli Zaretskii <eliz@gnu.org>
13
14 * xdisp.c (get_it_property): Use it->window instead of generating
15 a Lisp object from it->w.
16
17 2013-06-09 Eli Zaretskii <eliz@gnu.org>
18
19 * xdisp.c (get_it_property): If it->object is a buffer, pass to
20 get-char-property the window that is being rendered, instead of
21 the buffer, to support window-specific overlays. (Bug#14575)
22 (compute_display_string_pos): When W is NULL, use the current
23 buffer as the object to pass to get-char-property.
24 (Fcurrent_bidi_paragraph_direction): Assign NULL to the window
25 pointer member of the bidi iterator, since no window is pertinent
26 to this function.
27
28 2013-06-08 Eli Zaretskii <eliz@gnu.org>
29
30 * bidi.c (bidi_fetch_char): Accept additional argument, the window
31 being displayed, and pass it to compute_display_string_pos.
32 (bidi_level_of_next_char, bidi_resolve_explicit_1)
33 (bidi_paragraph_init): All callers changed.
34
35 * xdisp.c (init_from_display_pos, init_iterator)
36 (handle_single_display_spec, next_overlay_string)
37 (get_overlay_strings_1, reseat_1, reseat_to_string)
38 (push_prefix_prop, Fcurrent_bidi_paragraph_direction):
39 Set bidi_it.w member from it->w.
40 (compute_display_string_pos): Accept additional argument, the
41 window being displayed, and pass it to Fget_char_property.
42 (Bug#14575)
43
44 * dispextern.h (struct bidi_it): New member w, the window being
45 displayed.
46 (compute_display_string_pos): Adjust prototype.
47
48 2013-06-08 Jan Djärv <jan.h.d@swipnet.se>
49
50 * xgselect.c: Remove unneeded include xterm.h.
51
52 * process.c (wait_reading_process_output): Check for NS before GLIB.
53 GLIB may be linked in due to rsvg, but ns_select must be called.
54
55 * xgselect.c (xg_select): Remove call to window_system_available
56 and g_main_context_pending at the top, so Gdk events (i.e. file
57 notify) are processed when Emacs is started with -nw.
58
59 2013-06-07 Eli Zaretskii <eliz@gnu.org>
60
61 * Makefile.in (ctagsfiles1, ctagsfiles2): Don't include *.m files.
62 (ctagsfiles3): New variable, includes only *.m files.
63 (TAGS): Use an explicit language name in the regular expressions,
64 to avoid transformation of '/SOMETHING' by MSYS to
65 'c:\MSYS\SOMETHING'.
66
67 2013-06-07 Richard Copley <rcopley@gmail.com> (tiny change)
68
69 * epaths.in: Fix commentary to PATH_SITELOADSEARCH.
70
71 2013-06-06 Eli Zaretskii <eliz@gnu.org>
72
73 * xdisp.c (note_mouse_highlight): When mouse-highlight is off,
74 still need to set the mouse pointer shape and activate help-echo.
75 (Bug#14558)
76
77 2013-06-06 Paul Eggert <eggert@cs.ucla.edu>
78
79 A few porting etc. fixes for the new file monitor code.
80 See the thread containing
81 <http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00109.html>.
82 * gfilenotify.c (dir_monitor_callback, Fgfile_add_watch)
83 (Fgfile_rm_watch): Don't assume EMACS_INT is the same width as a pointer.
84 (dir_monitor_callback, Fgfile_rm_watch):
85 Use assq_no_quit instead of Fassoc, for speed.
86 (dir_monitor_callback, Fgfile_rm_watch):
87 eassert that the monitor is a fixnum.
88 (dir_monitor_callback): No need for CDR_SAFE.
89 Simplify building of lisp with alternative tails.
90 (Fgfile_add_watch, Fgfile_rm_watch):
91 Do not assume glib functions set errno reliably on failure.
92 (Fgfile_add_watch): Check that the monitor survives the XIL trick,
93 and signal an error otherwise.
94 (Fgfile_rm_watch): Prefer CONSP to !NILP.
95 Use Fdelq instead of Fdelete, for speed.
96
97 2013-06-05 Eli Zaretskii <eliz@gnu.org>
98
99 * xdisp.c (handle_tool_bar_click): When mouse-highlight is off,
100 don't insist on being invoked on a highlighted tool-bar button.
101 Avoids losing tool-bar functionality when mouse-highlight is nil.
102 (note_tool_bar_highlight, note_mode_line_or_margin_highlight):
103 Don't highlight when mouse-highlight is nil.
104 (note_mouse_highlight): When mouse-highlight is nil, don't return
105 right away; instead, run tool-bar and mode-line highlight
106 subroutine, clear any existing highlight, and revert the mouse
107 pointer to its default shape. (Bug#14558)
108
109 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * lisp.mk (lisp): Add prog-mode.el.
112
113 2013-06-05 Paul Eggert <eggert@cs.ucla.edu>
114
115 Chain glib's SIGCHLD handler from Emacs's (Bug#14474).
116 * process.c (dummy_handler): New function.
117 (lib_child_handler): New static var.
118 (handle_child_signal): Invoke it.
119 (catch_child_signal): If a library has set up a signal handler,
120 save it into lib_child_handler.
121 (init_process_emacs): If using glib and not on Windows, tickle glib's
122 child-handling code so that it initializes its private SIGCHLD handler.
123 * syssignal.h (SA_SIGINFO): Default to 0.
124 * xterm.c (x_term_init): Remove D-bus hack that I installed on May
125 31; it should no longer be needed now.
126
127 2013-06-05 Michael Albinus <michael.albinus@gmx.de>
128
129 * emacs.c (main) [HAVE_GFILENOTIFY]: Call globals_of_gfilenotify.
130
131 * gfilenotify.c (globals_of_gfilenotify): New function.
132 (syms_of_gfilenotify): Move global initialization there.
133
134 * lisp.h (globals_of_gfilenotify) [HAVE_GFILENOTIFY]: Add prototype.
135
136 2013-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
137
138 * keymap.c (Fcurrent_active_maps, Fdescribe_buffer_bindings):
139 * keyboard.c (menu_bar_items, tool_bar_items):
140 * doc.c (Fsubstitute_command_keys): Voverriding_terminal_local_map does
141 not override local keymaps any more.
142
143 2013-06-04 Eli Zaretskii <eliz@gnu.org>
144
145 * window.c (Fpos_visible_in_window_p): Doc fix. (Bug#14540)
146
147 2013-06-03 Eli Zaretskii <eliz@gnu.org>
148
149 * w32console.c (initialize_w32_display): Return the dimensions of
150 the console window via 2 additional arguments, not via the current
151 frame. This avoids crashes due to overrunning the bounds of
152 frame's decode_mode_spec_buffer, which is not resized following
153 the change of the frame dimensions from the initial 10x10.
154
155 * w32term.h (w32_initialize_display_info): Adjust prototype.
156
157 * term.c (init_tty): Take dimensions of the frame from the values
158 returned by initialize_w32_display.
159
160 * Makefile.in (GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): New variables.
161 (ALL_CFLAGS): Add $(GFILENOTIFY_CFLAGS).
162 (LIBES): Add $(GFILENOTIFY_LIBS).
163
164 * w32inevt.c (handle_file_notifications): Add dummy implementation
165 for !HAVE_W32NOTIFY.
166
167 * w32term.c: Wrap code with HAVE_W32NOTIFY.
168
169 2013-06-03 Jan Djärv <jan.h.d@swipnet.se>
170
171 * xgselect.c: Replace #if defined ... with #ifdef HAVE_GLIB.
172
173 * process.c (wait_reading_process_output): Call xg_select if HAVE_GLIB.
174
175 * Makefile.in (XGSELOBJ): New, xgselect.o if GLib is used, or empty.
176
177 2013-06-03 Paul Eggert <eggert@cs.ucla.edu>
178
179 Fix minor problems found by static checking.
180 * data.c (pure_write_error):
181 Use xsignal2, not Fsignal, as Fsignal might return.
182 * eval.c (set_backtrace_debug_on_exit): Now static.
183 (backtrace_p, backtrace_top, backtrace_next, record_in_backtrace):
184 No longer inline. EXTERN_INLINE is needed only for functions
185 defined in .h files. Reindent function header as per GNU style.
186 (backtrace_p, backtrace_top, backtrace_next):
187 Mark EXTERNALLY_VISIBLE so they don't get optimized away by the
188 compiler or linker. Add extern decls to pacify gcc -Wall.
189 * frame.c, frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
190 Now static.
191 * frame.c (free_monitors): Define only on platforms that need it.
192 * nsterm.m (ns_term_init):
193 * process.c (catch_child_signal):
194 Don't worry about whether SIGCHLD is defined, as SIGCHLD is
195 defined on all porting targets these days.
196 * process.c, process.h (catch_child_signal):
197 Make it extern only if NS_IMPL_GNUSTEP is defined.
198
199 2013-06-03 Eli Zaretskii <eliz@gnu.org>
200
201 * w32.c (gettimeofday): Make the signature identical to prototype
202 in nt/inc/sys/time.h.
203
204 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
205
206 * eval.c (backtrace_p, backtrace_top, backtrace_next): Export them to
207 .gdbinit.
208
209 * keyboard.c (safe_run_hooks_error): Improve error message.
210
211 * data.c (pure_write_error): Add `object' argument.
212 * puresize.h (CHECK_IMPURE): Use it.
213
214 2013-06-03 Michael Albinus <michael.albinus@gmx.de>
215
216 * Makefile.in (NOTIFY_OBJ): New variable.
217 (base_obj): Replace inotify.o by $(NOTIFY_OBJ).
218
219 * emacs.c (main): Use HAVE_W32NOTIFY to wrap respective code.
220 Call syms_of_gfilenotify.
221
222 * gfilenotify.c: New file.
223
224 * keyboard.c (Qfile_notify): New variable. Replaces Qfile_inotify
225 and Qfile_w32notify.
226 (top): Wrap respective code by HAVE_GFILENOTIFY, HAVE_INOTIFY,
227 HAVE_W32NOTIFY and USE_FILE_NOTIFY.
228
229 * lisp.h: Declare syms_of_gfilenotify.
230
231 * termhooks.h (e): Wrap enum by USE_FILE_NOTIFY.
232
233 2013-06-03 Stefan Monnier <monnier@iro.umontreal.ca>
234
235 Merge the specpdl and backtrace stacks. Make the structure of the
236 specpdl entries more obvious via a tagged union of structs.
237 * lisp.h (BITS_PER_PTRDIFF_T): New constant.
238 (enum specbind_tag): New enum.
239 (struct specbinding): Make it a tagged union of structs.
240 Add a case for backtrace records.
241 (specpdl_symbol, specpdl_old_value, specpdl_where, specpdl_arg)
242 (specpdl_func, backtrace_function, backtrace_nargs, backtrace_args)
243 (backtrace_debug_on_exit): New accessors.
244 (struct backtrace): Remove.
245 (struct catchtag): Remove backlist field.
246 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
247 Move to eval.c.
248 (Flocal_variable_p): Speed up the common case where the binding is
249 already loaded.
250 * eval.c (backtrace_list): Remove.
251 (set_specpdl_symbol, set_specpdl_old_value): Remove.
252 (set_backtrace_args, set_backtrace_nargs)
253 (set_backtrace_debug_on_exit, backtrace_p, backtrace_top)
254 (backtrace_next): New functions.
255 (Fdefvaralias, Fdefvar): Adjust to new specpdl format.
256 (unwind_to_catch, internal_lisp_condition_case)
257 (internal_condition_case, internal_condition_case_1)
258 (internal_condition_case_2, internal_condition_case_n): Don't bother
259 with backtrace_list any more.
260 (Fsignal): Adjust to new backtrace format.
261 (grow_specpdl): Move up.
262 (record_in_backtrace): New function.
263 (eval_sub, Ffuncall): Use it.
264 (apply_lambda): Adjust to new backtrace format.
265 (let_shadows_buffer_binding_p, let_shadows_global_binding_p): Move from
266 data.c.
267 (specbind): Adjust to new specpdl format. Simplify.
268 (record_unwind_protect, unbind_to): Adjust to new specpdl format.
269 (Fbacktrace_debug, Fbacktrace, Fbacktrace_frame): Adjust to new
270 backtrace format.
271 (mark_backtrace): Remove.
272 (mark_specpdl, get_backtrace, backtrace_top_function): New functions.
273 * xdisp.c (redisplay_internal): Use record_in_backtrace.
274 * alloc.c (Fgarbage_collect): Use record_in_backtrace.
275 Use mark_specpdl.
276 * profiler.c (record_backtrace): Use get_backtrace.
277 (handle_profiler_signal): Use backtrace_top_function.
278 * .gdbinit (xbacktrace, hookpost-backtrace): Use new backtrace
279 accessor functions.
280
281 2013-06-02 Jan Djärv <jan.h.d@swipnet.se>
282
283 * process.h (catch_child_signal): Declare.
284
285 * process.c (catch_child_signal): New function.
286 (init_process_emacs): Call it.
287
288 * nsterm.m: Include process.h if NS_IMPL_GNUSTEP.
289 (ns_menu_bar_is_hidden, menu_will_open_state): Define only if
290 NS_IMPL_COCOA.
291 (x_set_cursor_type): Remove declaration.
292 (ns_update_begin): Only use r and bp if NS_IMPL_COCOA.
293 (ns_update_end, ns_focus, ns_unfocus): Remove GNUStep specific code.
294 (x_set_window_size): Remove 3 pixels from toolbar if NS_IMPL_GNUSTEP.
295 (ns_get_color): Use F suffix on float.
296 (ns_color_to_lisp, ns_query_color): Use EmacsCGFloat.
297 (ns_get_rgb_color): Remove.
298 (x_set_frame_alpha): Move view inside NS_IMPL_COCOA.
299 (note_mouse_movement): x and y are CGFloat.
300 (ns_draw_fringe_bitmap): Remove unused rowY.
301 Change #if to COCOA && >= 10_6.
302 (ns_draw_window_cursor): Remove unused overspill.
303 (ns_draw_underwave): width and x are EamcsCGFloat.
304 (ns_draw_box): thickness is CGFloat.
305 (ns_dumpglyphs_image): Change #if to COCOA && >= 10_6.
306 (ns_send_appdefined): When NS_IMPL_GNUSTEP, redirect to main thread
307 if not in main thread.
308 (ns_get_pending_menu_title, ns_check_menu_open)
309 (ns_check_pending_open_menu): Put inside #if COCOA && >= 10_5.
310 (ns_term_init): Call catch_child_signal if NS_IMPL_GNUSTEP && SIGCHLD.
311 (sendFromMainThread:): New method.
312 (changeFont:): size is CGFloat.
313 (keyDown:): Check for Delete when NS_IMPL_GNUSTEP.
314 Disable warning about permanent text.
315 (characterIndexForPoint:): Adjust return type depending on GNUStep
316 version.
317 (mouseDown:): delta is CGFloat.
318 (updateFrameSize): Remove unised variable f.
319 (initFrameFromEmacs): Move toggleButton inside NS_IMPL_COCOA.
320 Cast float to EmacsCGFloat.
321 (windowWillUseStandardFrame:defaultFrame:): Set maximized_height
322 also to -1 when restoring.
323 (windowDidExitFullScreen:): Put call to updateCollectionBehaviour
324 inside NS_IMPL_COCOA.
325 (toggleFullScreen:): Put call to toggleFullScreen inside
326 NS_IMPL_COCOA. Cast float to EmacsCGFloat.
327 (setPosition:portion:whole:): por is CGFloat.
328 (getMouseMotionPart:window:x:y:): Add F suffix to float.
329 (mouseDown:): Use CGFloat.
330 (mouseDragged:): Remove unised variable edge.
331 (EmacsDocument): Implement for NS_IMPL_GNUSTEP.
332
333 * nsterm.h (EmacsCGFloat): Typedef for OSX and GNUStep when the size
334 of CGFloat differs.
335 (EmacsApp): New variable nextappdefined. Declare sendFromMainThread
336 when NS_IMPL_GNUSTEP.
337 (EmacsDocument): Declare when NS_IMPL_GNUSTEP.
338 (EmacsView): Remove unlockFocusNeedsFlush, add windowDidMove.
339 (EmacsToolbar): Add clearAll. Add tag argument to
340 addDisplayItemWithImage.
341 (EmacsSavePanel, EmacsOpenPanel): Remove getFilename and getDirectory.
342
343 * nsselect.m (ns_get_local_selection): Remove unused variable type.
344
345 * nsmenu.m (ns_update_menubar): Make static.
346 (x_activate_menubar): Surround with ifdef NS_IMPL_COCOA
347 (fillWithWidgetValue:): Add cast to SEL for setAction.
348 (addSubmenuWithTitle:forFrame:): Add cast to SEL for action.
349 (update_frame_tool_bar): Update code for GNUStep.
350 (clearAll): New method.
351 (addDisplayItemWithImage:idx:tag:helpText:enabled:): Handle new tag
352 argument. Call insertItemWithItemIdentifier when NS_IMPL_GNUSTEP.
353 Move identifierToItem setObject and activeIdentifiers addObject before
354 call to insertItemWithItemIdentifier.
355 (validateVisibleItems): Fix indentation.
356 (toolbarAllowedItemIdentifiers:): Return activeIdentifiers.
357 (initWithContentRect:styleMask:backing:defer:): Add ClosableWindow and
358 UtilityWindow to aStyle, remove call to setStyleMask.
359
360 * nsimage.m (setXBMColor:, getPixelAtX:Y:): Use EmacsCGFloat.
361
362 * nsfont.m (ns_attribute_fvalue, ns_spec_to_descriptor)
363 (ns_charset_covers, ns_get_covering_families, nsfont_open):
364 Use F suffix on floats.
365 (ns_char_width): Returns CGFloat.
366 (ns_ascii_average_width): w is CGFloat instead of float.
367 (nsfont_draw): cbuf and c are unsigned. Cast to char* in call to
368 DPSxshow.
369 (ns_glyph_metrics): CGFloat instead of float.
370
371 * nsfns.m (x_set_foreground_color, x_set_background_color):
372 Use EmacsCGFloat.
373 (ns_implicitly_set_icon_type, Fx_create_frame): Make static,
374 remove unused variables.
375 (Fns_read_file_name): Keep track if panel is for save.
376 Use ns_filename_from_panel/ns_directory_from_panel.
377 (Fns_list_services): delegate only used for COCOA.
378 (Fns_convert_utf8_nfd_to_nfc): Remove warning for GNUStep.
379 Just return the input if GNUStep.
380 (x_screen_planes): Remove.
381 (Fxw_color_values): Use EmacsCGFloat
382 (Fns_display_monitor_attributes_list): Only get screen number for
383 Cocoa.
384 (getDirectory, getFilename): Removed from EmacsOpenPanel and
385 EmacsSavePanel.
386 (EmacsOpenPanel:ok:): Use ns_filename_from_panel and
387 ns_directory_from_panel.
388
389 2013-06-01 Paul Eggert <eggert@cs.ucla.edu>
390
391 * process.c (handle_child_signal): Also use WCONTINUED.
392 This is so that list-processes doesn't mistakenly list the process
393 as stopped, when the process has actually been continued and is
394 now running.
395
396 2013-05-31 Paul Eggert <eggert@cs.ucla.edu>
397
398 Don't let D-bus autolaunch mess up SIGCHLD handling (Bug#14474).
399 * xterm.c (x_term_init): Inhibit D-Bus autolaunch if D-Bus is
400 not already configured.
401
402 * fileio.c (Finsert_file_contents): Remove unused local (Bug#8447).
403
404 2013-05-29 Eli Zaretskii <eliz@gnu.org>
405
406 * Makefile.in (mostlyclean): Remove *.res files.
407
408 2013-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
409
410 * fileio.c (Finsert_file_contents): Preserve undo info when reverting
411 a buffer (bug#8447).
412
413 2013-05-27 Eli Zaretskii <eliz@gnu.org>
414
415 * xdisp.c (pos_visible_p): When CHARPOS is displayed frrom a
416 display vector, and we backtrack, handle the case that the
417 previous character position is also displayed from a display
418 vector or covered by a display string or image. (Bug#14476)
419
420 2013-05-25 Jan Djärv <jan.h.d@swipnet.se>
421
422 * xfns.c (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Remove.
423 (struct MonitorInfo, free_monitors): Remove.
424 (x_make_monitor_attribute_list): Call make_monitor_attribute_list.
425 (Fx_display_monitor_attributes_list): Call make_monitor_attribute_list.
426 (syms_of_xfns): Remove DEFSYM for Qgeometry, Qworkarea, Qmm_size,
427 Qframes, Qsource.
428
429 * nsfns.m (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Remove.
430 (struct MonitorInfo, free_monitors): Remove.
431 (ns_screen_name): Make static.
432 (ns_make_monitor_attribute_list): Call make_monitor_attribute_list.
433 (syms_of_nsfns): Remove DEFSYM for Qgeometry, Qworkarea, Qmm_size,
434 Qframes, Qsource.
435
436 * frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Declare.
437 (struct MonitorInfo): New struct.
438 (free_monitors, make_monitor_attribute_list): Declare.
439
440 * frame.c (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
441 New Lisp_Object:s.
442 (free_monitors, make_monitor_attribute_list): New functions.
443 (syms_of_frame): DEFSYM Qgeometry, Qworkarea, Qmm_size, Qframes,
444 Qsource.
445
446 2013-05-25 Xue Fuqiao <xfq.free@gmail.com>
447
448 * callproc.c (call_process): Refine the doc string. (Bug#14045)
449
450 2013-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
451
452 * keyboard.c: Apply keyboard decoding only to events that come directly
453 from the tty, not from unread-command-events (bug#14368).
454 (read_event_from_main_queue): New function, extracted from read_char).
455 (read_decoded_char): Remove.
456 (read_decoded_event_from_main_queue): New function to replace it.
457 (read_char): Use it.
458 (read_key_sequence): Use read_char rather than read_decoded_char.
459
460 * keyboard.c (read_decoded_char): Don't decode under w32 (bug#14403).
461
462 2013-05-22 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
463
464 * casetab.c (init_casetab_once): Fix last change (bug#14424).
465
466 2013-05-22 Kenichi Handa <handa@gnu.org>
467
468 The following changes are to fix the setting of
469 buffer-file-coding-system on, for instance, C-x RET c unix RET
470 _FILE_OF_DOS_EOL_TYPE_ RET.
471
472 * coding.h (struct coding_system): New member detected_utf8_chars.
473
474 * coding.c (detect_coding_utf_8): Count characters and check EOL
475 format. Include CATEGORY_MASK_UTF_8_AUTO in detect_info->found if
476 BOM is there.
477 (setup_coding_system): Do not initialize coding->head_ascii.
478 (check_ascii): Do not set coding->eol_seen but update it. Do not
479 call adjust_coding_eol_type here.
480 (detect_coding): Fix detection of BOM for utf-8 and utf-16.
481 If the eol-type of CODING is already specified, adjust the eol type
482 of the found coding-system.
483 (decode_coding_gap): Cancel previous change. Utilize the
484 character numbers counted by detect_coding_utf_8. Fix detection
485 of BOM for utf-8.
486
487 2013-05-21 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
488
489 * search.c (looking_at_1): Only set last_thing_searched if the match
490 changed the match-data (bug#14281).
491
492 2013-05-21 Dmitry Antipov <dmantipov@yandex.ru>
493
494 * xdisp.c (reseat_at_previous_visible_line_start):
495 Already declared in dispextern.h, so remove it here.
496 (move_it_vertically_backward): Likewise.
497
498 2013-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
499
500 * xfns.c (check_x_display_info): Don't use XINT for terminal object.
501 (Fx_display_pixel_width, Fx_display_pixel_height)
502 (Fx_display_mm_width, Fx_display_mm_height):
503 Mention `display-monitor-attributes-list' in docstrings.
504
505 * nsfns.m (ns_get_screen): Remove function. All uses removed.
506 (check_ns_display_info): Sync with check_x_display_info in xfns.c.
507 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
508 (Fx_display_screens, Fx_display_mm_width, Fx_display_mm_height)
509 (Fx_display_backing_store, Fx_display_visual_class)
510 (Fx_display_save_under, Fx_close_connection, Fxw_display_color_p)
511 (Fx_display_grayscale_p, Fx_display_pixel_width)
512 (Fx_display_pixel_height, Fx_display_planes)
513 (Fx_display_color_cells): Sync args and docstrings with xfns.c.
514 (Fx_display_screens): Don't confuse X11 screens with NS screens.
515 (Fx_display_mm_width, Fx_display_mm_height)
516 (Fx_display_pixel_width, Fx_display_pixel_width): Return width or
517 height for all physical monitors as in X11.
518
519 * nsterm.m (x_display_pixel_width, x_display_pixel_height):
520 Return pixel width or height for all physical monitors as in X11.
521
522 2013-05-18 Paul Eggert <eggert@cs.ucla.edu>
523
524 Port --enable-gcc-warnings to clang.
525 * bytecode.c (exec_byte_code):
526 * regex.c:
527 Redo diagnostic pragmas to pacify clang, too.
528 * dbusbind.c (xd_retrieve_arg): Do not use uninitialized variable.
529 * editfns.c (Fencode_time):
530 * fileio.c (file_accessible_directory_p):
531 * font.c (font_unparse_xlfd):
532 Use '&"string"[index]' instead of '"string" + (index)'.
533 * undo.c (user_error): Remove; unused.
534
535 2013-05-16 Eli Zaretskii <eliz@gnu.org>
536
537 * insdel.c (insert_1_both): Document the arguments, instead of
538 referring to insert_1, which no longer exists.
539
540 * xdisp.c (message_dolog): If the *Messages* buffer is shown in
541 some window, increment windows_or_buffers_changed, so that
542 *Messages* display in that window is updated. (Bug#14408)
543
544 * w32.c: Include epaths.h.
545 (init_environment): Use cmdproxy.exe without leading directories.
546 Support emacs.exe in src; point SHELL to cmdproxy in ../nt in that
547 case.
548 (gettimeofday): Adjust signature and return value to Posix
549 expectations.
550
551 * unexw32.c (open_output_file): Delete the existing emacs.exe
552 before creating it, to break the hard link to the versioned
553 executable.
554
555 * Makefile.in (EMACS_MANIFEST, CM_OBJ, TEMACS_POST_LINK)
556 (ADDSECTION, EMACS_HEAPSIZE, MINGW_TEMACS_POST_LINK)
557 (FIRSTFILE_OBJ): New variables.
558 (W32_RES): Rename to EMACSRES. All users changed.
559 (base_obj): Use $(CM_OBJ).
560 (ALLOBJS): Use $(FIRSTFILE_OBJ).
561 (emacs$(EXEEXT)): Depend on $(ADDSECTION).
562 (temacs$(EXEEXT)): Use $(TEMACS_POST_LINK), and move
563 $(W32_RES_LINK) before $(LIBES).
564 (emacs.res): Depend on $(EMACS_MANIFEST). Put emacs.rc in nt.
565
566 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
567
568 * makefile.w32-in (DOC): Use just "DOC".
569
570 * Makefile.in (bootstrap-clean): DOC-* doesn't exist any more.
571
572 * process.c: Export default filters and sentinels to Elisp.
573 (Qinternal_default_process_sentinel, Qinternal_default_process_filter):
574 New constants.
575 (pset_filter, pset_sentinel, make_process, Fset_process_filter)
576 (Fset_process_sentinel, Fformat_network_address):
577 Default to them instead of nil.
578 (server_accept_connection): Sentinels can't be nil any more.
579 (read_and_dispose_of_process_output): New function, extracted from
580 read_process_output.
581 (read_process_output): Use it; filters can't be nil.
582 (Finternal_default_process_filter): New function, extracted from
583 read_process_output.
584 (exec_sentinel_unwind): Remove function.
585 (exec_sentinel): Don't zilch sentinel while running.
586 (status_notify): Sentinels can't be nil.
587 (Finternal_default_process_sentinel): New function extracted from
588 status_notify.
589 (setup_process_coding_systems): Default filter is not nil any more.
590 (syms_of_process): Export new Elisp functions and initialize
591 new constants.
592 * lisp.h (make_lisp_proc): New function.
593
594 2013-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
595
596 * regex.c (regex_compile) [\=, \>, \<]: Don't forget to set laststart.
597
598 2013-05-14 Eli Zaretskii <eliz@gnu.org>
599
600 * w32fns.c (w32_wnd_proc): Don't call WINDOW_HEADER_LINE_HEIGHT
601 unless we know that the window w is a leaf window.
602 Another attempt at solving bug#14062.
603
604 2013-05-14 Jan Djärv <jan.h.d@swipnet.se>
605
606 * nsfont.m (ns_spec_to_descriptor): Retain and autorelease
607 fdesc (Bug#14375).
608
609 2013-05-12 Paul Eggert <eggert@cs.ucla.edu>
610
611 * image.c (gif_load): Check that subimages fit (Bug#14345).
612
613 2013-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
614
615 * lread.c (skip_dyn_eof): New function.
616 (read1): Use it to skip the end of a file in response to #@00.
617
618 * doc.c (get_doc_string): Slightly relax the sanity checking.
619
620 2013-05-09 Jan Djärv <jan.h.d@swipnet.se>
621
622 * nsfns.m: Include IOGraphicsLib.h if Cocoa.
623 (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Declare.
624 (MonitorInfo): New struct.
625 (free_monitors, ns_screen_name, ns_make_monitor_attribute_list)
626 (Fns_display_monitor_attributes_list): New functions.
627 (display-usable-bounds): Remove.
628 (syms_of_nsfns): DEFSYM Qgeometry, Qworkarea, Qmm_size, Qframes and
629 Qsource.
630
631 2013-05-09 Paul Eggert <eggert@cs.ucla.edu>
632
633 * xterm.h (GTK_PREREQ): Remove, replacing with GTK_CHECK_VERSION.
634 (GTK_CHECK_VERSION): New macro, if not already defined.
635 All uses of GTK_PREREQ, GTK_MAJOR_VERSION, etc.
636 replaced by GTK_CHECK_VERSION.
637
638 2013-05-08 Paul Eggert <eggert@cs.ucla.edu>
639
640 * xterm.h (GTK_PREREQ): New macro.
641 All simple uses of GTK_MAJOR_VERSION and GTK_MINOR_VERSION changed
642 to use this macro instead, for consistency and clarity.
643
644 2013-05-08 Eli Zaretskii <eliz@gnu.org>
645
646 * xdisp.c (row_for_charpos_p): New function, with code of
647 cursor_row_p, but accepts an additional argument CHARPOS instead
648 of using a hardcoded PT.
649 (cursor_row_p): Call row_for_charpos_p with 2nd argument PT.
650 (row_containing_pos): Call row_for_charpos_p instead of partially
651 doing the same. Fixes cursor positioning under longlines-mode
652 when longlines-show-effect includes more than one newline, when
653 moving the cursor vertically up.
654
655 2013-05-08 Juanma Barranquero <lekktu@gmail.com>
656
657 * makefile.w32-in (ACL_H): New macro.
658 ($(BLD)/fileio.$(O)): Update dependencies.
659
660 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
661
662 Use Gnulib ACL implementation, for benefit of Solaris etc. (Bug#14295)
663 * Makefile.in (LIB_ACL): New macro.
664 (LIBACL_LIBS): Remove.
665 (LIBES): Use LIB_ACL, not LIBACL_LIBS.
666 * fileio.c: Include <acl.h>.
667 Use HAVE_ACL_SET_FILE rather than HAVE_POSIX_ACL.
668 (ACL_NOT_WELL_SUPPORTED): Remove. All uses replaced by
669 !acl_errno_valid.
670 (Fcopy_file) [!WINDOWSNT]: Use qcopy_acl instead of rolling
671 it ourselves.
672
673 * unexelf.c: Don't assume ElfW (Half) fits in int.
674 (entry_address, find_section, unexec): Use ptrdiff_t, not int,
675 when dealing with ElfW (Half) values, since they can exceed 2**31
676 on 64-bit OpenBSD hosts. Problem reported privately by Han Boetes.
677 (entry_address): Omit unused NUM arg. All uses changed.
678
679 2013-05-07 Juri Linkov <juri@jurta.org>
680
681 * callint.c (Fcall_interactively): Set `visargs[i]' for code 'n'
682 to the string converted from number with `Fnumber_to_string'.
683 (Bug#14254)
684
685 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
686
687 * xfns.c (x_get_net_workarea): Define only if !GTK || GTK<3.4.
688 This fixes a problem introduced by my previous change.
689
690 2013-05-07 Glenn Morris <rgm@gnu.org>
691
692 * lread.c (readchar): Don't read from a dead buffer. (Bug#14280)
693
694 2013-05-07 Jan Djärv <jan.h.d@swipnet.se>
695
696 * xfns.c: Move misplaced ifndef USE_GTK from previous checkin.
697
698 2013-05-07 Paul Eggert <eggert@cs.ucla.edu>
699
700 Static checking by GCC 4.8.0.
701 * xfns.c (x_get_net_workarea, struct MonitorInfo, free_monitors)
702 (x_get_monitor_for_frame, x_make_monitor_attribute_list)
703 (x_get_monitor_attributes_fallback)
704 (x_get_monitor_attributes_xinerama)
705 (x_get_monitor_attributes_xrandr, x_get_monitor_attributes):
706 Define only if USE_GTK.
707 (free_monitors): Define only if HAVE_XINERAMA || HAVE_XRANDR.
708 (x_get_monitor_attributes_fallback): Omit unused locals.
709 (x_get_monitor_attributes_xinerama, Fx_display_monitor_attributes_list):
710 Use double, not float, to avoid mixed-mode floating point arithmetic.
711
712 2013-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
713 Jan Djärv <jan.h.d@swipnet.se>
714
715 * Makefile.in (XRANDR_LIBS, XRANDR_CFLAGS, XINERAMA_LIBS)
716 (XINERAMA_CFLAGS): New macros.
717 (ALL_CFLAGS, LIBES): Use them.
718
719 * xfns.c: Include <X11/extensions/Xrandr.h> if HAVE_XRANDR, and
720 include <X11/extensions/Xinerama.h> if HAVE_XINERAMA.
721 (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): New variables.
722 (syms_of_xfns): DEFSYM them.
723 (struct MonitorInfo): New struct.
724 (x_get_net_workarea, free_monitors, x_get_monitor_for_frame)
725 (x_make_monitor_attribute_list, x_get_monitor_attributes_fallback)
726 (x_get_monitor_attributes_xrandr, x_get_monitor_attributes)
727 (x_get_monitor_attributes_xinerama): New functions.
728 (Fx_display_monitor_attributes_list): New primitive.
729 (syms_of_xfns): Defsubr it.
730
731 * xterm.h (x_display_info): Add Xatom_net_workarea and
732 Xatom_net_current_desktop.
733
734 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_net_workarea
735 and dpyinfo->Xatom_net_current_desktop.
736
737 2013-05-06 Eli Zaretskii <eliz@gnu.org>
738
739 * xdisp.c (pos_visible_p): Use the special code for finding the
740 beginning of a display property or overlay for any "replacing"
741 display property, not just for display strings. This solves
742 incorrect reporting of position by posn-at-point. (Bug#14241)
743
744 2013-05-06 Paul Eggert <eggert@cs.ucla.edu>
745
746 * unexelf.c: Fix some 32-bit integer problems, notably when debugging.
747 Include <limits.h>, <stdbool.h>, <intprops.h>, <verify.h>.
748 Verify that ElfW (Half) fits in int.
749 (fatal): Use same signature as lisp.h.
750 (UNEXELF_DEBUG): New macro, replacing DEBUG, so that people can
751 configure and build with -DUNEXELF_DEBUG without worrying about
752 other modules that use DEBUG.
753 (DEBUG_LOG) [UNEXELF_DEBUG]: New macro. All debug code that prints
754 possibly-wide integers now uses it instead of plain fprintf.
755 (entry_address): New function, which avoids problems with 32-bit
756 overflow on 64-bit hosts.
757 (OLD_SECTION_H, NEW_SECTION_H, NEW_PROGRAM_H): Use it.
758 (round_up): Don't assume the remainder fits in int.
759 (find_section): Use bool for boolean. Simplify debug code.
760 (unexec): Don't assume file sizes fit in int or size_t.
761 Omit unnecessary trailing newline in 'fatal' format.
762 Use strerror rather than outputting decimal error number.
763 Remove unused code when emacs is not defined;
764 this file relies on Emacs now.
765 Don't assume e_phnum and e_shnum are positive.
766
767 * regex.c: Fix problems when DEBUG is defined.
768 (extract_number, extract_number_and_incr): Define regardless of
769 whether DEBUG is defined; that's simpler and makes the code less
770 likely to go stale in the normal case when DEBUG is not defined.
771 Return int rather than taking an int * arg. All callers changed.
772 (DEBUG_PRINT1, DEBUG_PRINT2, DEBUG_PRINT3, DEBUG_PRINT4):
773 Remove, replacing with ...
774 (DEBUG_PRINT): New macro. All callers changed.
775 (DEBUG_COMPILES_ARGUMENTS): New macro.
776 (print_fastmap, print_partial_compiled_pattern) [DEBUG]:
777 (print_compiled_pattern, print_double_string) [DEBUG]:
778 Use prototype rather than old-style definition.
779 (print_partial_compiled_pattern, print_compiled_pattern) [DEBUG]:
780 (ENSURE_FAIL_STACK, PUSH_FAILURE_REG) [DEBUG]:
781 (POP_FAILURE_REG_OR_COUNT, PUSH_FAILURE_POINT) [DEBUG]:
782 (POP_FAILURE_POINT, re_match_2_internal) [DEBUG]:
783 Don't assume ptrdiff_t, size_t, and long are the same width as int.
784 (POINTER_TO_OFFSET): Return ptrdiff_t, not regoff_t.
785 This matters only when DEBUG is defined.
786
787 2013-05-05 Eli Zaretskii <eliz@gnu.org>
788
789 * xdisp.c (set_iterator_to_next): Set the
790 ignore_overlay_strings_at_pos_p flag only if we are _really_
791 iterating over an overlay string, as indicated by the
792 current.overlay_string_index member. (Bug#14306)
793
794 2013-05-05 Jan Djärv <jan.h.d@swipnet.se>
795
796 * nsmenu.m (ns_update_menubar): Move initialization of submenuTitle
797 to where it is used, to avoid autorelease issues (Bug#14050).
798
799 2013-05-05 Paul Eggert <eggert@cs.ucla.edu>
800
801 `write-region-inhibit-fsync' defaults to noninteractive (Bug#14273).
802 * fileio.c (syms_of_fileio): Implement this.
803 * filelock.c (create_lock_file): If symbolic links don't work, so
804 we use a regular file as a lock file, do not fsync the lock file;
805 it's not needed.
806
807 2013-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
808
809 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Move to Elisp.
810 (syms_of_minibuf): Adjust accodingly.
811 * lread.c (Fread):
812 * callint.c (Fcall_interactively): Adjust calls accordingly.
813
814 2013-05-04 Eli Zaretskii <eliz@gnu.org>
815
816 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P): Verify that
817 w->contents is a buffer before computing everything else.
818 Use parentheses to disambiguate last part of the condition.
819
820 * w32fns.c (w32_wnd_proc): Remove temporary code used to trap
821 assertion violations. (Bug#14062)
822
823 2013-05-01 David Reitter <david.reitter@gmail.com>
824
825 * nsfns.m (ns_tooltip): Initialize.
826
827 2013-04-28 Eli Zaretskii <eliz@gnu.org>
828
829 * coding.c (decode_coding_gap): Don't remove the character before
830 a newline unless it's a CR character. (Bug#14287)
831
832 2013-04-28 Dan Nicolaescu <dann@gnu.org>
833
834 * dispextern.h (struct face): Move enum face_underline_type
835 earlier so that bitfields can be in the same word.
836
837 2013-04-28 Jan Djärv <jan.h.d@swipnet.se>
838
839 * nsfns.m (handlePanelKeys): New function.
840 (EmacsOpenPanel:performKeyEquivalent:)
841 (EmacsSavePanel:performKeyEquivalent:): Call handlePanelKeys to handle
842 arrows/function/control and copy/paste keys (Bug#14296).
843
844 2013-04-27 Juri Linkov <juri@jurta.org>
845
846 * callint.c (Fcall_interactively): Call `Qread_number' for
847 interactive code letter `n' instead of using duplicate code.
848 (Bug#14254)
849
850 2013-04-27 Paul Eggert <eggert@cs.ucla.edu>
851
852 * systime.h (make_timeval): Declare as 'const'.
853
854 2013-04-27 Kenichi Handa <handa@gnu.org>
855
856 * font.c (font_open_entity): Always open a font of manageable
857 size.
858
859 2013-04-26 Paul Eggert <eggert@cs.ucla.edu>
860
861 Port better to AIX (Bug#14258).
862 * lisp.h (ENUM_BF) [__IBMC__]: Make it 'unsigned int' here, too,
863 to pacify AIX xlc.
864
865 2013-04-24 Kenichi Handa <handa@gnu.org>
866
867 * coding.c (decode_coding_iso_2022): When an invalid escape
868 sequence is encountered, reset the invocation and designation
869 status to the safest one.
870
871 2013-04-22 Paul Eggert <eggert@cs.ucla.edu>
872
873 * Makefile.in (bootstrap-clean): Remove stamp-h1 too.
874 Without this fix, "make distclean" leaves stamp-h1 behind.
875
876 2013-04-20 Erik Charlebois <erikcharlebois@gmail.com>
877
878 * w32fns.c (w32_fullscreen_rect): New function to compute the
879 window rectangle for the given fullscreen mode.
880 (w32_wnd_proc): When in a fullscreen mode, WM_WINDOWPOSCHANGING no
881 longer tunes the window size. This keeps the window's edges flush
882 with the screen and allows the taskbar to hide itself in fullboth.
883
884 * w32term.c (w32fullscreen_hook): 'fullboth' now shows without
885 window decorations and uses the entire screen.
886
887 * w32term.h (w32_fullscreen_rect) Add prototype.
888 (struct w32_output): Replace normal_width, normal_height,
889 normal_top, and normal_left members with a single normal_placement
890 struct.
891 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP):
892 Remove macros.
893 (FRAME_NORMAL_PLACEMENT): New macro.
894
895 2013-04-16 Juanma Barranquero <lekktu@gmail.com>
896
897 * minibuf.c (Ftest_completion): Silence compiler warning.
898
899 2013-04-15 Eli Zaretskii <eliz@gnu.org>
900
901 * w32fns.c (w32_wnd_proc): Add more assertions to investigate
902 bug#14062.
903
904 * frame.h (WINDOW_FRAME): Protect macro and its argument with
905 parentheses.
906
907 * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
908 (CURRENT_HEADER_LINE_HEIGHT, WINDOW_WANTS_MODELINE_P)
909 (WINDOW_WANTS_HEADER_LINE_P): Protect macro arguments with
910 parentheses where appropriate.
911
912 2013-04-14 Paul Eggert <eggert@cs.ucla.edu>
913
914 * keyboard.c (timer_start_idle): Remove no-longer-used local.
915
916 2013-04-14 Eli Zaretskii <eliz@gnu.org>
917
918 * buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>
919 <left-fringe-width, right-fringe-width, fringes-outside-margins>:
920 Mention in the doc string that setting these variables takes
921 effect only after a call to set-window-buffer. (Bug#14200)
922
923 2013-04-13 Eli Zaretskii <eliz@gnu.org>
924
925 * indent.c (Fvertical_motion): Don't consider display strings on
926 overlay strings as display strings on the buffer position we
927 started from. This prevents vertical cursor motion from jumping
928 more than one line when there's an overlay string with a display
929 property at end of line.
930 Reported by Karl Chen <Karl.Chen@quarl.org> in
931 http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00362.html.
932
933 2013-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
934
935 * window.c (select_window): `record_buffer' even if window is
936 already selected (bug#14191).
937
938 2013-04-11 Eli Zaretskii <eliz@gnu.org>
939
940 * window.c (Fwindow_end): Test more flags, including the buffer's
941 last_overlay_modified flag, to determine whether the window's
942 display is really up-to-date. Prevents the function from
943 returning a stale value. (Bug#14170)
944 (Fwindow_line_height): Fix the test for up-to-date-ness of the
945 current matrix.
946
947 2013-04-10 Eli Zaretskii <eliz@gnu.org>
948
949 * frame.c (do_switch_frame): Mark the TTY frame we switch to as
950 garbaged only if it is not already the top frame on its TTY.
951 This prevents flickering due to constant redrawing of TTY frames when
952 there are GUI frames open in the same session. (Bug#13864)
953
954 2013-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
955
956 * keyboard.c (timer_start_idle): Call internal-timer-start-idle instead
957 of marking the idle timers directly.
958
959 2013-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
960
961 * minibuf.c (Ftest_completion): Ignore non-string/symbol keys in hash
962 tables (bug#14054).
963
964 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
965
966 * window.c (select_window): Don't record_buffer while the invariant is
967 temporarily broken (bug#14161).
968
969 * fns.c (Fdelq): Don't assume !NILP => CONSP.
970
971 2013-04-07 Eli Zaretskii <eliz@gnu.org>
972
973 * fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
974
975 2013-04-07 Romain Francoise <romain@orebokech.com>
976
977 Ignore additional platform-specific ACL errors (Bug#13702).
978 * fileio.c (ACL_NOT_WELL_SUPPORTED): New macro copied from gnulib.
979 (Fcopy_file, Fset_file_acl) [HAVE_POSIX_ACL]: Use it.
980
981 2013-03-31 Jan Djärv <jan.h.d@swipnet.se>
982
983 * nsterm.m (ns_mouse_position): Use NS_FRAME_P instead of checking
984 f->output_data.ns.
985
986 2013-04-07 Paul Eggert <eggert@cs.ucla.edu>
987
988 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
989 This bug was introduced by my 2013-02-25 change that simplified
990 data_start configuration. Without this change, on GNU/Linux
991 an Emacs configured with --enable-profiling fails immediately
992 due to a profiler signal.
993 * Makefile.in: Compile with $(PROFILING_CFLAGS), but do not link
994 with these flags. On platforms where special flags are needed
995 when linking temacs, the flags are now in LD_SWITCH_SYSTEM_TEMACS.
996 (ALL_CFLAGS): Remove $(PROFILING_CFLAGS).
997 (.c.o, .m.o): Compile with $(PROFILING_CFLAGS).
998
999 2013-04-07 Dmitry Antipov <dmantipov@yandex.ru>
1000
1001 Get rid of some platform-specific functions examining window
1002 system and its capabilities. This is a partial rework of the
1003 2013-04-05 change.
1004 * lisp.h (have_menus_p): Remove prototype. This function is
1005 replaced with platform-independent window_system_available.
1006 (check_window_system): Move to...
1007 * frame.h (decode_window_system_frame, window_system_available):
1008 ...here, add new prototypes.
1009 * frame.c (window_system_available, decode_window_system_frame):
1010 New functions.
1011 (check_window_system): Platform-independent now.
1012 * xterm.h (x_in_use): Remove declaration.
1013 (check_x_frame):
1014 * w32term.h (check_x_frame):
1015 * nsterm.h (check_x_frame): Remove prototypes. This function
1016 is replaced with platform-independent decode_window_system_frame.
1017 * msdos.c (have_menus_p): Remove.
1018 * nsfns.m (check_window_system, have_menus_p, check_ns_frame):
1019 Remove platform-specific functions. Use check_window_system,
1020 decode_window_system_frame and check_ns_display_info where
1021 appropriate. Minor style and comment tweaks.
1022 * w32fns.c (w32_in_use, check_window_system, have_menus_p)
1023 (check_x_frame): Likewise.
1024 * xfns.c (x_in_use, check_window_system, have_menus_p, check_x_frame):
1025 Likewise.
1026 * fileio.c, fns.c, font.c, fontset.c, image.c, menu.c, nsmenu.m:
1027 * nsselect.m, nsterm.m, w32font.c, w32menu.c, xfaces.c, xgselect.c:
1028 * xmenu.c, xselect.c: All related users changed.
1029
1030 2013-04-03 Kenichi Handa <handa@gnu.org>
1031
1032 The following changes is to optimize the code for reading UTF-8
1033 files.
1034
1035 * coding.c (check_ascii): Rename from detect_ascii. Return value
1036 changed. Check EOL format. Do not call adjust_coding_eol_type
1037 here.
1038 (check_utf_8): New function.
1039 (adjust_coding_eol_type): Do nothing if already adjusted.
1040 (detect_coding): Compare the return value of check_ascii with
1041 coding->src_bytes. Call adjust_coding_eol_type if necessary.
1042 (decode_coding_gap): Optimize for valid UTF-8.
1043
1044 2013-03-21 Kenichi Handa <handa@gnu.org>
1045
1046 * coding.c (syms_of_coding): Cancel previous change.
1047
1048 * insdel.c (insert_from_gap): Fix previous change.
1049
1050 2013-04-05 Dmitry Antipov <dmantipov@yandex.ru>
1051
1052 Consistently use platform-specific function to detect window system.
1053 * lisp.h (check_window_system): New prototype. This function is
1054 going to replace check_x, check_w32 and check_ns.
1055 (have_menus_p): Mention msdos.c in comment.
1056 * fontset.c (check_window_system_func): Remove. Adjust all users.
1057 * fontset.h (check_window_system_func): Remove prototype.
1058 * nsterm.h (check_ns):
1059 * xterm.h (check_x):
1060 * w32term.h (check_w32): Likewise.
1061 * menu.c (Fx_popup_menu): Use check_window_system.
1062 * msdos.c (check_window_system): Define for MS-DOS.
1063 * nsfns.m (check_window_system): Define for NS. Adjust all users.
1064 * w32fns.c (check_window_system): Likewise for MS-Windows.
1065 * xfns.c (check_window_system): Likewise for X.
1066 * font.c, frame.c, nsmenu.m, nsselect.m, nsterm.m, w32menu.c:
1067 * xfaces.c, xmenu.c: Use check_window_system where appropriate.
1068
1069 2013-04-02 Paul Eggert <eggert@cs.ucla.edu>
1070
1071 Prefer < to > in range checks such as 0 <= i && i < N.
1072 This makes it easier to visualize quantities on a number line.
1073 This patch doesn't apply to all such range checks,
1074 only to the range checks affected by the 2013-03-24 change.
1075 This patch reverts most of the 2013-03-24 change.
1076 * alloc.c (xpalloc, Fgarbage_collect):
1077 * ccl.c (ccl_driver, resolve_symbol_ccl_program):
1078 * character.c (string_escape_byte8):
1079 * charset.c (read_hex):
1080 * data.c (cons_to_unsigned):
1081 * dispnew.c (update_frame_1):
1082 * doc.c (Fsubstitute_command_keys):
1083 * doprnt.c (doprnt):
1084 * editfns.c (hi_time, decode_time_components):
1085 * fileio.c (file_offset):
1086 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
1087 * font.c (font_intern_prop):
1088 * frame.c (x_set_alpha):
1089 * gtkutil.c (get_utf8_string):
1090 * indent.c (check_display_width):
1091 * keymap.c (Fkey_description):
1092 * lisp.h (FIXNUM_OVERFLOW_P, vcopy):
1093 * lread.c (read1):
1094 * minibuf.c (read_minibuf_noninteractive):
1095 * process.c (wait_reading_process_output):
1096 * search.c (Freplace_match):
1097 * window.c (get_phys_cursor_glyph):
1098 * xdisp.c (redisplay_internal):
1099 * xsmfns.c (smc_save_yourself_CB):
1100 Prefer < to > for range checks.
1101 * dispnew.c (sit_for): Don't mishandle NaNs.
1102 This fixes a bug introduced in the 2013-03-24 change.
1103 * editfns.c (decode_time_components): Don't hoist comparison.
1104 This fixes another bug introduced in the 2013-03-24 change.
1105
1106 2013-03-31 Dmitry Antipov <dmantipov@yandex.ru>
1107
1108 * frame.h (struct frame): Drop scroll_bottom_vpos
1109 member becaue all real users are dead long ago.
1110 (FRAME_SCROLL_BOTTOM_VPOS): Remove.
1111 * xdisp.c (redisplay_internal): Adjust user.
1112
1113 2013-03-30 Darren Ho <darren.hoo@gmail.com> (tiny change)
1114
1115 * nsmenu.m (showAtX:Y:for:): setLevel to
1116 NSPopUpMenuWindowLevel (Bug#13998).
1117
1118 2013-03-30 Jan Djärv <jan.h.d@swipnet.se>
1119
1120 * nsterm.h (ns_get_pending_menu_title, ns_check_menu_open)
1121 (ns_check_pending_open_menu): Declare.
1122
1123 * nsmenu.m (ns_update_menubar): Correct NSTRACE.
1124 (x_activate_menubar): Update the menu with title that matches
1125 ns_get_pending_menu_title, and call
1126 ns_check_pending_openmenu (Bug#12698).
1127 (menuWillOpen:): New method.
1128 (menuNeedsUpdate:): Add check for ! COCOA || OSX < 10.5 (Bug#12698).
1129
1130 * nsterm.m (menu_will_open_state, menu_mouse_point)
1131 (menu_pending_title): New varaibles.
1132 (ns_get_pending_menu_title, ns_check_menu_open)
1133 (ns_check_pending_open_menu): New functions.
1134
1135 2013-03-29 Dmitry Antipov <dmantipov@yandex.ru>
1136
1137 * indent.c (current_column_bol_cache): Remove leftover which is not
1138 used in Fmove_to_column any more.
1139 (current_column, scan_for_column): Adjust users.
1140 * keyboard.c (last_point_position_buffer, last_point_position_window):
1141 Remove leftovers which are not used for recording undo any more.
1142 (command_loop_1, syms_of_keyboard): Adjust users.
1143 * xdisp.c (last_max_ascent): Remove leftover which is not used in
1144 redisplay_window any more.
1145 (move_it_to): Adjust user.
1146
1147 2013-03-29 Juanma Barranquero <lekktu@gmail.com>
1148
1149 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/filelock.$(O)):
1150 Update dependencies.
1151
1152 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
1153
1154 * lisp.h (save_type, XSAVE_POINTER, set_save_pointer, XSAVE_INTEGER)
1155 (set_save_integer, XSAVE_OBJECT, XSAVE_VALUE): Move to avoid
1156 forward references.
1157
1158 2013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
1159
1160 * window.h (struct window): Replace hchild, vchild and buffer slots
1161 with the only contents slot. This is possible because each valid
1162 window may have either the child window (in vertical or horizontal
1163 combination) or buffer to display (for the leaf window). Using that,
1164 a lof of operations to traverse and/or change window hierarchies may
1165 be simplified. New member horizontal is used to distinguish between
1166 horizontal and vertical combinations of internal windows.
1167 (WINDOW_LEAF_P, WINDOW_HORIZONTAL_COMBINATION_P)
1168 (WINDOW_VERTICAL_COMBINATION_P): New macros.
1169 (WINDOW_VALID_P, WINDOW_LIVE_P): Adjust to match struct window changes.
1170 * window.c (wset_hchild, wset_vchild): Remove. Adjust all users.
1171 Use contents slot, not buffer, where appropriate.
1172 (wset_combination): New function.
1173 (wset_buffer): Add eassert.
1174 (Fframe_first_window): Simplify the loop reaching first window.
1175 (Fwindow_buffer): Use WINDOW_LEAF_P.
1176 (Fwindow_top_child): Use WINDOW_VERTICAL_COMBINATION_P.
1177 (Fwindow_left_child): Use WINDOW_HORIZONTAL_COMBINATION_P.
1178 (unshow_buffer): Convert initial debugging check to eassert.
1179 (replace_window, recombine_windows, Fdelete_other_windows_internal)
1180 (make_parent_window, window_resize_check, window_resize_apply)
1181 (resize_frame_windows, Fsplit_window_internal, Fdelete_window_internal)
1182 (Fset_window_configuration, delete_all_child_windows, save_window_save):
1183 Adjust to match struct window changes.
1184 (window_loop): Check for broken markers in CHECK_ALL_WINDOWS.
1185 (mark_window_cursors_off, count_windows, get_leaf_windows)
1186 (foreach_window_1): Simplify the loop.
1187 * alloc.c (mark_object): Do not check for the leaf window because
1188 internal windows has no glyph matrices anyway.
1189 * dispnew.c (clear_window_matrices, showing_window_margins_p)
1190 (allocate_matrices_for_window_redisplay, fake_current_matrices)
1191 (allocate_matrices_for_frame_redisplay, free_window_matrices)
1192 (build_frame_matrix_from_window_tree, mirror_make_current)
1193 (frame_row_to_window, mirror_line_dance, check_window_matrix_pointers)
1194 (update_window_tree, set_window_update_flags): Simplify the loop.
1195 (sync_window_with_frame_matrix_rows): Enforce live window.
1196 Use contents slot, not buffer, where appropriate.
1197 * frame.c (set_menu_bar_lines_1): Use WINDOW_VERTICAL_COMBINATION_P
1198 and WINDOW_HORIZONTAL_COMBINATION_P.
1199 (make_frame_visible_1): Simplify the loop.
1200 Use contents slot, not buffer, where appropriate.
1201 * xdisp.c (hscroll_window_tree, mark_window_display_accurate)
1202 (redisplay_windows, redisplay_mode_lines, update_cursor_in_window_tree)
1203 (expose_window_tree): Likewise.
1204 Use contents slot, not buffer, where appropriate.
1205 * textprop.c (get_char_property_and_overlay): Add CHECK_LIVE_WINDOW
1206 to avoid deleted windows. Use contents slot instead of buffer.
1207 * buffer.c, dispextern.h, editfns.c, fileio.c, font.c, fringe.c:
1208 * indent.c, insdel.c, keyboard.c, keymap.c, minibuf.c, msdos.c:
1209 * nsfns.m, nsmenu.m, nsterm.m, print.c, w32fns.c, w32menu.c, xfaces.c:
1210 * xfns.c, xmenu.c: Use contents slot, not buffer, where appropriate.
1211
1212 2013-03-28 Eli Zaretskii <eliz@gnu.org>
1213
1214 * w32fns.c (w32_wnd_proc) [ENABLE_CHECKING]: Add code to help
1215 identify the reasons for assertion violations in bug#14062 and
1216 similar ones.
1217 (Fx_show_tip): Fix compilation error under
1218 "--enable-check-lisp-object-type". (Bug#14073)
1219
1220 * image.c (g_error_free) [WINDOWSNT]: Add DEF_IMGLIB_FN.
1221 Reported by <rzl24ozi@gmail.com>.
1222
1223 2013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
1224
1225 * xdisp.c (with_echo_area_buffer_unwind_data): Save window
1226 start marker...
1227 (unwind_with_echo_area_buffer): ...to restore it here.
1228 This is needed to ensure that...
1229 (redisplay_window): ...both window markers are valid here,
1230 which is verified by eassert.
1231 * editfns.c (save_excursion_save): Do not assume that
1232 selected_window always displays the buffer.
1233 * buffer.c (Fbuffer_swap_text): Adjust window start markers.
1234 Fix comment.
1235
1236 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
1237
1238 * casetab.c (init_casetab_once): Don't abuse the ascii eqv table for
1239 the upcase table.
1240
1241 2013-03-27 rzl24ozi <rzl24ozi@gmail.com> (tiny changes)
1242
1243 * image.c [WINDOWSNT]: Fix calls to DEF_IMGLIB_FN for SVG function.
1244
1245 2013-03-27 Eli Zaretskii <eliz@gnu.org>
1246
1247 * w32proc.c (IsValidLocale) [__GNUC__]: Don't declare prototype,
1248 since MinGW's w32api headers do. This avoids compiler warnings.
1249
1250 * w32.c (FSCTL_GET_REPARSE_POINT) [_MSC_VER || _W64]: Don't define
1251 if already defined.
1252
1253 2013-03-26 Eli Zaretskii <eliz@gnu.org>
1254
1255 * w32.c (_REPARSE_DATA_BUFFER): Condition by _MSVC and _W64.
1256
1257 2013-03-26 Jan Djärv <jan.h.d@swipnet.se>
1258
1259 * gtkutil.c (style_changed_cb): Check if frame is live and an
1260 X frame (Bug#14038).
1261
1262 2013-03-26 Eli Zaretskii <eliz@gnu.org>
1263
1264 * w32.c (_PROCESS_MEMORY_COUNTERS_EX) [_WIN32_WINNT < 0x0500]:
1265 Define only for _WIN32_WINNT less than 0x0500.
1266 (_ANONYMOUS_UNION, _ANONYMOUS_STRUCT) [!_W64]: Don't define for
1267 MinGW64.
1268 Move inclusion of time.h before sys/time.h, so that MinGW64 could
1269 see its own definitions of 'struct timeval' and 'struct timezone'.
1270
1271 Fix incompatibilities between MinGW.org and MinGW64 headers.
1272 * w32term.c (WCRANGE, GLYPHSET): Don't define if _W64 is defined.
1273
1274 * w32.c (REPARSE_DATA_BUFFER): Guard with
1275 MAXIMUM_REPARSE_DATA_BUFFER_SIZE being defined.
1276
1277 2013-03-25 Jan Djärv <jan.h.d@swipnet.se>
1278
1279 * xterm.c: Include X11/XKBlib.h
1280 (XTring_bell): Use XkbBell if HAVE_XKB (Bug#14041).
1281
1282 2013-03-24 Andreas Schwab <schwab@linux-m68k.org>
1283
1284 * alloc.c (xpalloc, Fgarbage_collect): Reorder conditions that are
1285 written backwards.
1286 * blockinput.h (input_blocked_p): Likewise.
1287 * bytecode.c (exec_byte_code): Likewise.
1288 * callproc.c (call_process_kill, call_process_cleanup)
1289 (Fcall_process): Likewise.
1290 * ccl.c (ccl_driver, resolve_symbol_ccl_program)
1291 (Fccl_execute_on_string): Likewise.
1292 * character.c (string_escape_byte8): Likewise.
1293 * charset.c (read_hex): Likewise.
1294 * cm.c (calccost): Likewise.
1295 * data.c (cons_to_unsigned): Likewise.
1296 * dired.c (directory_files_internal, file_name_completion):
1297 Likewise.
1298 * dispnew.c (scrolling_window, update_frame_1, Fsleep_for)
1299 (sit_for): Likewise.
1300 * doc.c (Fsubstitute_command_keys): Likewise.
1301 * doprnt.c (doprnt): Likewise.
1302 * editfns.c (hi_time, decode_time_components, Fformat): Likewise.
1303 * emacsgtkfixed.c: Likewise.
1304 * fileio.c (file_offset, Fwrite_region): Likewise.
1305 * floatfns.c (Fexpt, fmod_float): Likewise.
1306 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
1307 Likewise.
1308 * font.c (font_intern_prop): Likewise.
1309 * frame.c (x_set_alpha): Likewise.
1310 * gtkutil.c (get_utf8_string): Likewise.
1311 * indent.c (check_display_width): Likewise.
1312 * intervals.c (create_root_interval, rotate_right, rotate_left)
1313 (split_interval_right, split_interval_left)
1314 (adjust_intervals_for_insertion, delete_node)
1315 (interval_deletion_adjustment, adjust_intervals_for_deletion)
1316 (merge_interval_right, merge_interval_left, copy_intervals)
1317 (set_intervals_multibyte_1): Likewise.
1318 * keyboard.c (gobble_input, append_tool_bar_item): Likewise.
1319 * keymap.c (Fkey_description): Likewise.
1320 * lisp.h (FIXNUM_OVERFLOW_P, vcopy): Likewise.
1321 * lread.c (openp, read_integer, read1, string_to_number):
1322 Likewise.
1323 * menu.c (ensure_menu_items): Likewise.
1324 * minibuf.c (read_minibuf_noninteractive): Likewise.
1325 * print.c (printchar, strout): Likewise.
1326 * process.c (create_process, Faccept_process_output)
1327 (wait_reading_process_output, read_process_output, send_process)
1328 (wait_reading_process_output): Likewise.
1329 * profiler.c (make_log, handle_profiler_signal): Likewise.
1330 * regex.c (re_exec): Likewise.
1331 * regex.h: Likewise.
1332 * search.c (looking_at_1, Freplace_match): Likewise.
1333 * sysdep.c (get_child_status, procfs_ttyname)
1334 (procfs_get_total_memory): Likewise.
1335 * systime.h (EMACS_TIME_VALID_P): Likewise.
1336 * term.c (dissociate_if_controlling_tty): Likewise.
1337 * window.c (get_phys_cursor_glyph): Likewise.
1338 * xdisp.c (init_iterator, redisplay_internal, redisplay_window)
1339 (try_window_reusing_current_matrix, try_window_id, pint2hrstr):
1340 Likewise.
1341 * xfns.c (Fx_window_property): Likewise.
1342 * xmenu.c (set_frame_menubar): Likewise.
1343 * xselect.c (x_get_window_property, x_handle_dnd_message):
1344 Likewise.
1345 * xsmfns.c (smc_save_yourself_CB): Likewise.
1346 * xterm.c (x_scroll_bar_set_handle): Likewise.
1347
1348 2013-03-24 Dmitry Antipov <dmantipov@yandex.ru>
1349
1350 * xfaces.c (Finternal_face_x_get_resource): Allow 3rd (frame) argument
1351 to be optional or nil. Adjust comment and convert it to docstring.
1352 * xselect.c (Fx_send_client_event): Rename to Fx_send_client_message.
1353 * frame.c (display_x_get_resource, Fx_get_resource): Break long line.
1354
1355 2013-03-24 Paul Eggert <eggert@cs.ucla.edu>
1356
1357 Static checking by GCC 4.8-20130319.
1358 * image.c (gif_load): Assume pass < 3 to pacify GCC.
1359 * process.c (Fset_process_datagram_address)
1360 (Fmake_network_process): Check get_lisp_to_sockaddr_size return value.
1361 * xdisp.c (get_char_face_and_encoding):
1362 (get_glyph_face_and_encoding): Ensure that *CHAR2B is initialized.
1363 (get_glyph_face_and_encoding): Prepare face before possibly using it.
1364 (get_per_char_metric): Don't use CHAR2B if it might not be initialized.
1365
1366 2013-03-24 Ken Brown <kbrown@cornell.edu>
1367
1368 * w32fns.c (emacs_abort) [CYGWIN]: Define `_open' as a macro to
1369 fix compilation on 64-bit Cygwin, where underscores are not
1370 automatically prepended.
1371
1372 * w32term.c (w32_initialize): Silence compiler warning.
1373
1374 2013-03-23 Eli Zaretskii <eliz@gnu.org>
1375
1376 * w32term.c (w32fullscreen_hook): Use FRAME_NORMAL_WIDTH,
1377 FRAME_NORMAL_HEIGHT, and FRAME_PREV_FSMODE, instead of static
1378 variables, to save and restore frame dimensions.
1379 Use FRAME_NORMAL_LEFT and FRAME_NORMAL_TOP to restore frame position
1380 after returning from a 'fullscreen' configuration.
1381 use SendMessage instead of PostMessage to send the SC_RESTORE message,
1382 to avoid races between the main thread and the input thread.
1383
1384 * w32term.h (struct w32_output): New members normal_width,
1385 normal_height, normal_top, normal_left, and prev_fsmode.
1386 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP)
1387 (FRAME_NORMAL_LEFT, FRAME_PREV_FSMODE): New macros to access these
1388 members of a frame.
1389
1390 * w32term.c (w32fullscreen_hook): Record last value of the frame's
1391 'fullscreen' parameter. Always record previous width and height
1392 of the frame, except when switching out of maximized modes, so
1393 that they could be restored correctly, instead of resetting to the
1394 default frame dimensions. Send SC_RESTORE command to the frame,
1395 unless we are going to send SC_MAXIMIZE, to restore the frame
1396 resize hints in the mouse pointer shown by the window manager.
1397 (Bug#14032)
1398
1399 * frame.c (get_frame_param): Now extern for WINDOWSNT as well.
1400
1401 * lisp.h (get_frame_param): Adjust conditions for prototype
1402 declaration.
1403
1404 2013-03-22 Ken Brown <kbrown@cornell.edu>
1405
1406 * unexcw.c: Drop unneeded inclusion of w32common.h.
1407 (report_sheap_usage): Declare.
1408 (read_exe_header): Add magic numbers for x86_64.
1409 (fixup_executable): Fix printf format specifier for unsigned long
1410 argument.
1411
1412 2013-03-22 Dmitry Antipov <dmantipov@yandex.ru>
1413
1414 * frame.h (struct frame): Put menu_bar_window under #ifdef
1415 because this member is not needed when X toolkit is in use.
1416 (fset_menu_bar_window):
1417 * dispnew.c (clear_current_matrices, clear_desired_matrices)
1418 (free_glyphs, update_frame):
1419 * xdisp.c (expose_frame): Likewise.
1420 (display_menu_bar): Likewise. Remove redundant eassert.
1421 * window.h (WINDOW_MENU_BAR_P): Always define to 0 if X
1422 toolkit is in use.
1423
1424 2013-03-21 Paul Eggert <eggert@cs.ucla.edu>
1425
1426 Use functions and constants to manipulate Lisp_Save_Value objects.
1427 This replaces code that used macros and strings and token-pasting.
1428 The change makes the C source a bit easier to follow,
1429 and shrinks the Emacs executable a bit.
1430 * alloc.c: Verify some properties of Lisp_Save_Value's representation.
1431 (make_save_value): Change 1st arg from string to enum. All callers
1432 changed.
1433 (INTX): Remove.
1434 (mark_object): Use if, not #if, for GC_MARK_STACK.
1435 * lisp.h (SAVE_VALUEP, XSAVE_VALUE, XSAVE_POINTER, XSAVE_INTEGER)
1436 (XSAVE_OBJECT): Now functions, not macros.
1437 (STRING_BYTES_BOUND): Now just a macro, not a constant too;
1438 the constant was never used.
1439 (SAVE_SLOT_BITS, SAVE_VALUE_SLOTS, SAVE_TYPE_BITS, SAVE_TYPE_INT_INT)
1440 (SAVE_TYPE_INT_INT_INT, SAVE_TYPE_OBJ_OBJ, SAVE_TYPE_OBJ_OBJ_OBJ)
1441 (SAVE_TYPE_OBJ_OBJ_OBJ_OBJ, SAVE_TYPE_PTR_INT, SAVE_TYPE_PTR_OBJ)
1442 (SAVE_TYPE_PTR_PTR, SAVE_TYPE_PTR_PTR_OBJ, SAVE_TYPE_MEMORY):
1443 New constants.
1444 (struct Lisp_Save_Value): Replace members area, type0, type1, type2,
1445 type3 with a single member save_type. All uses changed.
1446 (save_type, set_save_pointer, set_save_integer): New functions.
1447 * print.c (PRINTX): Remove.
1448
1449 * alloc.c: Remove redundant static declarations.
1450
1451 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
1452
1453 * window.h (struct window): Convert left_col, top_line, total_lines
1454 and total_cols from Lisp_Objects to integers. Adjust comments.
1455 (wset_left_col, wset_top_line, wset_total_cols, wset_total_lines):
1456 Remove.
1457 (WINDOW_TOTAL_COLS, WINDOW_TOTAL_LINES, WINDOW_LEFT_EDGE_COL)
1458 (WINDOW_TOP_EDGE_LINE): Drop Lisp_Object to integer conversion.
1459 * dispnew.c, frame.c, w32fns.c, window.c, xdisp.c, xfns.c:
1460 Adjust users where appropriate.
1461
1462 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
1463
1464 * frame.h (struct frame): Drop resx and resy because the same data is
1465 available from window system-specific output context. Adjust users.
1466 (default_pixels_per_inch_x, default_pixels_per_inch_y):
1467 New functions to provide defaults when no window system available.
1468 (FRAME_RES_X, FRAME_RES_Y): New macros.
1469 (NUMVAL): Move from xdisp.c.
1470 * font.c (font_pixel_size, font_find_for_lface, font_open_for_lface)
1471 (Ffont_face_attributes, Fopen_font):
1472 * image.c (gs_load):
1473 * w32font.c (fill_in_logfont):
1474 * xdisp.c (calc_pixel_width_or_height):
1475 * xfaces.c (Fx_family_fonts, set_lface_from_font): Use them.
1476 * xsettings.c (apply_xft_settings): Drop frame loop and adjust comment.
1477
1478 2013-03-20 Kenichi Handa <handa@gnu.org>
1479
1480 * coding.c (syms_of_coding): Initialize disable_ascii_optimization
1481 to 1 (temporary workaround until a bug related to ASCII
1482 optimization is fixed).
1483
1484 2013-03-19 Dmitry Antipov <dmantipov@yandex.ru>
1485
1486 * window.c (Fwindow_combination_limit, Fset_window_combination_limit):
1487 Signal error if window is not internal. Adjust docstring.
1488 (delete_all_child_windows): Use combination_limit to save the buffer.
1489 (Fset_window_configuration): Adjust accordingly.
1490 * print.c (syms_of_print): Initialize debugging output not here...
1491 (init_print_once): ...but in a new function here.
1492 * lisp.h (init_print_once): Add prototype.
1493 * emacs.c (main): Add call to init_print_once. Adjust comments.
1494
1495 2013-03-18 Dmitry Antipov <dmantipov@yandex.ru>
1496
1497 * window.c (window_resize_check, window_resize_apply)
1498 (window_from_coordinates, recombine_windows, set_window_buffer)
1499 (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
1500 (Fsplit_window_internal, Fdelete_window_internal)
1501 (freeze_window_starts): Use bool for booleans.
1502 * window.h (window_frame_coordinates, resize_frame_windows)
1503 (freeze_window_starts, set_window_buffer): Adjust prototypes.
1504
1505 2013-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
1506
1507 * dispnew.c (bitch_at_user): Use `user-error'.
1508
1509 2013-03-17 Ken Brown <kbrown@cornell.edu>
1510
1511 * dispextern.h (RGB_PIXEL_COLOR): Move here from image.c. Use it
1512 as return type of image_background. (Bug#13981)
1513 * image.c (RGB_PIXEL_COLOR): Move to dispextern.h.
1514
1515 2013-03-16 Jan Djärv <jan.h.d@swipnet.se>
1516
1517 * nsterm.m (updateFrameSize:): Change resize increments if needed.
1518 (ns_select): Don't return with result uninitialized.
1519
1520 * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
1521 and getDirectory.
1522
1523 * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
1524 New functions.
1525 (Fns_read_file_name): ret is BOOL. If ! dir_only_p, don't choose
1526 directories. If filename is nil, get directory name (Bug#13932).
1527 Use getFilename and getDirectory.
1528 (getFilename, getDirectory): New methods for EmacsSavePanel and
1529 EmacsOpenPanel.
1530 (ok:): In EmacsOpenPanel, if we can't choose directories, just return.
1531
1532 2013-03-15 Paul Eggert <eggert@cs.ucla.edu>
1533
1534 * coding.c (decode_coding_gap): Fix typo caught by static checking.
1535
1536 2013-03-15 Kenichi Handa <handa@gnu.org>
1537
1538 * insdel.c (insert_from_gap): New arg text_at_gap_tail.
1539 (adjust_after_replace): Make it back to static. Delete the third
1540 arg text_at_gap_tail. Cancel the code for handling it.
1541
1542 * coding.h (struct coding_system): New member eol_seen.
1543
1544 * coding.c (detect_ascii): New function.
1545 (detect_coding): Set coding->head_ascii and coding->eol_seen only
1546 when the source bytes are actually scanned. On detecting for
1547 coding_category_utf_8_auto, call detect_ascii instead of scanning
1548 source bytes directly.
1549 (produce_chars): Call insert_from_gap with the new arg 0.
1550 (encode_coding): Likewise.
1551 (decode_coding_gap): Control ASCII optimization by the variable
1552 disable_ascii_optimization instead of #ifndef .. #endif.
1553 Deccode EOL format according to coding->eol_seen.
1554 (syms_of_coding): Declare disable-ascii-optimization as a Lisp
1555 variable.
1556
1557 * lisp.h (adjust_after_replace): Cancel externing it.
1558 (insert_from_gap): Adjust prototype.
1559
1560 2013-03-15 Eli Zaretskii <eliz@gnu.org>
1561
1562 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
1563 FULLSCREEN_MAXIMIZED. (Bug#13935)
1564
1565 2013-03-15 Dmitry Antipov <dmantipov@yandex.ru>
1566
1567 * region-cache.c (find_cache_boundary, move_cache_gap)
1568 (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
1569 Simplify debugging check and convert to eassert. Adjust comment.
1570 (pp_cache): Put under ENABLE_CHECKING.
1571
1572 2013-03-14 Eli Zaretskii <eliz@gnu.org>
1573
1574 * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
1575 and incorrect code. Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
1576 and WM_ACTIVATEAPP.
1577 (w32fullscreen_hook): If the frame is visible, reset
1578 f->want_fullscreen flag after changing the frame size. If the
1579 frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
1580 (Bug#13953)
1581
1582 2013-03-13 Daniel Colascione <dancol@dancol.org>
1583
1584 * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
1585 too so that these builds can use Cygwin's file conversion
1586 functions. (We've been building and linking cygw32.o all along
1587 and just not using it.)
1588
1589 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
1590
1591 File synchronization fixes (Bug#13944).
1592 * Makefile.in (LIB_FDATASYNC): New macro.
1593 (LIBES): Use it.
1594 * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
1595 * fileio.c (Fwrite_region, write_region_inhibit_fsync):
1596 Don't worry about HAVE_FSYNC, since a substitute fsync is
1597 available if the system lacks one.
1598 (Fwrite_regin): Retry fsync if interrupted.
1599
1600 2013-03-13 Eli Zaretskii <eliz@gnu.org>
1601
1602 * w32term.c (w32_read_socket): If the Emacs frame is being
1603 activated, call w32fullscreen_hook, to make sure the new frame
1604 dimensions are in effect. (Bug#13937)
1605
1606 2013-03-13 Dmitry Antipov <dmantipov@yandex.ru>
1607
1608 * xdisp.c (init_iterator): Simplify because both character and byte
1609 positions are either specified or -1. Add eassert. Adjust comment.
1610 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
1611 character and byte positions can be obtained from marker.
1612
1613 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
1614
1615 Static checking by Sun C 5.12.
1616 * alloc.c (buffer_memory_full) [REL_ALLOC]:
1617 * bytecode.c (exec_byte_code):
1618 * dispnew.c (init_display):
1619 * eval.c (error):
1620 * fileio.c (Fsubstitute_in_file_name):
1621 * keyboard.c (Fevent_convert_list):
1622 * keymap.c (Fsingle_key_description):
1623 * term.c (maybe_fatal, fatal):
1624 * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
1625 * xsmfns.c (Fhandle_save_session):
1626 Omit unreachable code.
1627 * keymap.c (map_keymap_char_table_item): Cast void * to
1628 a function pointer type; the C Standard requires this.
1629
1630 * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
1631 Include <sys/param.h> unconditionally, as that works elsewhere and
1632 is simpler here. Include <sys/sysctl.h> if DARWIN_OS ||
1633 __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
1634 and FreeBSD now.
1635
1636 2013-03-11 Paul Eggert <eggert@cs.ucla.edu>
1637
1638 * insdel.c (adjust_after_replace): Use bool for boolean.
1639
1640 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
1641
1642 * keyboard.c: Move keyboard decoding to read_key_sequence.
1643 (decode_keyboard_code): Remove.
1644 (tty_read_avail_input): Don't try to decode input.
1645 (read_decoded_char): New function.
1646 (read_key_sequence): Use it.
1647
1648 2013-03-10 Daniel Colascione <dancol@dancol.org>
1649
1650 * w32term.h (GUISTR, GUI_ENCODE_FILE, GUI_ENCODE_SYSTEM, GUI_FN)
1651 (GUI_SDATA, guichar_t): Macros to abstract out differences between
1652 NTGUI_UNICODE and !NTGUI_UNICODE builds, some moved out of
1653 w32fns.c.
1654
1655 * w32term.c (construct_drag_n_drop): Use the above macros to make
1656 drag-and-drop work for non-ASCII filenames in cygw32 builds.
1657
1658 * w32fns.c (x_set_name, x_set_title): Use the above macros to
1659 properly display non-ASCII frame titles in cygw32 builds.
1660
1661 * w32fns.c (Fw32_shell_execute): Use the above macros to properly
1662 call ShellExecute in cygw32 builds.
1663
1664 * w32fn.c (Fx_file_dialog): Use the above macros to simplify the
1665 common file dialog code.
1666
1667 * w32fns.c (Ffile_system_info): Remove from cygw32 builds, which
1668 can just use du like other systems.
1669
1670 * coding.c (from_unicode_buffer): Declare.
1671 * coding.c (from_unicode_buffer): Implement.
1672
1673 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1674
1675 * lread.c: Minor cleanup.
1676 (FROM_FILE_P): New macro.
1677 (skip_dyn_bytes, unreadchar, read1): Use it.
1678 (read_list): Consolidate duplicated code.
1679
1680 * bytecode.c (struct byte_stack): Remove `constants' when unused.
1681
1682 2013-03-10 Eli Zaretskii <eliz@gnu.org>
1683
1684 * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
1685 (redisplay_internal, set_cursor_from_row, try_window)
1686 (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
1687 (display_line, notice_overwritten_cursor)
1688 (mouse_face_from_buffer_pos, note_mouse_highlight):
1689 Use MATRIX_ROW_DISPLAYS_TEXT_P.
1690 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
1691 (mouse_face_from_string_pos, fast_find_string_pos):
1692 Use MATRIX_ROW_VPOS.
1693
1694 * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
1695
1696 * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
1697
1698 * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
1699 MATRIX_MODE_LINE_ROW.
1700
1701 * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
1702
1703 2013-03-10 handa <handa@gnu.org>
1704
1705 * lisp.h (adjust_after_replace): Extern it.
1706
1707 * coding.c (detect_coding): Cound the heading ASCII bytes in the
1708 case of detection for coding_category_utf_8_auto.
1709 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
1710 Skip decoding if all bytes are ASCII.
1711
1712 * insdel.c (adjust_after_replace): Make it public. New arg
1713 text_at_gap_tail.
1714 (adjust_after_insert): Call adjust_after_replace with the new arg
1715 value 0.
1716
1717 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
1718
1719 * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
1720 (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
1721 from Elisp via unread-command-events.
1722
1723 * keyboard.c (access_keymap_keyremap): Accept nil return value from
1724 functions to mean "no change".
1725
1726 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
1727
1728 region-cache.c, scroll.c, search.c: Use bool for booleans.
1729 * lisp.h (compile_pattern):
1730 * scroll.c (do_scrolling, do_direct_scrolling):
1731 * search.c (struct regexp_cache, compile_pattern_1)
1732 (compile_pattern, string_match_1, search_command)
1733 (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
1734 (search_regs_saved, Fregexp_quote):
1735 Use bool for boolean.
1736 * region-cache.c (region_cache_forward, region_cache_backward):
1737 Fix comments to match code: these functions return int, not boolean.
1738
1739 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
1740
1741 * search.c (find_newline): Accept start and end byte positions
1742 as arguments and allow -1 if not known.
1743 (find_newline_no_quit): Likewise for start position.
1744 * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
1745 * bidi.c (bidi_find_paragraph_start): Pass byte position to
1746 find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
1747 * editfns.c (Fconstrain_to_field): Break long line.
1748 Adjust call to find_newline.
1749 * indent.c (vmotion): Adjust calls to find_newline_no_quit.
1750 Use DEC_BOTH to start next search from the previous buffer
1751 position, where appropriate.
1752 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
1753 (get_visually_first_element, move_it_vertically_backward): Likewise.
1754 Obtain byte position from the display iterator, where appropriate.
1755
1756 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
1757
1758 print.c, process.c: Use bool for booleans.
1759 * lisp.h (wait_reading_process_output):
1760 * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
1761 (strout, debug_output_compilation_hack, float_to_string, print)
1762 (print_object):
1763 * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
1764 (decode_status, status_message, create_process, create_pty)
1765 (Fmake_network_process, Fnetwork_interface_info)
1766 (wait_reading_process_output, read_process_output)
1767 (write_queue_push, write_queue_pop, process_send_signal)
1768 (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
1769 * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
1770 Use bool for booleans.
1771 * process.c (Fnetwork_interface_list): Remove unused local.
1772 (connect_counter): Now EMACS_INT, not int.
1773
1774 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
1775
1776 * bidi.c (bidi_fetch_char): Swap first and second arguments
1777 to match other functions accepting character and byte positions.
1778 Adjust comment.
1779 (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
1780 (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster
1781 when you need just to move to the previous buffer position.
1782 * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
1783
1784 2013-03-07 Eli Zaretskii <eliz@gnu.org>
1785
1786 * .gdbinit (prowlims): Display the enabled_p flag of the row.
1787
1788 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
1789
1790 Avoid character to byte conversions in motion subroutines.
1791 * indent.h (compute_motion, vmotion): Add byte position argument.
1792 * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
1793 Add eassert.
1794 (Fcompute_motion): Break long line. Adjust call to compute_motion.
1795 Use list5 for return value.
1796 (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
1797 Adjust comments, style and calls to compute_motion.
1798 (Fvertical_motion): Adjust call to vmotion.
1799 * window.c (Fdelete_other_windows_internal): Record window start
1800 byte position and adjust call to vmotion.
1801 (window_scroll_line_based): Likewise with call to compute_motion.
1802 Use SET_PT_BOTH.
1803 (Frecenter): Adjust calls to vmotion.
1804
1805 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
1806
1807 * lisp.h (list2i, list3i): New functions.
1808 (list4i): Move from window.c and make LISP_INLINE.
1809 * editfns.c (make_lisp_time):
1810 * fns.c (Flocale_info):
1811 * keyboard.c (parse_modifiers):
1812 * xterm.c (x_ewmh_activate_frame): Use list2i.
1813 * instel.c (signal_after_change):
1814 * nsfns.m (Fx_server_version, Fxw_color_values):
1815 * w32fns.c (Fxw_color_values, Fx_server_version):
1816 * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
1817 * fileio.c (Fvisited_file_modtime):
1818 * nsfns.m (Fns_display_usable_bounds):
1819 * w32.c (ltime): Use list4i.
1820
1821 2013-03-06 Eli Zaretskii <eliz@gnu.org>
1822
1823 * search.c (find_newline_no_quit): Rename from find_next_newline.
1824 Add commentary.
1825
1826 * lisp.h (find_newline_no_quit): Rename prototype.
1827
1828 * xdisp.c (back_to_previous_line_start)
1829 (forward_to_next_line_start, get_visually_first_element)
1830 (move_it_vertically_backward): Callers of find_newline_no_quit changed.
1831 * indent.c (vmotion): Callers of find_newline_no_quit changed.
1832 * bidi.c (bidi_find_paragraph_start): Callers of
1833 find_newline_no_quit changed.
1834
1835 * msdos.c: Change encoding to cp850. (Bug#13879)
1836 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
1837
1838 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
1839
1840 Coding system support cleanup and minor refactoring.
1841 * coding.h (enum coding_result_code): Remove
1842 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
1843 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
1844 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
1845 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
1846 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
1847 (decode_coding_region, encode_coding_region, decode_coding_string):
1848 Remove unused compatibility macros.
1849 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
1850 (record_conversion_result): Adjust user.
1851 (syms_of_coding): Likewise.
1852 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
1853 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
1854 (decode_coding_object): Simplify since xrealloc never returns NULL.
1855 Add eassert.
1856
1857 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
1858
1859 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
1860 * sysdep.c (list_system_processes)
1861 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
1862 Make it a stub in this case; otherwise the build might fail,
1863 and this code hasn't been tested on such hosts anyway.
1864 Problem reported by Nelson H. F. Beebe in
1865 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
1866 and analyzed by Jérémie Courrèges-Anglas in
1867 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
1868
1869 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
1870
1871 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
1872 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
1873 (get_visually_first_element, move_it_vertically_backward): Ajust users.
1874 * bidi.c (bidi_find_paragraph_start): Likewise.
1875 * indent.c (vmotion): Likewise.
1876
1877 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
1878
1879 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
1880 * filelock.c: Include <c-ctype.h>.
1881 (MAX_LFINFO): New top-level constant.
1882 (lock_info_type): Remove members pid, boot_time. Add members at,
1883 dot, colon. Change user member to be the entire buffer, not a
1884 pointer. This allows us to handle the case where a foreign
1885 pid or boot time exceeds the local range. All uses changed.
1886 (LINKS_MIGHT_NOT_WORK): New constant.
1887 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
1888 (defined_WINDOWSNT): Remove.
1889 (MAKE_LOCK_NAME, file_in_lock_file_name):
1890 Always use .#FILE (not .#-FILE) for the file lock,
1891 even if it is a regular file.
1892 (rename_lock_file): New function.
1893 (create_lock_file): Use it.
1894 (create_lock_file, read_lock_data):
1895 Prefer a symbolic link for the lock file, falling back on a
1896 regular file if symlinks don't work. Do not try to create
1897 symlinks on MS-Windows, due to security hassles. Stick with
1898 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
1899 link, rename, unlink, mkstemp) when creating locks, as a GNUish
1900 host may be using a Windowsish file system, and cannot use
1901 MS-Windows-only system calls. Fall back on mktemp if mkstemp
1902 doesn't work. Don't fail merely because of a symlink-contents
1903 length limit in the current file system; fall back on regular
1904 files. Increase the symlink contents length limit to 8 KiB, this
1905 should be big enough for any real use and doesn't crunch the
1906 stack.
1907 (create_lock_file, lock_file_1, read_lock_data):
1908 Simplify allocation of lock file buffers now that they fit in 8 KiB.
1909 (lock_file_1): Return error number, not bool. All callers changed.
1910 (ELOOP): New macro, if not already defined.
1911 (read_lock_data): Return size of lock file contents, not Lisp object.
1912 All callers changed. Handle a race condition if some other process
1913 replaces a regular-file lock with a symlink lock or vice versa,
1914 while we're trying to read the lock.
1915 (current_lock_owner): Parse contents more carefully, to help avoid
1916 confusing a regular-file lock with some other application's use
1917 of the file. Check for lock file contents being too long, or
1918 not parsing correctly.
1919 (current_lock_owner, lock_file):
1920 Allow foreign pid and boot times that exceed the local range.
1921 (current_lock_owner, lock_if_free, lock_file):
1922 Simplify allocation of lock file contents.
1923 * w32.c (sys_rename_replace): New function, containing most of
1924 the contents of the old sys_rename.
1925 (sys_rename): Use it.
1926 (fchmod): New dummy function.
1927 * w32.h (sys_rename_replace, fchmod): New decls.
1928
1929 2013-03-05 Eli Zaretskii <eliz@gnu.org>
1930
1931 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
1932 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
1933 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
1934 <dmantipov@yandex.ru>.
1935
1936 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
1937
1938 * composite.c (get_composition_id, fill_gstring_header):
1939 Use make_uninit_vector where appropriate.
1940 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
1941 * xselect.c (clean_local_selection_data): Likewise.
1942
1943 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
1944
1945 Fix misuse of ImageMagick that caused core dump (Bug#13846).
1946 * image.c (imagemagick_load_image): Calculate height and width
1947 after flattening the image, not before.
1948
1949 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
1950
1951 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
1952 * ftfont.c (ftfont_shape_by_flt): Likewise.
1953 * w32uniscribe.c (uniscribe_shape): Likewise.
1954
1955 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
1956
1957 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
1958 The old approach, which fell back on DIR/.#FILE.0 through
1959 DIR/.#FILE.9, had race conditions that could not be easily fixed.
1960 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
1961 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
1962 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
1963 because the locking mechanism was never reliable in that case).
1964 This patch fixes this and other bugs discovered by a code
1965 inspection that was prompted by
1966 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
1967 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
1968 to avoid interoperability problems between the MS-Windows and
1969 non-MS-Windows implementations. MS-Windows and non-MS-Windows
1970 instances of Emacs now ignore each others' locks.
1971 * filelock.c (defined_WINDOWSNT): New constant.
1972 (MAKE_LOCK_NAME, fill_in_lock_file_name):
1973 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
1974 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
1975 regular files on MS-Windows hosts.
1976 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
1977 Use SAFE_ALLOCA to avoid problems with long file names.
1978 (MAX_LFINFO): Now a local constant, not a global macro.
1979 (IS_LOCK_FILE): Remove.
1980 (lock_file_1): Don't inspect errno if symlink call succeeds;
1981 that's not portable.
1982 (lock_file): Document that this function can return if lock
1983 creation fails.
1984 (lock_file): Don't access freed storage.
1985
1986 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
1987
1988 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
1989
1990 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
1991
1992 * textprop.c: Use bool for booleans.
1993 (validate_interval_range, Fadd_text_properties)
1994 (Fremove_text_properties): Prefer bool to int when either works.
1995
1996 2013-03-02 Eli Zaretskii <eliz@gnu.org>
1997
1998 * textprop.c (Fadd_text_properties, Fremove_text_properties):
1999 If the interval tree changes as a side effect of calling
2000 modify_region, re-do processing starting from the call to
2001 validate_interval_range. (Bug#13743)
2002
2003 2013-02-28 Eli Zaretskii <eliz@gnu.org>
2004
2005 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
2006 (Bug#13546).
2007
2008 2013-02-27 Eli Zaretskii <eliz@gnu.org>
2009
2010 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
2011 _SH_DENYRW flag, instead of emacs_open, to deny any other process
2012 access to the lock file until it is written and closed.
2013 (Bug#13807)
2014
2015 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
2016
2017 * callint.c (Qcall_interactively):
2018 * macros.c (Qexecute_kbd_macro):
2019 Now static.
2020
2021 2013-02-26 Bastien Guerry <bzg@gnu.org>
2022
2023 * window.c (Frecenter): Tiny docstring enhancement.
2024
2025 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
2026
2027 Minor textprop integer cleanup.
2028 * intervals.h, textprop.c (add_text_properties_from_list):
2029 Return void, not int, since nobody uses the return value.
2030 * textprop.c (validate_plist, add_properties, remove_properties)
2031 (Fadd_text_properties):
2032 Don't assume list length fits in int.
2033 (interval_has_all_properties, interval_has_some_properties)
2034 (interval_has_some_properties_list, add_properties, remove_properties)
2035 (Fadd_text_properties, Fremove_text_properties)
2036 (Fremove_list_of_text_properties, text_property_stickiness):
2037 Use bool for booleans.
2038 (Fadd_text_properties, Fremove_text_properties):
2039 (Fremove_list_of_text_properties):
2040 Reindent do-while as per GNU style.
2041
2042 2013-02-25 Eli Zaretskii <eliz@gnu.org>
2043
2044 Implement CLASH_DETECTION for MS-Windows.
2045
2046 * filelock.c [WINDOWSNT]: Include w32.h.
2047 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
2048 function of that name. Up-case the macro arguments.
2049 (IS_LOCK_FILE): New macro.
2050 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
2051 (create_lock_file): New function, with body extracted from
2052 lock_file_1.
2053 [WINDOWSNT]: Implement lock files by writing a regular file with
2054 the lock information as its contents.
2055 (read_lock_data): New function, on Posix platforms just calls
2056 emacs_readlinkat.
2057 [WINDOWSNT]: Read the lock info from the file.
2058 (current_lock_owner): Call read_lock_data instead of calling
2059 emacs_readlinkat directly.
2060 (lock_file) [WINDOWSNT]: Run the file name through
2061 dostounix_filename.
2062
2063 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
2064 just check if the process by that PID exists.
2065
2066 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
2067 also present, as doing so will fail to error out if the file
2068 already exists.
2069
2070 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
2071
2072 * textprop.c (Fadd_text_properties, Fremove_text_properties)
2073 (Fremove_list_of_text_properties): Skip all of the intervals in
2074 the region between START and END that already have resp. don't
2075 have the requested properties, not just the first one.
2076 Add assertions that the loop afterwards always modifies the
2077 properties. (Bug#13743)
2078
2079 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
2080
2081 * callint.c (Fcall_interactively): Use the right lexical environment
2082 for `interactive' specs (bug#13811).
2083 * eval.c (Feval): Accept a lexical environment.
2084
2085 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
2086
2087 Simplify data_start configuration (Bug#13783).
2088 This is a followon simplification to the fix for Bug#13650.
2089 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
2090 (START_FILES): Remove. All uses removed.
2091 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
2092 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
2093 (buildobj.h): Use it.
2094 ($(ALLOBJS)): Depend on globals.h.
2095 (temacs$(EXEEXT)): Use $(ALLOBJS).
2096 * autodeps.mk (ALLOBJS): Move to Makefile.in.
2097 * deps.mk (vm-limit.o):
2098 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
2099 Do not depend on mem-limits.h.
2100 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
2101 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
2102 [__GNUC__ && !ORDINARY_LINK]: Remove.
2103 * mem-limits.h, pre-crt0.c: Remove.
2104 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
2105 * unexcoff.c (etext): New decl.
2106 (make_hdr): Use DATA_START instead of start_of_data.
2107 * vm-limit.c: Move most of mem-limits.h's contents here.
2108 (data_start): New decl. It's OK if this is approximate,
2109 so simplify-away some unnecessary exactness.
2110 (POINTER): Remove; all uses removed.
2111 (data_space_start): Now char *, to avoid casts.
2112 (exceeds_lisp_ptr): New function, replacing the old
2113 EXCEEDS_LISP_PTR macro. All uses changed.
2114 (check_memory_limits): Simplify and remove casts.
2115 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
2116 (memory_warnings): Use data_start instead of start_of_data.
2117
2118 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
2119
2120 * xdisp.c (set_message): Only check for debug-on-message if STRING
2121 is a string. (Bug#13797)
2122
2123 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
2124
2125 Fix regression introduced by July 10 filelock.c patch.
2126 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
2127 2012-07-10 patch to this file. Reported by Eli Zaretskii in
2128 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
2129 and diagnosed by Andreas Schwab in
2130 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
2131
2132 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
2133
2134 Assume C89 or better.
2135 * ralloc.c (SIZE, POINTER, NIL):
2136 * vm-limit.c (POINTER):
2137 Remove, replacing all uses with C89 equivalents. These old
2138 symbols were present only for porting to pre-C89 platforms.
2139
2140 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
2141
2142 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
2143 This avoids warning messages reported as part of Bug#13546.
2144
2145 2013-02-21 Ken Brown <kbrown@cornell.edu>
2146
2147 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
2148
2149 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
2150
2151 * sheap.c (report_sheap_usage): Prefer message1_nolog.
2152
2153 * keyboard.c (Qcommand_execute): New var.
2154 (command_loop_1, read_char): Use it.
2155 (Fcommand_execute): Remove, replace by an Elisp implementation.
2156 (syms_of_keyboard): Adjust accordingly.
2157
2158 2013-02-19 Daniel Colascione <dancol@dancol.org>
2159
2160 * sheap.c (report_sheap_usage): Use message, not message1, so
2161 that we don't try to create a buffer while we're in the middle
2162 of dumping Emacs. Explain why.
2163
2164 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
2165
2166 * search.c (find_newline): Return byte position in bytepos.
2167 Adjust comment.
2168 (find_next_newline_no_quit, find_before_next_newline):
2169 Add bytepos argument.
2170 * lisp.h (find_newline, find_next_newline_no_quit)
2171 (find_before_next_newline): Adjust prototypes.
2172 * bidi.c (bidi_find_paragraph_start):
2173 * editfns.c (Fconstrain_to_field, Fline_end_position):
2174 * indent.c (compute_motion, vmotion):
2175 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
2176 (get_visually_first_element, move_it_vertically_backward):
2177 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
2178
2179 2013-02-19 Eli Zaretskii <eliz@gnu.org>
2180
2181 * w32proc.c (new_child): Avoid leaking handles if the subprocess
2182 resources were not orderly released.
2183
2184 2013-02-17 Eli Zaretskii <eliz@gnu.org>
2185
2186 * xdisp.c (x_draw_vertical_border): For a window that is neither
2187 the leftmost nor the rightmost, redraw both the left and the right
2188 vertical borders. (Bug#13723)
2189
2190 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
2191
2192 * xml.c (init_libxml2_functions):
2193 * sound.c (sound_warning):
2194 * sheap.c (report_sheap_usage):
2195 * process.c (wait_reading_process_output):
2196 * msdos.c (XMenuActivate):
2197 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
2198 * keyboard.c (top_level_1):
2199 * editfns.c (Fmessage, Fmessage_box):
2200 * callint.c (Fcall_interactively):
2201 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
2202
2203 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
2204
2205 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
2206 * frame.c (syms_of_frame): ... to here.
2207
2208 2013-02-16 Eli Zaretskii <eliz@gnu.org>
2209
2210 * w32.c (sys_chown): Remove unused function.
2211
2212 * w32term.c <input_signal_count>: Declare 'volatile'
2213 unconditionally. (Bug#9066)
2214
2215 * w32.c (set_errno): Reset h_errno and don't set it to any other
2216 value. Set errno instead.
2217 (check_errno): Reset h_errno.
2218 (sys_socket, socket_to_fd, sys_bind, sys_connect)
2219 (sys_gethostname, sys_getservbyname, sys_getpeername)
2220 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
2221 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
2222 h_errno.
2223 (sys_gethostbyname): Set h_errno only errors detected.
2224
2225 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
2226
2227 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
2228
2229 2013-02-15 Eli Zaretskii <eliz@gnu.org>
2230
2231 * keyboard.c (read_char): Fix calculation of auto-save time out
2232 when auto-save-timeout is less than 4. (Bug#13720)
2233
2234 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
2235 time. Improve diagnostics in DebPrint. (Bug#13546)
2236
2237 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
2238 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
2239 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
2240 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
2241 make sure errno is set to an appropriate value. (Bug#13546)
2242 (socket_to_fd): Add assertion against indexing fd_info[] with a
2243 value that is out of bounds.
2244 (sys_accept): If fd is negative, do not set up the child_process
2245 structure for reading.
2246
2247 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
2248
2249 * composite.c (fill_gstring_header): Remove useless prototype.
2250 Break long line.
2251 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
2252 * print.c (PRINTDECLARE, print_object):
2253 * search.c (compile_pattern, fast_looking_at, search_buffer):
2254 (simple_search, boyer_moore, Freplace_match):
2255 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
2256 (get_overlay_arrow_glyph_row, display_mode_element):
2257 (decode_mode_spec_coding, message3):
2258 * xfaces.c (face_at_string_position): Use bool for booleans.
2259 Adjust comments.
2260
2261 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
2262
2263 Fix AIX port (Bug#13650).
2264 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
2265 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
2266 was #undeffed earlier, so it cannot be used as a macro here.
2267 Use the constant and not the macro.
2268
2269 2013-02-15 Eli Zaretskii <eliz@gnu.org>
2270
2271 * w32proc.c (new_child): If no vacant slots are found in
2272 child_procs[], make another pass looking for slots whose process
2273 has exited or died. (Bug#13546)
2274
2275 * w32.c (sys_pipe): When failing due to file descriptors above
2276 MAXDESC, set errno to EMFILE.
2277 (_sys_read_ahead): Update cp->status when failing to read serial
2278 communications input, so that the status doesn't stay at
2279 STATUS_READ_IN_PROGRESS. (Bug#13546)
2280
2281 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
2282
2283 * gtkutil.c (tb_size_cb): New function.
2284 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
2285
2286 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
2287
2288 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
2289 an event.
2290
2291 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
2292
2293 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
2294
2295 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
2296
2297 * font.c (font_range): Add pos_byte argument. Adjust comment
2298 and break long line.
2299 * font.h (font_range): Adjust prototype.
2300 * composite.c (autocmp_chars): Pass byte position to font_range.
2301 Break long line. Remove useless prototype and format comment.
2302
2303 2013-02-13 Glenn Morris <rgm@gnu.org>
2304
2305 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
2306
2307 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
2308
2309 Improve AIX port some more (Bug#13650).
2310 With this, it should be as good as it was in 23.3, though it's
2311 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
2312 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
2313 * unexaix.c (start_of_text): Remove.
2314 (_data, _text): Declare as char[], not int, as AIX manual suggests.
2315 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
2316 (orig_load_scnptr, orig_data_scnptr):
2317 Now off_t, not long, since they are file offsets.
2318 (make_hdr): Use _data, not start_of_data ().
2319 This is the key part of the fix.
2320 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
2321 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
2322
2323 * pre-crt0.c (data_start): Initialize to 1.
2324 This ports to compilers that optimize the external declaration
2325 'int x = 0;' as if it were 'int x;' to shrink the executable.
2326
2327 Improve AIX port (Bug#13650).
2328 This doesn't fix the bug, but it makes progress: Emacs builds now.
2329 * unexaix.c: Include inttypes.h, stdarg.h.
2330 (report_error, report_error_1): Mark as _Noreturn.
2331 (report_error): Don't report the wrong errno.
2332 (report_error_1): Now varargs. All callers changed.
2333 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
2334 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
2335 (write_ptr): Use %p to print address rather than %lx and a cast
2336 to unsigned long. Grow buffer a bit, to be safer.
2337
2338 2013-02-13 Eli Zaretskii <eliz@gnu.org>
2339
2340 * bidi.c (bidi_resolve_neutral): After finding the next
2341 non-neutral character, accept NEUTRAL_ON type as well, because
2342 directional control characters, such as LRE and RLE, have their
2343 type converted to that by bidi_resolve_weak. This avoids aborts
2344 when LRE/RLE follows a run of neutrals.
2345 (bidi_move_to_visually_next): Assert that return value of
2346 bidi_peek_at_next_level is non-negative. Negative values will
2347 cause an infloop.
2348
2349 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
2350
2351 Minor getenv-related fixes.
2352 * callproc.c (Fcall_process_region) [!DOS_NT]:
2353 Avoid unnecessary duplicate call to getenv.
2354 * callproc.c (init_callproc):
2355 * dispnew.c (init_display):
2356 * sysdep.c (sys_subshell):
2357 Omit unnecessary cast of getenv or egetenv.
2358
2359 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
2360
2361 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
2362 Update dependencies.
2363
2364 2013-02-12 Eli Zaretskii <eliz@gnu.org>
2365
2366 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
2367 marker's position.
2368 (display_line): Set w->region_showing to the value of
2369 it->region_beg_charpos, not to -1. This fixes redisplay
2370 optimization when cursor is moved up after M->. (Bug#13623)
2371 (Bug#13626)
2372 (try_scrolling): Scroll text up more if point is too close to ZV
2373 and inside the scroll margin. This makes sure point is moved
2374 outside the scroll margin in these cases.
2375
2376 * window.h (struct window): region_showing can no longer be
2377 negative.
2378
2379 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
2380
2381 Tune by using memchr and memrchr.
2382 * doc.c (Fsnarf_documentation):
2383 * fileio.c (Fsubstitute_in_file_name):
2384 * search.c (find_newline, scan_newline):
2385 * xdisp.c (pos_visible_p, display_count_lines):
2386 Use memchr and memrchr rather than scanning byte-by-byte.
2387 * search.c (find_newline): Rename from scan_buffer.
2388 Omit first arg TARGET, as it's always '\n'. All callers changed.
2389
2390 Clean up read_key_sequence a tiny bit more.
2391 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
2392 (read_key_sequence): Remove unused locals.
2393
2394 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2395
2396 Clean up read_key_sequence a bit; reread active keymaps after first event.
2397 * keyboard.c (read_char, read_char_x_menu_prompt)
2398 (read_char_minibuf_menu_prompt):
2399 Replace nmaps+maps with a single `map' arg.
2400 (follow_key): Operate on a single map.
2401 (active_maps): New function.
2402 (test_undefined): Also return true for nil bindings.
2403 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
2404 a single (composed) keymap. Remember `first_event' to choose the right
2405 set of active keymaps. Recompute the set of keymaps after receiving
2406 the first event. Remove GOBBLE_FIRST_EVENT.
2407 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
2408 * keyboard.h (read_char): Update declaration.
2409 * lread.c (read_filtered_event): Adjust call to read_char.
2410
2411 2013-02-11 Eli Zaretskii <eliz@gnu.org>
2412
2413 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
2414 Don't use the limitation on backwards movement when lines are truncated
2415 in the window. (Bug#13675)
2416
2417 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
2418
2419 * marker.c (set_marker_internal): If desired position is passed
2420 as a marker, avoid call to buf_charpos_to_bytepos.
2421 * window.c (Fset_window_point): Omit redundant type checking.
2422 (Fset_window_start): Likewise. Format comment.
2423 (window_scroll_pixel_based): Use set_marker_restricted_both
2424 with character and byte positions obtained from an iterator.
2425 (Fset_window_configuration): Use set_marker_restricted_both.
2426 * xdisp.c (message_dolog): Likewise.
2427
2428 2013-02-10 Eli Zaretskii <eliz@gnu.org>
2429
2430 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
2431 When text lines are longer than window's screen lines, don't move back
2432 too far. This speeds up some redisplay operations. (Bug#13675)
2433
2434 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
2435
2436 * syntax.c (scan_sexps_forward): Fix byte position calculation
2437 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
2438
2439 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
2440
2441 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
2442 that was not needed.
2443
2444 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
2445
2446 Minor hashing refactoring.
2447 * fns.c (SXHASH_REDUCE): Move to lisp.h.
2448 (sxhash_float): Return EMACS_UINT, for consistency with the other
2449 hash functions.
2450 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
2451 non-static inline function and therefore can't use static vars.
2452 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
2453 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
2454 with the other hash functions.
2455
2456 2013-02-09 Eli Zaretskii <eliz@gnu.org>
2457
2458 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
2459 XXXXXX part of the temporary file pattern is not downcased even
2460 when w32-downcase-file-names is non-nil. (Bug#13661)
2461
2462 * xdisp.c (decode_mode_spec): Remove handling of %t.
2463
2464 * msdos.c (careadlinkatcwd): Remove.
2465
2466 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
2467
2468 * lread.c (skip_dyn_bytes): New function (bug#12598).
2469 (read1): Use it. Use getc instead of READCHAR to read bytes.
2470 (load_each_byte): Remove. Update users.
2471
2472 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
2473
2474 * search.c (scan_buffer): Calculate end byte position just once.
2475 (scan_newline): Do not recalculate start_byte.
2476 (search_command): Use eassert.
2477 * syntax.c (struct lisp_parse_state): New member location_byte.
2478 (scan_sexps_forward): Record from_byte and avoid redundant
2479 character to byte position calculation ...
2480 (Fparse_partial_sexp): ... here. Break too long line.
2481
2482 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
2483
2484 * lisp.h (make_uninit_vector): New function.
2485 * alloc.c (Fvector, Fmake_byte_code):
2486 * ccl.c (Fregister_ccl_program):
2487 * charset.c (Fdefine_charset_internal, define_charset_internal):
2488 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
2489 * composite.c (syms_of_composite):
2490 * font.c (Fquery_font, Ffont_info, syms_of_font):
2491 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
2492 * ftfont.c (ftfont_shape_by_flt):
2493 * indent.c (recompute_width_table):
2494 * nsselect.m (clean_local_selection_data):
2495 * syntax.c (init_syntax_once):
2496 * w32unsubscribe.c (uniscribe_shape):
2497 * window.c (Fcurrent_window_configuration):
2498 * xfaces.c (Fx_family_fonts):
2499 * xselect.c (selection_data_to_lisp_data): Use it.
2500
2501 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
2502
2503 * coding.c (Fdefine_coding_system_internal): Use AREF where
2504 argument is known to be a vector.
2505 * fns.c (Flocale_info): Likewise for ASET.
2506 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
2507 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
2508
2509 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
2510
2511 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
2512 height.
2513
2514 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
2515 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
2516 updateCollectionBehaviour.
2517
2518 * nsterm.m (NEW_STYLE_FS): Remove.
2519 (ns_last_use_native_fullscreen): New variable.
2520 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
2521 (x_set_window_size): Do not take title bar and tool bar into account
2522 if isFullscreen returns YES.
2523 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
2524 (check_native_fs): New function.
2525 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
2526 (ns_term_init): Remove NEW_STYLE_FS.
2527 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
2528 and tool bar if isFullscreen returns NO.
2529 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
2530 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
2531 with HAVE_NATIVE_FS.
2532 (window:willUseFullScreenPresentationOptions:): New method.
2533 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
2534 Hide toolbar if not enabled (Bug#13444).
2535 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
2536 Restore tool bar if enabled, hide it otherwise (Bug#13444).
2537 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
2538 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
2539 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
2540 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
2541 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
2542 (syms_of_nsterm): Add ns-use-native-fullscreen.
2543
2544 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
2545
2546 * fileio.c (Qchoose_write_coding_system): Now static.
2547
2548 2013-02-04 Eli Zaretskii <eliz@gnu.org>
2549
2550 * xdisp.c (window_buffer_changed): region_showing can be negative,
2551 which still means region is being displayed.
2552 (redisplay_internal): Resurrect code that forced redisplay of the
2553 whole window when showing region and the mark has changed.
2554 Record the new mark position to allow redisplay optimizations.
2555 (display_line): If it->region_beg_charpos is non-zero, set the
2556 window's region_showing member to -1. (Bug#13623) (Bug#13626)
2557
2558 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
2559 not bitfield of 1 bit.
2560
2561 2013-02-03 Daniel Colascione <dancol@dancol.org>
2562
2563 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
2564 daemon mode works on cygw32 when Emacs is installed and not just
2565 during development.
2566
2567 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
2568
2569 Avoid file time stamp bug on MS-Windows (Bug#13149).
2570 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
2571 as FAT32 doesn't update time stamps when truncating them.
2572 Also, check that a file time stamp is not a multiple of 100 ns;
2573 this should catch all instances of the problem on MS-Windows,
2574 as its native file system resolution is 100 ns or worse, and
2575 checking for a non-multiple of 100 ns should impose only a small
2576 overhead on systems with ns resolution.
2577
2578 2013-02-02 Eli Zaretskii <eliz@gnu.org>
2579
2580 Avoid encoding file names on MS-Windows when they need to be run
2581 through dostounix_filename.
2582 * w32.c (normalize_filename): Accept an additional argument
2583 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
2584 downcase it even if w32-downcase-file-names is non-nil.
2585 (dostounix_filename): Accept an additional argument MULTIBYTE and
2586 pass it to normalize_filename.
2587 (emacs_root_dir): Adjust.
2588
2589 * msdos.h (dostounix_filename): Adjust prototype.
2590
2591 * w32.h (dostounix_filename): Adjust prototype.
2592
2593 * msdos.c (dostounix_filename): Accept an additional argument and
2594 ignore it.
2595 (init_environment): Adjust callers of dostounix_filename.
2596
2597 * fileio.c (Ffile_name_directory, file_name_as_directory)
2598 (directory_file_name, Fexpand_file_name)
2599 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
2600 dostounix_filename.
2601 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
2602 non-nil.
2603 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
2604 variables, as egetenv is case-insensitive for DOS_NT.
2605
2606 * dired.c (file_name_completion): Don't call Fdirectory_file_name
2607 with an encoded file name.
2608
2609 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
2610 Adjust calls to dostounix_filename.
2611
2612 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
2613
2614 * unexw32.c (unexec): Adjust call to dostounix_filename.
2615
2616 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
2617
2618 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
2619 dostounix_filename.
2620
2621 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
2622 dostounix_filename.
2623
2624 * callproc.c (Fcall_process): Make sure program name in PATH and
2625 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
2626 is passed to exec/spawnve, which fails unless the file-name
2627 encoding is UTF-8.
2628
2629 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
2630 even if w32-quote-process-args is nil.
2631
2632 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
2633
2634 Fix timestamp bug when write-region appends nothing (Bug#13149).
2635 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
2636 the file's time stamp doesn't change if Emacs happens to write nothing
2637 to the file, and on a buggy file system this could cause Emacs to
2638 incorrectly infer that the file system doesn't have the bug.
2639 Avoid this problem by inhibiting the inference in this case.
2640
2641 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
2642
2643 * window.h (struct window): Convert base_line_number, base_line_pos
2644 and column_number_displayed members from Lisp_Object to ptrdiff_t.
2645 Convert region_showing member from Lisp_Object to bitfield.
2646 Remove sequence_number member. Adjust comments.
2647 * window.c (sequence_number): Remove.
2648 (make_window): Initialize column_number_displayed.
2649 * print.c (print_object): Follow the printed representation of
2650 frames and print window pointer to distinguish between windows.
2651 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
2652 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2653 (wset_column_number_displayed, wset_region_showing): Remove.
2654 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
2655 (try_scrolling, try_cursor_movement, redisplay_window)
2656 (try_window_reusing_current_matrix, try_window_id, display_line)
2657 (display_mode_lines, decode_mode_spec): Adjust users.
2658 * .gdbinit (pwinx): Do not print sequence_number.
2659
2660 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
2661
2662 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
2663 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
2664 * dired.c: Include <fcntl.h>.
2665 (open_directory): New function, which uses open and fdopendir
2666 rather than opendir. DOS_NT platforms still use opendir, though.
2667 (directory_files_internal, file_name_completion): Use it.
2668 (file_attributes): New function, with most of the old Ffile_attributes.
2669 (directory_files_internal, Ffile_attributes): Use it.
2670 (file_attributes, file_name_completion_stat): First arg is now fd,
2671 not dir name. All uses changed. Use fstatat rather than lstat +
2672 stat.
2673 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
2674 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
2675 (emacs_readlinkat): New function, with much of the old
2676 Ffile_symlink_p, but with an fd argument for speed.
2677 It uses readlinkat rather than careadlinkatcwd, so that it
2678 need not assume the working directory.
2679 (Ffile_symlink_p): Use it.
2680 * filelock.c (current_lock_owner): Use emacs_readlinkat
2681 rather than emacs_readlink.
2682 * lisp.h (emacs_readlinkat): New decl.
2683 (READLINK_BUFSIZE, emacs_readlink): Remove.
2684 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
2685 (emacs_norealloc_allocator, emacs_readlink): Remove.
2686 This stuff is moved to fileio.c.
2687 * w32.c (fstatat, readlinkat): New functions.
2688 (careadlinkat): Don't check that fd == AT_FDCWD.
2689 (careadlinkatcwd): Remove; no longer needed.
2690
2691 2013-01-31 Glenn Morris <rgm@gnu.org>
2692
2693 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
2694 (Fwrite_region): Update for new choose_write_coding_system args.
2695 Move the last piece of choose_write_coding_system here. (Bug#13522)
2696 (syms_of_fileio): Add choose-write-coding-system.
2697
2698 2013-01-30 Eli Zaretskii <eliz@gnu.org>
2699
2700 * w32.c (sys_open): Zero out the flags for the new file descriptor.
2701 (sys_close): Zero out the flags for the file descriptor before
2702 closing it. (Bug#13546)
2703
2704 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
2705 (logon_network_drive, stat_worker, symlink, chase_symlinks):
2706 Use CharNextExA and CharPrevExA to iterate over file names encoded in
2707 DBCS. (Bug#13553)
2708
2709 * w32.c (w32_get_long_filename, init_environment, readlink):
2710 Support file names encoded in DBCS codepages.
2711 (readlink): Use the current file-name-coding-system, not the ANSI
2712 codepage, to decode and handle targets of symlinks.
2713
2714 2013-01-28 Eli Zaretskii <eliz@gnu.org>
2715
2716 * w32.c (opendir): Now accepts a 'const char *'.
2717
2718 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
2719
2720 Remove obsolete redisplay code. See the discussion at
2721 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
2722 * dispnew.c (preemption_period, preemption_next_check): Remove.
2723 (Vredisplay_preemption_period): Likewise.
2724 (update_frame, update_single_window, update_window, update_frame_1):
2725 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
2726 used, following the 2012-06-22 change.
2727
2728 2013-01-25 Eli Zaretskii <eliz@gnu.org>
2729
2730 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
2731
2732 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
2733
2734 * font.c (num_fonts): Remove the leftover from old
2735 debugging code. Adjust comment style here and there.
2736 * insdel.c (insert_1): Remove.
2737 * lisp.h (insert_1): Remove prototype.
2738 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
2739
2740 2013-01-25 Eli Zaretskii <eliz@gnu.org>
2741
2742 * w32.c (max_filename_mbslen): New function.
2743 (normalize_filename, readdir): Use it to detect locales where ANSI
2744 encoding of file names uses a double-byte character set (DBCS).
2745 If a DBCS encoding is used, advance by characters using
2746 CharNextExA, instead of incrementing a 'char *' pointer.
2747 Use _mbslwr instead of _strlwr. (Bug#13515)
2748
2749 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
2750 request of memory reservation to 1.7GB. (Bug#13065)
2751
2752 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
2753
2754 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
2755 at check_extra_latin label. (Bug#13505)
2756
2757 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2758
2759 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
2760 Avoid redundant calls to strlen.
2761
2762 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2763
2764 Drop async_visible and async_iconified fields of struct frame.
2765 This is possible because async input is gone; for details, see
2766 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
2767 * frame.h (struct frame): Remove async_visible and async_iconified
2768 members, convert garbaged to unsigned bitfield. Adjust comments.
2769 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
2770 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
2771 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
2772 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
2773 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
2774 * w32term.c: Ditto.
2775 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
2776 properly. Likewise for obscured.
2777 * xterm.c: Ditto.
2778 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
2779 properly.
2780 * nsterm.m: Ditto.
2781 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
2782
2783 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
2784
2785 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
2786 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
2787
2788 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
2789
2790 * xdisp.c (message2, message2_nolog): Remove functions.
2791 (message3, message3_nolog): Extract nbytes and multibyteness directly
2792 from the string. Change all callers.
2793 (message3_nolog): Don't set message_enable_multibyte since set_message
2794 will reset it anyway.
2795 (message1, message1_nolog): Use message3.
2796 (vmessage): Use a stack allocated buffer rather than f->message_buf.
2797 (with_echo_area_buffer): Remove last two arguments. Update all callers.
2798 (set_message): Drop all but the second arg, which has to be a string.
2799 (set_message_1): Simplify now that we know that a1 is NULL and the
2800 second arg is a string.
2801 * frame.h (struct frame): Remove `message_buf' field.
2802 Use glyphs_initialized_p instead.
2803 (FRAME_MESSAGE_BUF): Remove macro.
2804 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
2805 * lisp.h (message2, message2_nolog): Remove declarations.
2806 (message3, message3_nolog): Update declarations.
2807 * keyboard.c (read_char_minibuf_menu_text)
2808 (read_char_minibuf_menu_width): Remove vars.
2809 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
2810 to correctly handle multibyte strings.
2811 * frame.c (delete_frame): Don't free message_buf any more.
2812 * editfns.c (message_text, message_length): Remove vars.
2813 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
2814 * fileio.c (auto_save_error): Use message3 instead of message2.
2815 * dispnew.c (adjust_frame_message_buffer): Remove function.
2816
2817 2013-01-23 Eli Zaretskii <eliz@gnu.org>
2818
2819 * w32term.c (w32fullscreen_hook): Account correctly for the screen
2820 real estate used for the tool bar and the menu bar.
2821
2822 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
2823
2824 * insdel.c (prepare_to_modify_buffer): Force redisplay if
2825 hidden buffer is prepared to modification (Bug#13164).
2826
2827 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
2828
2829 * window.h (struct window): Change window_end_valid member from
2830 Lisp_Object to a bitfield. Adjust comments.
2831 (wset_window_end_valid): Remove.
2832 * window.c (adjust_window_count): Clear window_end_valid.
2833 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
2834 (Fwindow_line_height, set_window_buffer, Frecenter)
2835 (Fsplit_window_internal, Fdelete_other_windows_internal)
2836 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
2837 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
2838 * xdisp.c (check_window_end, reconsider_clip_changes)
2839 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
2840 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
2841 (find_first_unchanged_at_end_row, try_window_id): Likewise.
2842
2843 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
2844
2845 * xdisp.c (mark_window_display_accurate): Simplify the loop
2846 assuming that the only one of vchild, hchild or buffer window
2847 slots is non-nil. Call mark_window_display_accurate_1 for
2848 the leaf windows only.
2849 (mark_window_display_accurate_1): Always assume leaf window.
2850 Adjust comment.
2851
2852 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
2853
2854 * emacs.c (Qkill_emacs_hook): Now static.
2855
2856 * fileio.c (Finsert_file_contents): Simplify.
2857 Remove unnecessary assignments and tests.
2858
2859 2013-01-21 Eli Zaretskii <eliz@gnu.org>
2860
2861 * w32.c (acl_set_file): Don't test for errors unless
2862 set_file_security returns FALSE. Avoids spurious errors when
2863 saving files.
2864
2865 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
2866
2867 * fileio.c (Finsert_file_contents): Revert code introduced at
2868 2013-01-18 in favor of the simpler and generally better fix.
2869 Save stack space by removing 'buffer' and reusing 'read_buf'
2870 where appropriate.
2871
2872 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
2873
2874 * lisp.h (eabs): Define unconditionally (Bug#13419).
2875 The old "#if !defined (eabs)" was an unnecessary revenant of back
2876 when this macro was called "abs". Document 'eabs' better.
2877
2878 2013-01-19 Glenn Morris <rgm@gnu.org>
2879
2880 * fns.c (Frandom): Doc fix.
2881
2882 2013-01-19 Eli Zaretskii <eliz@gnu.org>
2883
2884 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
2885 segfault when there are lots of overlays.
2886
2887 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
2888 when there are lots of overlays.
2889 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
2890 for the details and a way to reproduce.
2891
2892 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
2893
2894 * fileio.c: Use O_APPEND to append.
2895 This corresponds better to the natural interpretation of "append",
2896 and avoids the need to open the output file twice, or to invoke
2897 lseek when APPEND is neither nil nor a number.
2898 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
2899 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
2900 file possibly twice, and lseeking to its end; this avoids the
2901 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
2902 at the same time: the combination is never needed and apparently
2903 it doesn't work with DOS_NT.
2904
2905 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
2906 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
2907
2908 Allow floating-point file offsets.
2909 Problem reported by Vitalie Spinu in
2910 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
2911 * fileio.c (emacs_lseek): Remove.
2912 (file_offset): New function.
2913 (Finsert_file_contents, Fwrite_region): Use it.
2914
2915 2013-01-19 Chong Yidong <cyd@gnu.org>
2916
2917 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
2918 aborting on Fsignal (Bug#13289).
2919
2920 2013-01-19 Eli Zaretskii <eliz@gnu.org>
2921
2922 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
2923 set_file_security as failure due to insufficient privileges.
2924 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2925 (fstat): Return owner and group like 'stat' and 'lstat' do.
2926
2927 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
2928
2929 Work around bug in CIFS and vboxsf file systems (Bug#13149).
2930 The bug was observed on Ubuntu operating inside a virtual machine,
2931 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
2932 The workaround introduces a race condition on non-buggy hosts,
2933 but it's an unlikely race and anyway there's a nearly identical
2934 nearby race that can't be fixed.
2935 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
2936 New static vars.
2937 (Fwrite_region): Test for file system time stamp bug.
2938 (init_fileio): New function.
2939 * lisp.h (init_fileio): Declare it.
2940 * emacs.c (main): Call it.
2941
2942 * fileio.c (Finsert_file_contents): Simplify new diagnostic
2943 and make it more consistent with other stat-failure diagnostics.
2944
2945 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
2946
2947 Fix crash when inserting data from non-regular files.
2948 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
2949 for the error description produced by valgrind.
2950 * fileio.c (read_non_regular): Rename to read_contents.
2951 Free Lisp_Save_Value object used to pass parameters.
2952 (read_non_regular_quit): Rename to read_contents_quit.
2953 (Finsert_file_contents): Redesign internal file reading loop to adjust
2954 gap and end positions after each read and so help make_gap to work
2955 properly. Do not signal an I/O error too early and so do not leave
2956 not yet decoded characters in a buffer, which was the reason of
2957 redisplay crash. Use list2 to build return value. Adjust comments.
2958
2959 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
2960
2961 Close a race when statting and reading files (Bug#13149).
2962 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
2963 This avoids a race if the file is renamed between stat and open.
2964 This race is not the problem originally noted in Bug#13149;
2965 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
2966
2967 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
2968
2969 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
2970 objects, related functions and macros.
2971 (make_save_value): Adjust prototype.
2972 (make_save_pointer): New prototype.
2973 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
2974 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
2975 * alloc.c (format_save_value): Rename to make_save_value.
2976 (make_save_pointer): New function.
2977 (record_xmalloc): Use make_save_pointer.
2978 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
2979 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
2980 Change users of make_save_value to make_save_pointer.
2981 Likewise for format_save_value and make_save_value.
2982
2983 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
2984
2985 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
2986 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
2987 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
2988 debugging stubs.
2989
2990 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
2991
2992 * alloc.c (free_save_value): Now static.
2993
2994 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2995
2996 * keymap.c (map_keymap_internal): Use format_save_value.
2997 (map_keymap_char_table_item): Adjust accordingly.
2998 * fileio.c (non_regular_fd, non_regular_inserted)
2999 (non_regular_nbytes): Remove.
3000 (Finsert_file_contents): Convert trytry to ptrdiff_t.
3001 Use format_save_value to pass parameters to read_non_regular.
3002 (read_non_regular): Use XSAVE_ macros to extract parameters.
3003 Adjust comment.
3004 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
3005 format_save_value.
3006 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
3007
3008 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
3009
3010 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
3011 extraction from any Lisp_Save_Value slot. Add type checking.
3012 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
3013 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
3014 * xselect.c: All users changed.
3015
3016 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
3017
3018 Some convenient bits to deal with Lisp_Save_Values.
3019 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
3020 (allocate_misc): Remove prototype.
3021 (format_save_value): New prototype.
3022 * alloc.c (allocate_misc): Revert back to static.
3023 (format_save_value): New function to build Lisp_Save_Value
3024 object with the specified internal structure.
3025 (make_save_value): Reimplement using format_save_value.
3026 * editfns.c (save_excursion_save): Use format_save_value.
3027 (save_excursion_restore): Use XSAVE_OBJECT.
3028
3029 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
3030
3031 Avoid needless casts with XSAVE_POINTER.
3032 * alloc.c (mark_object) [GC_MARK_STACK]:
3033 * dired.c (directory_files_internal_unwind):
3034 * fileio.c (do_auto_save_unwind):
3035 * gtkutil.c (pop_down_dialog):
3036 * keymap.c (map_keymap_char_table_item):
3037 * lread.c (load_unwind):
3038 * nsmenu.m (pop_down_menu):
3039 * print.c (print_object) [GC_MARK_STACK]:
3040 * xfns.c (clean_up_file_dialog):
3041 * xmenu.c (cleanup_widget_value_tree):
3042 Omit casts between XSAVE_POINTER and a pointer type.
3043
3044 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
3045
3046 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
3047 * eval.c (eval_sub): Protect `form' from being GCed before its
3048 car and cdr becomes protected with the backtrace entry.
3049
3050 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
3051
3052 Make Lisp_Save_Value more versatile storage for up to four objects.
3053 * lisp.h (toplevel): Enumeration to describe types of saved objects.
3054 (struct Lisp_Save_Value): New layout. Adjust comments.
3055 (XSAVE_POINTER): New macro.
3056 (XSAVE_INTEGER): Likewise.
3057 (allocate_misc): Add prototype.
3058 (free_misc): Likewise.
3059 * alloc.c (allocate_misc): Now global.
3060 (free_misc): Likewise. Adjust comment.
3061 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
3062 (free_save_value): Likewise.
3063 (mark_object): Likewise.
3064 * editfns.c (save_excursion_save): Pack everything within
3065 Lisp_Save_Value and so avoid xmalloc.
3066 (save_excursion_restore): Adjust to match new layout. Use free_misc
3067 because we do not allocate extra memory any more. Add eassert.
3068 * print.c (print_object): New code to print Lisp_Save_Value. Do not
3069 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
3070 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
3071 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
3072 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
3073
3074 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
3075
3076 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
3077 (nsfont_draw): Remove disabling of LCD smoothing.
3078 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
3079 Bug#11484 with LCD smoothing on.
3080
3081 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
3082
3083 Fix SIGDANGER handlers, for AIX (Bug#13408).
3084 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
3085 Move handlers here from emacs.c; they were out of place.
3086
3087 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
3088
3089 * xterm.c (syms_of_xterm): Adjust documentation for
3090 scroll-bar-adjust-thumb-portion.
3091
3092 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
3093
3094 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
3095 determine whether scroll bar thumb size should be adjusted or not.
3096 Use variable for MOTIF.
3097
3098 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for GTK.
3099
3100 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
3101
3102 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
3103 event is generated.
3104 (doCommandBySelector:): Set processingCompose to NO.
3105
3106 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
3107 Remove check for fkeys count > zero, block/unblock fixes the real bug.
3108 (nsfont_list_family): Add block/unblock_input calls.
3109 (nsfont_open): Move block_input earlier. Add unblock_input before early
3110 return.
3111 (nsfont_draw): Add block/unblock_input calls.
3112
3113 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
3114
3115 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
3116 for old_charpos and old_bytepos.
3117
3118 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
3119
3120 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
3121 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
3122 Clear tzvalbuf_in_environ if this workaround is in effect.
3123 Problem and fix reported by Kazuhiro Ito.
3124
3125 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
3126
3127 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
3128 Fix ambiguous doc string cross-reference(s).
3129
3130 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
3131 doc string cross-reference(s).
3132
3133 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
3134 string cross-reference(s).
3135
3136 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
3137
3138 Avoid unnecessary byte position calculation for the gap movement.
3139 Since all users of move_gap do CHAR_TO_BYTE for other purposes
3140 anyway, all of them should use move_gap_both instead.
3141 * lisp.h (move_gap): Remove prototype.
3142 * insdel.c (move_gap): Remove.
3143 (move_gap_both): Add eassert.
3144 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
3145 * xml.c (parse_region): Likewise.
3146
3147 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
3148
3149 emacsclient -t should not suspend Emacs server (Bug#13387)
3150 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
3151 New functions.
3152 * term.c (init_tty): Use them instead of rolling our own code.
3153 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
3154 switches from 'signal' to 'pthread_sigmask', which is safer in
3155 multithreaded applications.
3156 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
3157 which has already arranged for that.
3158 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
3159 This is the main part of the bug fix.
3160
3161 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
3162
3163 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
3164 x_last_font_name (Bug#13403).
3165
3166 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
3167
3168 Omit buffer_slot_type_mismatch and use generic predicates to enforce
3169 the type of per-buffer values where appropriate.
3170 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
3171 predicate, which is how it's really used now. Adjust comment.
3172 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
3173 * buffer.c (buffer_slot_type_mismatch): Remove.
3174 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
3175 predicate. Adjust comment.
3176 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
3177 fill-column, left-margin, tab-width, buffer-saved-size,
3178 left-margin-width, right-margin-width, left-fringe-width,
3179 right-fringe-width, scroll-bar-width and buffer-display-count.
3180 Use Qstringp for default-directory, buffer-file-name,
3181 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
3182 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
3183 line-spacing.
3184 * data.c (store_symval_forwarding): Adjust to call the predicate.
3185
3186 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
3187
3188 * w32.c (get_name_and_id, acl_set_file):
3189 * w32term.c (w32fullscreen_hook): Remove unused local variables.
3190
3191 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
3192
3193 * lisp.h (make_gap_1): New prototype.
3194 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
3195 gap size values.
3196 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
3197 naming convention.
3198 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
3199 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
3200 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
3201 (make_gap_1): New function to adjust the gap of any buffer.
3202 * coding.c (coding_alloc_by_making_gap): Use it.
3203 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
3204 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
3205
3206 2013-01-08 Juri Linkov <juri@jurta.org>
3207
3208 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
3209 of (supports :underline (:style wave)). (Bug#13000)
3210
3211 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3212
3213 * undo.c (Fprimitive_undo): Move to simple.el.
3214 (syms_of_undo): Remove declarations for Sprimitive_undo.
3215
3216 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
3217
3218 * keyboard.c (echo_add_key): Rename from echo_add_char.
3219
3220 2013-01-06 Chong Yidong <cyd@gnu.org>
3221
3222 * keyboard.c (echo_add_char): New function, factored out from
3223 echo_char. Don't add a space if the previous echo string was
3224 empty (Bug#13255).
3225 (echo_char): Use it.
3226 (read_key_sequence): When echoing mock input, ensure that the
3227 trailing dash is properly added.
3228
3229 2013-01-05 Eli Zaretskii <eliz@gnu.org>
3230
3231 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
3232 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
3233 digits for buffer positions, before misalignment starts.
3234 Display "0" for integer "object" field.
3235 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
3236 Display the newline glyph more unambiguously.
3237
3238 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3239
3240 * nsterm.m (ns_draw_underwave):
3241 * w32term.c (w32_draw_underwave):
3242 * xterm.c (x_draw_underwave): Make underwave look more triangular
3243 and also degrade gracefully for small fonts. (Bug#13000)
3244
3245 * nsterm.m (ns_draw_text_decoration):
3246 * w32term.c (x_draw_glyph_string):
3247 * xterm.c (x_draw_glyph_string): Don't use previous underline
3248 thickness and position if previous underline type is underwave.
3249
3250 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
3251
3252 * fileio.c (Ffile_acl): Undocument return format.
3253
3254 2013-01-02 Glenn Morris <rgm@gnu.org>
3255
3256 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
3257
3258 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
3259
3260 Simplify via eabs.
3261 * dired.c (file_name_completion):
3262 * doc.c (get_doc_string):
3263 * floatfns.c (round2):
3264 * font.c (font_score, font_delete_unmatched):
3265 * fringe.c (compute_fringe_widths):
3266 * lread.c (read_list):
3267 * minibuf.c (Ftry_completion):
3268 * term.c (tty_ins_del_lines):
3269 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
3270 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
3271
3272 2012-12-31 Eli Zaretskii <eliz@gnu.org>
3273
3274 * w32.c (unsetenv): Set up the string passed to _putenv
3275 correctly.
3276 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
3277 for the bug this caused.
3278
3279 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
3280
3281 * coding.c (Qmac): Now static.
3282
3283 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
3284
3285 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
3286 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
3287 handlebox_widget. Set toolbar_in_hbox to false/true, set
3288 toolbar_is_packed to true.
3289 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
3290 (update_frame_tool_bar): Check toolbar_is_packed for packing.
3291 Show all on TOOLBAR_TOP_WIDGET.
3292 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
3293 by TOOLBAR_TOP_WIDGET.
3294 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
3295 Check toolbar_is_packed.
3296 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
3297 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3298 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
3299 false.
3300 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3301 (xg_update_menubar): Update title only if
3302 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3303 (xg_update_submenu): Skip tearoff only if
3304 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3305 (xg_initialize): Initialize xg_detached_menus only if
3306 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3307
3308 * xterm.h (struct x_output): Surround handlebox_widget with
3309 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
3310 toolbar_in_hbox is bool.
3311
3312 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
3313
3314 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
3315 (LIBS_GNUSTEP): Define.
3316 (LIBES): Add $(LIBS_GNUSTEP).
3317 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
3318
3319 2012-12-30 Eli Zaretskii <eliz@gnu.org>
3320
3321 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
3322 continuation glyph on a TTY with an indication of an empty line.
3323 (Bug#13277)
3324
3325 2012-12-29 Eli Zaretskii <eliz@gnu.org>
3326
3327 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
3328 file's SELinux context or ACLs successfully set, nil otherwise.
3329 (Bug#13298)
3330 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
3331
3332 * w32proc.c (reader_thread): Avoid passing NULL handles to
3333 SetEvent and WaitForSingleObject.
3334
3335 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
3336
3337 Port EXTERNALLY_VISIBLE to Clang 3.2.
3338 * conf_post.h (__has_attribute): New macro.
3339 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
3340
3341 2012-12-27 Glenn Morris <rgm@gnu.org>
3342
3343 * cygw32.c (Fcygwin_convert_file_name_to_windows)
3344 (Fcygwin_convert_file_name_from_windows): Doc fixes.
3345
3346 2012-12-27 Eli Zaretskii <eliz@gnu.org>
3347
3348 * fileio.c (file_name_as_directory, directory_file_name):
3349 Accept an additional argument MULTIBYTE to indicate whether the input C
3350 came from a multibyte or a unibyte Lisp string; all callers
3351 adjusted. Don't assume the input string is always multibyte.
3352 (Bug#13262)
3353 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
3354 don't ENCODE_FILE them, and return a unibyte string if the input
3355 was unibyte.
3356 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
3357 don't assume the input strings will always be multibyte. If the
3358 input strings are multibyte, decode strings obtained from C
3359 library functions.
3360
3361 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
3362
3363 * lisp.h (toplevel): Add two notices to the comment about
3364 defining a new Lisp data type.
3365 * print.c (print_object): If Lisp_Save_Value object's pointer
3366 is the address of a memory area containing Lisp_Objects, try
3367 to print them.
3368 * alloc.c (valid_lisp_object_p): Adjust comment.
3369
3370 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
3371
3372 * keyboard.c (record_asynch_buffer_change): Initialize an event
3373 only if it's really needed.
3374 * frame.h (enum output_method): Remove output_mac member since
3375 it's a leftover from the deleted code.
3376 * frame.c (Fframep): Adjust user here ...
3377 * terminal.c (Fterminal_live_p): ... and here.
3378 * coding.c (Qmac): Now here because it's only used to denote
3379 end-of-line encoding type.
3380 (syms_of_coding): DEFSYM it.
3381 * frame.h (Qmac): Remove duplicated declaration.
3382
3383 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
3384
3385 * window.c (select_window_1): Now static, since it's used only here.
3386
3387 2012-12-25 Eli Zaretskii <eliz@gnu.org>
3388
3389 * window.c (window_body_cols): Subtract display margins from the
3390 window body width on TTYs as well. See
3391 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
3392 for the original report.
3393
3394 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
3395
3396 * xdisp.c (redisplay_window): Remove inner local variable
3397 because the outer shadowed one has the same meaning.
3398 * xterm.h (struct x_output): Remove toolbar_detached member since it's
3399 set but never used.
3400 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
3401 (xg_create_tool_bar): Adjust users.
3402
3403 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
3404
3405 * buffer.h (BUF_COMPACT): New macro to follow the common style.
3406 * buffer.c (Fget_buffer_create): Use it to set compact field of
3407 struct buffer_text to avoid accessing an uninitialized value
3408 when compact_buffer is called for the first time.
3409 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
3410 (Fset_buffer_modified_p): Use buffer_window_count to check
3411 whether the buffer is displayed in some window.
3412 * xdisp.c (message_dolog): Likewise.
3413
3414 2012-12-23 Eli Zaretskii <eliz@gnu.org>
3415
3416 * w32.c (acl_set_file): If setting the file security descriptor
3417 fails, and the new DACL is identical to the existing one, silently
3418 return success. This fixes problems for users backing up their
3419 own files without having the necessary privileges for setting
3420 security descriptors.
3421
3422 * w32proc.c (reader_thread): Do not index fd_info[] with negative
3423 values.
3424 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
3425 after WaitForSingleObject returns normally. This expedites reader
3426 thread shutdown when delete_child triggers it.
3427 (reap_subprocess): More accurate commentary for why we call
3428 delete_child only when cp->fd is negative.
3429
3430 * w32.c (sys_close): Do not call delete_child on a subprocess
3431 whose handle is not yet closed. Instead, set its file descriptor
3432 to a negative value, so that reap_subprocess will call
3433 delete_child on that subprocess when its SIGCHLD arrives.
3434 This avoids closing handles used for communications between sys_select
3435 and reader_thread, which doesn't give sys_select a chance to
3436 notice that the process exited and invoke the SIGCHLD handler for
3437 it.
3438
3439 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
3440
3441 * nsfns.m (Fns_do_applescript): Run event loop until script has
3442 been executed (Bug#12969).
3443 (ns_run_ascript): Chech as_script for nil, set to nil after
3444 executing script.
3445
3446 2012-12-22 Martin Rudalics <rudalics@gmx.at>
3447
3448 * window.c (Fselect_window): Reword doc-string (Bug#13248).
3449
3450 2012-12-22 Eli Zaretskii <eliz@gnu.org>
3451
3452 * w32term.c (w32fullscreen_hook): New function.
3453 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
3454
3455 2012-12-21 Eli Zaretskii <eliz@gnu.org>
3456
3457 * fileio.c (Finsert_file_contents): Doc fix.
3458
3459 * w32proc.c (new_child, delete_child, find_child_pid): For a
3460 subprocess, consider its slot being in use as long as its process
3461 handle (procinfo.hProcess) is not NULL. This avoids reusing the
3462 slot when a new process is started immediately after killing
3463 another one, without waiting enough time for the first process to
3464 be reaped and resources allocated for it be orderly freed.
3465 (Bug#13086)
3466 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
3467
3468 2012-12-21 Chong Yidong <cyd@gnu.org>
3469
3470 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
3471
3472 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
3473
3474 2012-12-21 Eli Zaretskii <eliz@gnu.org>
3475
3476 * w32.c (get_name_and_id): Always pass NULL as the first argument
3477 of lookup_account_sid. Avoids crashes with UNC file names that
3478 refer to DFS domains, not to specific machine names. (Bug#12621)
3479 Remove now unused argument FNAME; all callers changed.
3480 (get_file_owner_and_group): Remove now unused argument FNAME; all
3481 callers changed.
3482
3483 2012-12-21 Chong Yidong <cyd@gnu.org>
3484
3485 * editfns.c (Finsert_char): Since read-char-by-name now signals an
3486 error for invalid chars, don't check for a nil return value.
3487
3488 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
3489
3490 Avoid calls to CHAR_TO_BYTE if byte position is known.
3491 * editfns.c (make_buffer_string_both): Use move_gap_both.
3492 (Fbuffer_string): Use make_buffer_string_both.
3493 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
3494 Adjust comment.
3495 (buf_bytepos_to_charpos): Likewise.
3496 (charpos_to_bytepos): Remove.
3497 * fileio.c (Finsert_file_contents): Use move_gap_both.
3498 * search.c (Freplace_match): Likewise.
3499 * process.c (process_send_region): Likewise. Use convenient
3500 names for byte positions.
3501 * lisp.h (charpos_to_bytepos): Remove prototype.
3502 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
3503 * insdel.c (move_gap): Likewise.
3504
3505 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
3506
3507 * xdisp.c (redisplay_internal): Remove now-unused local.
3508
3509 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
3510
3511 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
3512 (redisplay_internal): Don't bother selecting the frame to get the
3513 proper value of frame-local variables (bug#13225).
3514
3515 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
3516
3517 * textprop.c (set_text_properties_1): Do not allow NULL interval.
3518 Rename 4th argument since it may be buffer or string. Adjust comment.
3519 * intervals.c (graft_intervals_info_buffer): Find an interval here.
3520
3521 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
3522
3523 * coding.c (Fdetect_coding_region): Do not check start and end with
3524 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
3525 (code_convert_region): Likewise.
3526
3527 2012-12-18 Eli Zaretskii <eliz@gnu.org>
3528
3529 * w32.c (acl_get_file, acl_set_file): Run the file name through
3530 map_w32_filename, and resolve any symlinks in the file name, like
3531 Posix platforms do.
3532 (acl_set_file): Call revert_to_self, if any privileges were
3533 enabled.
3534
3535 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
3536
3537 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
3538 ($(BLD)/w32.$(O)): Update dependencies.
3539
3540 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
3541
3542 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
3543 propagate redisplay's scrolling (if any) to the right window.
3544 (redisplay_internal): Use ensure_selected_frame.
3545 (display_mode_lines): Complete last fix.
3546 * window.c (select_window_1): New func, extracted from select_window.
3547 (select_window): Use it.
3548 * window.h (select_window_1): Declare.
3549
3550 2012-12-17 Eli Zaretskii <eliz@gnu.org>
3551
3552 Emulate Posix ACL APIs on MS-Windows.
3553 * w32.c: Include sddl.h and sys/acl.h.
3554 (SDDL_REVISION_1): Define if not already defined.
3555 (g_b_init_get_security_descriptor_dacl)
3556 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
3557 (g_b_init_is_valid_security_descriptor)
3558 (g_b_init_set_file_security): New static flags.
3559 (globals_of_w32): Initialize them to zero.
3560 (SetFileSecurity_Name): New string constant.
3561 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
3562 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
3563 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
3564 (IsValidSecurityDescriptor_Proc): New typedefs.
3565 (get_file_security, get_security_descriptor_owner)
3566 (get_security_descriptor_group): Set errno to ENOTSUP.
3567 (set_file_security, get_security_descriptor_dacl)
3568 (is_valid_security_descriptor, convert_sd_to_sddl)
3569 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
3570 (acl_free, acl_get_file, acl_set_file): New functions.
3571
3572 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
3573
3574 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
3575
3576 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
3577 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
3578 for some of that bug's symptoms can now cause Emacs to abort.
3579 Remove the workaround.
3580 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
3581 The bug that caused SIGCHLD to get lost has been fixed, and the
3582 workaround for it can now cause Emacs to abort.
3583
3584 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
3585
3586 * sysdep.c (emacs_abort): Bump backtrace size to 40.
3587 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
3588 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
3589
3590 2012-12-16 Romain Francoise <romain@orebokech.com>
3591
3592 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
3593 (Fcopy_file): Change last arg to `preserve_extended_attributes'
3594 and copy ACL entries of file in addition to SELinux context if set.
3595 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
3596
3597 * Makefile.in (LIBACL_LIBS): New macro.
3598 (LIBES): Use it.
3599
3600 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
3601
3602 * fileio.c (internal_delete_file): Use bool for boolean.
3603
3604 2012-12-15 Eli Zaretskii <eliz@gnu.org>
3605
3606 Fix bug #13079 on MS-Windows with temp files not being deleted.
3607 * w32.h (_child_process): New members input_file and
3608 pending_deletion.
3609 (register_child): First argument is now pid_t.
3610 (record_infile, record_pending_deletion): New prototypes.
3611
3612 * w32proc.c (new_child): Initialize input_file and
3613 pending_deletion members of the child.
3614 (delete_child): Delete the child's temporary input file, if any,
3615 that is pending deletion.
3616 (register_child): First argument is now pid_t.
3617 (record_infile, record_pending_deletion): New functions.
3618 (reap_subprocess): Fix a typo in DebPrint string.
3619 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
3620
3621 * fileio.c (internal_delete_file): Return an int again: non-zero
3622 if delete-file succeeds, zero otherwise.
3623
3624 * lisp.h (internal_delete_file): Adjust prototype.
3625
3626 * callproc.c (Fcall_process): Don't overwrite infile with result
3627 of DECODE_FILE.
3628 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
3629 asynchronous subprocess, record the name of the input file name,
3630 if any.
3631 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
3632 delete the file, record it as pending deletion when the subprocess
3633 exits.
3634
3635 2012-12-14 Eli Zaretskii <eliz@gnu.org>
3636
3637 * editfns.c [HAVE_PWD_H]: Include grp.h.
3638
3639 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
3640
3641 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
3642
3643 Fix permissions bugs with setgid directories etc. (Bug#13125)
3644 * dired.c (Ffile_attributes): Return t as the 9th attribute,
3645 to mark it as a placeholder. The old value was often wrong.
3646 The only user of this attribute has been changed to use
3647 file-ownership-preserved-p instead, with its new group arg.
3648 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
3649
3650 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
3651
3652 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
3653 Keep selected_window and selected_frame in sync.
3654
3655 2012-12-14 Eli Zaretskii <eliz@gnu.org>
3656
3657 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
3658 try to get accurate owner and group information from NT file
3659 security APIs. This is to make most callers of 'stat' and
3660 'lstat', which don't need that information, much faster.
3661
3662 * dired.c (Ffile_attributes) [WINDOWSNT]:
3663 Set w32_stat_get_owner_group to a non-zero value, to request accurate
3664 owner and group information from 'lstat'.
3665
3666 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
3667
3668 * fileio.c (Finsert_file_contents): Don't put tail into head area,
3669 as that confuses set-auto-coding, so insist on the head-read
3670 returning the full 1024 bytes. Let lseek compute the tail offset;
3671 less work for us. Do not ignore I/O errors when reading the tail.
3672
3673 * xdisp.c: Minor style fixes.
3674 (init_iterator): Hoist assignment out of if-expression.
3675 (markpos_of_region): Callers now test for sign, not for -1.
3676
3677 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
3678
3679 Minor redisplay optimization when the region length is zero.
3680 * xdisp.c (markpos_of_region): New function.
3681 (init_iterator): Do not highlight the region of zero length.
3682 (redisplay_window): Check whether the region is of non-zero length.
3683 (try_cursor_movement): Allow if the region length is zero.
3684 (try_window_reusing_current_matrix, try_window_id): Likewise.
3685
3686 2012-12-13 Eli Zaretskii <eliz@gnu.org>
3687
3688 * search.c (search_buffer): Check the inverse translations of each
3689 character in pattern when the buffer being searched is unibyte.
3690 (Bug#13084)
3691
3692 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
3693
3694 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
3695 files, fixing a regression from 24.2.
3696 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
3697
3698 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
3699
3700 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
3701 fstat shouldn't fail, and if it does fail copy-file should not proceed.
3702 Remove unnecessary S_ISLNK test, as (contra the comments) this
3703 function can't copy symlinks. Improve quality of error message
3704 when attempting to copy files that are neither regular files nor
3705 directories.
3706
3707 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
3708
3709 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
3710 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
3711 * window.c (Frecenter):
3712 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
3713 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
3714
3715 2012-12-12 Daniel Colascione <dancol@dancol.org>
3716
3717 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
3718 the dumped Emacs is not a sparse file, greatly improving Cygwin
3719 "make bootstrap" performance.
3720
3721 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
3722
3723 * inotify.c (inotify_callback): Generate an Emacs event for every
3724 incoming inotify event.
3725
3726 2012-12-11 Eli Zaretskii <eliz@gnu.org>
3727
3728 * xdisp.c (handle_face_prop): Fix logic of computing
3729 it->start_of_box_run_p.
3730 (append_space_for_newline): If the glyph row is R2L, reset the
3731 iterator's end_of_box_run_p flag before prepending the space glyph.
3732 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
3733 iterator's start_of_box_run_p flag before prepending the stretch.
3734 (append_glyph, produce_image_glyph, append_composite_glyph)
3735 (append_stretch_glyph, append_glyphless_glyph): Reverse the
3736 left_box_line_p and right_box_line_p flags of the glyph for R2L
3737 glyph rows. (Bug#13011)
3738
3739 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
3740
3741 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
3742 if changed buffer is not shown in a window.
3743 * insdel.c (prepare_to_modify_buffer): Likewise.
3744 * window.c (replace_buffer_in_windows_safely): Do nothing
3745 if buffer is not shown in a window.
3746 (Fforce_window_update): Likewise if string or buffer argument
3747 is passed.
3748
3749 2012-12-11 Eli Zaretskii <eliz@gnu.org>
3750
3751 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
3752 encoded_file_name, which is what it is.
3753
3754 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
3755
3756 Consistently use marker_position and marker_byte_position.
3757 * fringe.c (Ffringe_bitmaps_at_pos):
3758 * indent.c (Fvertical_motion):
3759 * insdel.c (prepare_to_modify_buffer):
3760 * keyboard.c (make_lispy_position):
3761 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
3762 (window_scroll_pixel_based, displayed_window_lines)
3763 (Fset_window_configuration):
3764 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
3765 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
3766 Replace direct access to marker fields with calls
3767 to marker_position and/or marker_byte_position.
3768
3769 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
3770
3771 * makefile.w32-in (SIG2STR_H): New macro.
3772 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
3773 ($(BLD)/w32notify.$(O)): Update dependencies.
3774
3775 2012-12-10 Daniel Colascione <dancol@dancol.org>
3776
3777 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
3778 Windows file notification functionality unless WINDOWSNT.
3779
3780 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
3781 declarations.
3782
3783 * w32fns.c (cache_system_info): Initialize the global hinst
3784 variable here so various initialization calls DTRT.
3785
3786 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
3787 (hinst): Remove unneeded extern declaration.
3788 (_start): Remove initialization of above variables; remove
3789 initialization of hinst, as cache_system_info now does that.
3790
3791 * emacs.c (main): Call cache_system_info early in startup; we
3792 previously weren't calling it in Cygwin builds.
3793
3794 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
3795 Teach the autoconf build system how to compile a Windows resource file
3796 and link it to Emacs.
3797
3798 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
3799
3800 Per-buffer window counters.
3801 * buffer.h (struct buffer): New member window_count.
3802 (buffer_window_count): New function.
3803 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
3804 Initialize window_count.
3805 (Fkill_buffer): Verify window_count for the buffer being killed.
3806 (modify_overlay): Do not force redisplay if buffer is not shown
3807 in any window.
3808 (init_buffer_once): Initialize window_count for buffer_defaults
3809 and buffer_local_symbols.
3810 * window.h (buffer_shared): Remove declaration.
3811 (wset_buffer): Convert from inline ...
3812 * window.c (wset_buffer): ... to an ordinary function.
3813 (adjust_window_count): New function.
3814 (make_parent_window): Use it.
3815 * xdisp.c (buffer_shared): Remove.
3816 (redisplay_internal, redisplay_window): Adjust users.
3817 (buffer_shared_and_changed): Use per-buffer window counter.
3818
3819 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3820
3821 Support for filesystem notifications on MS-Windows.
3822 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
3823 and this is a TTY frame, signal the caller that keyboard input is
3824 available.
3825
3826 * w32xfns.c (drain_message_queue): Now returns an int: an
3827 indication whether any WM_EMACS_FILENOTIFY messages were found in
3828 the queue.
3829
3830 * w32inevt.c (handle_file_notifications): New function.
3831 (w32_console_read_socket): Call it to process file notifications.
3832
3833 * w32console.c (initialize_w32_display): Record the main thread ID
3834 in dwMainThreadId.
3835
3836 * deps.mk (inotify.o): New dependency list.
3837
3838 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
3839
3840 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
3841 (WM_EMACS_END): Bump value by 1.
3842 (notification_buffer_in_use, file_notifications)
3843 (notifications_size, notifications_desc): Declare.
3844 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
3845 Add prototypes.
3846
3847 * w32term.c (lispy_file_action, queue_notifications): New functions.
3848 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
3849 <Qrenamed_to>: New symbols.
3850 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
3851
3852 * w32notify.c: New file, implements file event notifications for
3853 MS-Windows.
3854
3855 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
3856 by posting it to the w32_read_socket queue.
3857
3858 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
3859
3860 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
3861 (GLOBAL_SOURCES): Add w32notify.c
3862 ($(BLD)/w32notify.$(O)): New set of dependencies.
3863
3864 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
3865
3866 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
3867 Handle FILE_NOTIFY_EVENT.
3868 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
3869 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
3870 w32notify-handle-event by default.
3871
3872 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
3873 syms_of_w32notify.
3874
3875 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
3876
3877 Support for filesystem notifications on GNU/Linux via inotify.
3878 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
3879
3880 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
3881
3882 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
3883 (syms_of_keyboard): DEFSYM it.
3884 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
3885 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
3886 Qfile_inotify events.
3887 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
3888 special-event-map to inotify-handle-event.
3889
3890 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
3891
3892 * Makefile.in (base_obj): Add inotify.o.
3893
3894 * inotify.c: New file.
3895
3896 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
3897
3898 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
3899
3900 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
3901
3902 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
3903 DWORD_PTR, for compatibility with 64-bit builds.
3904
3905 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
3906 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
3907 (system_process_attributes): Use SIZE_T rather than DWORD, for
3908 compatibility with 64-bit builds.
3909
3910 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
3911
3912 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
3913
3914 2012-12-10 Eli Zaretskii <eliz@gnu.org>
3915
3916 * indent.c (Fvertical_motion): If a display string will be
3917 displayed on the left or the right margin, don't consider it as a
3918 factor in cursor positioning. (Bug#13108)
3919
3920 2012-12-10 Martin Rudalics <rudalics@gmx.at>
3921
3922 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
3923
3924 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
3925
3926 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
3927 for string length.
3928
3929 2012-12-08 Eli Zaretskii <eliz@gnu.org>
3930
3931 * w32.c (unsetenv): Return 0 if the input string is too long.
3932
3933 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
3934
3935 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
3936 * alloc.c (xputenv): New function.
3937 * dbusbind.c (Fdbus_init_bus):
3938 * emacs.c (main):
3939 * xterm.c (x_term_init):
3940 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
3941 * editfns.c (initial_tz): Move static var decl up.
3942 (tzvalbuf_in_environ): New static var.
3943 (init_editfns): Initialize these two static vars.
3944 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
3945 Save old TZ value on stack, if it's small.
3946 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
3947 instead, use xputenv+unsetenv to set and restore TZ.
3948 (environbuf): Remove static var. All uses removed.
3949 (Fset_time_zone_rule): Do not save TZ and environ;
3950 no longer needed here.
3951 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
3952 Move to inside set_time_zone_rule; they don't need file scope any more.
3953 (set_time_zone_rule): Maintain the TZ=value string separately.
3954 (syms_of_editfns): Don't initialize initial_tz;
3955 init_editfns now does it.
3956 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
3957 * lisp.h (xputenv): New decl.
3958
3959 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
3960
3961 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
3962
3963 2012-12-08 Eli Zaretskii <eliz@gnu.org>
3964
3965 * w32.c (unsetenv, sys_putenv): New functions.
3966
3967 2012-12-08 Chong Yidong <cyd@gnu.org>
3968
3969 * editfns.c (Finsert_char): Make the error message more
3970 informative (Bug#12992).
3971
3972 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
3973
3974 Simplify get_lim_data.
3975 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
3976 Remove USG and vlimit methods; no longer used these days.
3977 Add #error catchall just in case.
3978
3979 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
3980 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
3981 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
3982 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
3983 (deleted_pid_list, Fdelete_process, create_process)
3984 (record_child_status_change, handle_child_signal, deliver_child_signal)
3985 (init_process_emacs, syms_of_process):
3986 Assume SIGCHLD is defined.
3987 (parse_signal): Remove. All uses removed.
3988 (abbr_to_signal): New static function.
3989 (Fsignal_process): Use it to convert signal names to ints.
3990 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
3991 kill (getpgrp (), ...).
3992 (emacs_sigaction_init): Assume SIGCHLD is defined.
3993 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
3994 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
3995 * syssignal.h (EMACS_KILLPG): Remove.
3996 All uses replaced by 'kill' with a negative pid.
3997 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
3998 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
3999
4000 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
4001
4002 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
4003 This will cause a production Emacs to dump core instead of
4004 infinite-looping.
4005
4006 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
4007
4008 * frame.c (make_frame): Do not set window's buffer to t.
4009 * window.c (Fsplit_window_internal): Likewise. Previously it was
4010 used to indicate that the window is being set up. Now we use
4011 set_window_buffer for all new windows, so the condition in ...
4012 (Fset_window_buffer): ... is always true and can be removed.
4013
4014 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
4015
4016 Convenient macro to check whether the buffer is hidden.
4017 * buffer.h (BUFFER_HIDDEN_P): New macro.
4018 * frame.c (make_frame): Use it. Adjust comment.
4019 * buffer.c (candidate_buffer): New function.
4020 (Fother_buffer, other_buffer_safely): Use it.
4021
4022 2012-12-06 Eli Zaretskii <eliz@gnu.org>
4023
4024 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
4025 if the child process is still running. Instead, exit the wait
4026 loop and return zero. (Bug#13086)
4027
4028 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
4029
4030 * frame.h (x_char_width, x_char_height): Remove prototypes.
4031 * w32term.h (x_char_width, x_char_height): Likewise.
4032 * xfns.c (x_char_width, x_char_height): Remove.
4033 * w32fns.c (x_char_width, x_char_height): Likewise.
4034 * nsfns.c (x_char_width, x_char_height): Likewise.
4035 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
4036 all window frames.
4037 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
4038 * keyboard.c (command_loop_1): Remove prototype.
4039 (command_loop_2, top_level_1): Add static to match prototype.
4040
4041 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
4042
4043 Fix a recently-introduced delete-process race condition.
4044 * callproc.c, process.h (record_kill_process):
4045 New function, containing part of the old call_process_kill.
4046 (call_process_kill): Use it.
4047 This does not change call_process_kill's behavior.
4048 * process.c (Fdelete_process): Use record_kill_process to fix a
4049 race condition that could cause Emacs to lose track of a child.
4050
4051 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
4052
4053 Avoid code duplication between prev_frame and next_frame.
4054 * frame.c (candidate_frame): New function. Add comment.
4055 (prev_frame, next_frame): Use it. Adjust comment.
4056
4057 2012-12-06 Eli Zaretskii <eliz@gnu.org>
4058
4059 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
4060 fails, signal an error instead of continuing with an empty
4061 string. (Bug#13079)
4062 Encode expanded temp file pattern before passing it to mkstemp or
4063 mktemp.
4064
4065 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
4066 Encode the file name before passing it to dostounix_filename, in
4067 case it will downcase it (under w32-downcase-file-names).
4068 (Bug#12933)
4069
4070 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
4071
4072 Minor call-process cleanups.
4073 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
4074 at the same time as other platforms, to simplify analysis.
4075 No need for fd0_volatile since we have synch_process_fd.
4076 Avoid needless emacs_close; arg is always negative.
4077
4078 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
4079
4080 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
4081 processes.
4082
4083 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
4084
4085 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
4086 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
4087 and mouse_face_hidden members to a bitfields.
4088 * frame.h (struct frame): Remove set-but-not-used space_width member.
4089 (FRAME_SPACE_WIDTH): Remove.
4090 * nsterm.m, w32term.c, xterm.c: Adjust users.
4091 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
4092 member. Adjust users. Convert term_initted, delete_in_insert_mode,
4093 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
4094 members to a bitfields.
4095
4096 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
4097
4098 Don't let call-process be a zombie factory (Bug#12980).
4099 Fixing this bug required some cleanup of the signal-handling code.
4100 As a side effect, this change also fixes a longstanding rare race
4101 condition whereby Emacs could mistakenly kill unrelated processes,
4102 and it fixes a bug where a second C-g does not kill a recalcitrant
4103 synchronous process in GNU/Linux and similar platforms.
4104 The patch should also fix the last vestiges of Bug#9488,
4105 a bug which has mostly been fixed on the trunk by other changes.
4106 * callproc.c, process.h (synch_process_alive, synch_process_death)
4107 (synch_process_termsig, sync_process_retcode):
4108 Remove. All uses removed, to simplify analysis and so that
4109 less consing is done inside critical sections.
4110 * callproc.c (call_process_exited): Remove. All uses replaced
4111 with !synch_process_pid.
4112 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
4113 These take the role of what used to be in unwind-protect arg.
4114 All uses changed.
4115 (block_child_signal, unblock_child_signal):
4116 New functions, to avoid races that could kill innocent-victim processes.
4117 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
4118 (call_process_kill): Record killed processes as deleted, so that
4119 zombies do not clutter up the system. Do this inside a critical
4120 section, to avoid a race that would allow the clutter.
4121 (call_process_cleanup): Fix code so that the second C-g works again
4122 on common platforms such as GNU/Linux.
4123 (Fcall_process): Create the child process in a critical section,
4124 to fix a race condition. If creating an asynchronous process,
4125 record it as deleted so that zombies do not clutter up the system.
4126 Do unwind-protect for WINDOWSNT too, as that's simpler in the
4127 light of these changes. Omit unnecessary call to emacs_close
4128 before failure, as the unwind-protect code does that.
4129 * callproc.c (call_process_cleanup):
4130 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
4131 * process.c (record_deleted_pid): New function, containing
4132 code refactored out of Fdelete_process.
4133 (Fdelete_process): Use it.
4134 (process_status_retrieved): Remove. All callers changed to use
4135 child_status_change.
4136 (record_child_status_change): Remove, folding its contents into ...
4137 (handle_child_signal): ... this signal handler. Now, this
4138 function is purely a handler for SIGCHLD, and is not called after
4139 a synchronous waitpid returns; the synchronous code is moved to
4140 wait_for_termination. There is no need to worry about reaping
4141 more than one child now.
4142 * sysdep.c (get_child_status, child_status_changed): New functions.
4143 (wait_for_termination): Now takes int * status and bool
4144 interruptible arguments, too. Do not record child status change;
4145 that's now the caller's responsibility. All callers changed.
4146 Reimplement in terms of get_child_status.
4147 (wait_for_termination_1, interruptible_wait_for_termination):
4148 Remove. All callers changed to use wait_for_termination.
4149 * syswait.h: Include <stdbool.h>, for bool.
4150 (record_child_status_change, interruptible_wait_for_termination):
4151 Remove decls.
4152 (record_deleted_pid, child_status_changed): New decls.
4153 (wait_for_termination): Adjust to API changes noted above.
4154
4155 * bytecode.c, lisp.h (Qbytecode): Remove.
4156 No longer needed after 2012-11-20 interactive-p changes.
4157
4158 2012-12-03 Eli Zaretskii <eliz@gnu.org>
4159
4160 * xdisp.c (redisplay_window): If the cursor is visible, but inside
4161 the scroll margin, move point outside the margin. (Bug#13055)
4162
4163 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
4164
4165 * gtkutil.c (my_log_handler): New function.
4166 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
4167
4168 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
4169
4170 * lisp.h (modify_region): Rename to...
4171 (modify_region_1): ...new prototype.
4172 * textprop.c (modify_region): Now static. Adjust users.
4173 * insdel.c (modify_region): Rename to...
4174 (modify_region_1): ...new function to work with current buffer.
4175 Adjust comment and users. Use true and false for booleans.
4176
4177 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
4178
4179 * alloc.c (free_save_value): New function.
4180 (safe_alloca_unwind): Use it.
4181 * lisp.h (free_save_value): New prototype.
4182 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
4183 Add comment.
4184 (save_excursion_restore): Adjust to match saved data structure.
4185 Use free_save_value to offload some work from GC. Drop obsolete
4186 #if 0 code.
4187
4188 2012-12-03 Chong Yidong <cyd@gnu.org>
4189
4190 * fileio.c (Vauto_save_list_file_name): Doc fix.
4191
4192 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
4193
4194 * w32fns.c: Remove prototype of atof.
4195 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
4196 builds.
4197 (file_dialog_callback): Make it UINT_PTR.
4198
4199 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
4200 with 64-bit builds.
4201
4202 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
4203 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
4204 defined.
4205
4206 2012-12-03 Glenn Morris <rgm@gnu.org>
4207
4208 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
4209
4210 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
4211
4212 Fix xpalloc confusion after memory is exhausted.
4213 * alloc.c (xpalloc): Comment fix.
4214 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
4215 and signals an error, do not clear charset_table_size, as
4216 charset_table is still valid.
4217 * doprnt.c (evxprintf): Clear *BUF after freeing it.
4218
4219 Use execve to avoid need to munge environ (Bug#13054).
4220 * callproc.c (Fcall_process):
4221 * process.c (create_process):
4222 Don't save and restore environ; no longer needed.
4223 * callproc.c (child_setup):
4224 Use execve, not execvp, to preserve environ.
4225
4226 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
4227
4228 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
4229
4230 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4231
4232 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
4233 display for sliced images (Bug#10500).
4234
4235 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
4236
4237 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
4238
4239 * doc.c (Fdocumentation): Re-add handling of function-documentation,
4240 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
4241
4242 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
4243
4244 * xdisp.c (window_outdated): Remove eassert since it hits
4245 some suspicious corner cases (see Bug#13007 and Bug#13012).
4246 (mode_line_update_needed): New function.
4247 (redisplay_internal, redisplay_window): Use it.
4248 (ensure_selected_frame): New function.
4249 (redisplay_internal, unwind_redisplay): Use it.
4250 (redisplay_internal): Move comment about buffer_shared...
4251 (buffer_shared_and_changed): ...near to its real use.
4252
4253 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
4254
4255 * callproc.c (Fcall_process): Don't misreport vfork failure.
4256
4257 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
4258
4259 * callproc.c (Fcall_process): Fix vfork portability problems.
4260 Do not assume that fd[0], count, filefd, and save_environ survive
4261 vfork. Fix bug whereby wrong errno value could be reported for
4262 pipe failure. Some minor cleanups, too, as follows. Move buf and
4263 bufsize to the context where they're needed. Change new_argv to
4264 be of type char **, as this is more convenient and avoids casts.
4265 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
4266 Now local constants, not macros.
4267
4268 2012-11-18 Kenichi Handa <handa@gnu.org>
4269
4270 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
4271 for the variable "f".
4272
4273 2012-11-13 Kenichi Handa <handa@gnu.org>
4274
4275 * font.c (font_unparse_xlfd): Exclude special characters from the
4276 generating XLFD name.
4277
4278 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
4279
4280 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
4281 * dired.c (stat_uname, stat_gname):
4282 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
4283
4284 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
4285 * dired.c (directory_files_internal, file_name_completion):
4286 Assume EAGAIN and EINTR are defined.
4287
4288 * fileio.c (Fcopy_file): Assume EISDIR is defined.
4289 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
4290 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
4291 * lread.c (readbyte_from_file): Assume EINTR is defined.
4292 * process.c (wait_reading_process_output, send_process) [subprocesses]:
4293 Assume EIO and EAGAIN are defined.
4294 * unexcoff.c (write_segment): Assume EFAULT is defined.
4295
4296 2012-11-27 Eli Zaretskii <eliz@gnu.org>
4297
4298 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
4299 (Bug#11964)
4300
4301 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
4302 highlighting on the frame was cleared. Prevents assertion
4303 violations when repeatedly clicking on the "Top" link of the
4304 "bread-crumbs" in Info buffers.
4305
4306 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
4307
4308 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
4309
4310 2012-11-24 Ken Brown <kbrown@cornell.edu>
4311
4312 * keyboard.c (HAVE_MOUSE):
4313 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
4314 were always defined.
4315
4316 2012-11-24 Eli Zaretskii <eliz@gnu.org>
4317
4318 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
4319 between bpos_covered and bpos_max. This fixes cursor display when
4320 several display strings follow each other.
4321
4322 * .gdbinit (pgx): If the glyph's object is a string, display the
4323 pointer to string data, rather than the value of the string object
4324 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
4325
4326 * indent.c (Fvertical_motion): If the starting position is covered
4327 by a display string, return to one position before that, to avoid
4328 overshooting it inside move_it_to. (Bug#12930)
4329
4330 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
4331
4332 * frame.h (struct frame): Remove display_preempted member
4333 since all users are dead long ago.
4334 * nsterm.h (struct x_output): Use the only dummy member.
4335 * w32menu.c (pending_menu_activation): Remove since not
4336 really used.
4337 (set_frame_menubar): Adjust user.
4338 * w32term.h (struct x_output): Drop outdated #if 0 code.
4339 (struct w32_output): Use bitfields for explicit_parent,
4340 asked_for_visible and menubar_active members.
4341 Drop unused pending_menu_activation member.
4342 * xterm.h (struct x_output): Drop outdated #if 0 code.
4343 Use bitfields for explicit_parent, asked_for_visible,
4344 has_been_visible and net_wm_state_hidden_seen members.
4345
4346 2012-11-23 Eli Zaretskii <eliz@gnu.org>
4347
4348 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
4349 of a literal "/". (Bug#12955)
4350 (gl-stamp): Invoke fc.exe directly, not through cmd.
4351
4352 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
4353
4354 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
4355 * dired.c: Assume HAVE_DIRENT_H.
4356 (NAMLEN): Remove, replacing with ...
4357 (dirent_namelen): New function. All uses changed. Use the GNU macro
4358 _D_EXACT_NAMELEN if available, as it's faster than strlen.
4359 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
4360 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
4361 * makefile.w32-in (DIR_H): Remove. All uses replaced with
4362 $(NT_INC)/dirent.h.
4363 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
4364 * ndir.h: Rename to ../nt/inc/dirent.h.
4365 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
4366 Do not include <dirent.h>; no longer needed.
4367 * w32.c: Include <dirent.h> rather than "ndir.h".
4368
4369 2012-11-23 Chong Yidong <cyd@gnu.org>
4370
4371 * xftfont.c (xftfont_open): Remove duplicate assignment.
4372
4373 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
4374
4375 * alloc.c (Fgarbage_collect): Unblock input after clearing
4376 gc_in_progress to avoid note_mouse_highlight glitch with GC.
4377 * frame.h (FRAME_MOUSE_UPDATE): New macro.
4378 * msdos.c (IT_frame_up_to_date): Use it here...
4379 * w32term.c (w32_frame_up_to_date): ...here...
4380 * xterm.c (XTframe_up_to_date): ...and here...
4381 * nsterm.m (ns_frame_up_to_date): ...but not here.
4382 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
4383 Adjust users.
4384 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
4385 Do not check whether GC is in progress.
4386
4387 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
4388
4389 * xdisp.c (window_buffer_changed): New function.
4390 (update_menu_bar, update_tool_bar): Use it to
4391 simplify large 'if' statements.
4392 (redisplay_internal): Generalize commonly used
4393 'tail' and 'frame' local variables.
4394
4395 2012-11-22 Eli Zaretskii <eliz@gnu.org>
4396
4397 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
4398 with Windows system header.
4399
4400 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
4401
4402 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
4403 * alloc.c: Assume unistd.h exists.
4404 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
4405 * sysdep.c (get_current_dir_name): Assume getcwd exists.
4406 (getwd) [USG]: Remove; no longer needed.
4407 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
4408 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
4409 * w32.h (getcwd): Remove decl.
4410
4411 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
4412
4413 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
4414 Make it set selected_window as well.
4415 (update_tool_bar): Use it.
4416
4417 2012-11-21 Ken Brown <kbrown@cornell.edu>
4418
4419 * emacs.c (main): Set the G_SLICE environment variable for all
4420 Cygwin builds, not just GTK builds. See
4421 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
4422
4423 2012-11-21 Eli Zaretskii <eliz@gnu.org>
4424
4425 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
4426 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
4427 Define for the MSVC compiler.
4428
4429 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
4430
4431 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
4432 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
4433 dostounix_filename. Prevents crashes down the road, because
4434 dostounix_filename assumes it gets a unibyte string.
4435 Reported by Michel de Ruiter <michel@sentient.nl>, see
4436 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
4437
4438 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4439
4440 Conflate Qnil and Qunbound for `symbol-function'.
4441 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
4442 * lread.c (init_obarray): Set `function' fields to Qnil.
4443 * eval.c (Fcommandp): Ignore Qunbound.
4444 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
4445 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
4446 Test NILP rather than Qunbound.
4447 (Ffmakunbound): Set to Qnil.
4448 (Fsymbol_function): Never signal an error.
4449 (Finteractive_form): Ignore Qunbound.
4450
4451 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
4452
4453 * eval.c (interactive_p): Remove no-longer-used decl.
4454
4455 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
4456
4457 * xdisp.c (buffer_shared): Adjust comment.
4458 (buffer_shared_and_changed): New function.
4459 (prepare_menu_bars, redisplay_internal): Use it to
4460 decide whether all windows or frames should be updated.
4461 (window_outdated): New function.
4462 (text_outside_line_unchanged_p, redisplay_window): Use it.
4463 (redisplay_internal): Likewise. Fix indentation.
4464
4465 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
4466
4467 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
4468 (syms_of_eval): Remove corresponding defsubr.
4469 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
4470
4471 2012-11-19 Daniel Colascione <dancol@dancol.org>
4472
4473 * w32fns.c (Fx_file_dialog):
4474 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
4475 cygwin_convert_file_name*.
4476
4477 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
4478 Rename cygwin_convert_path* to cygwin_convert_file_name*.
4479
4480 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
4481
4482 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
4483
4484 2012-11-18 Eli Zaretskii <eliz@gnu.org>
4485
4486 * w32select.c: Include w32common.h before w32term.h, so that
4487 windows.h gets included before w32term.h uses some of its
4488 features, see below.
4489
4490 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
4491 New typedefs.
4492 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
4493 New prototypes.
4494 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
4495
4496 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
4497
4498 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
4499 (ns_select): Return at once if events are held (Bug#12834).
4500
4501 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
4502
4503 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
4504 Needed following 2012-10-20 change. (Bug#12902)
4505
4506 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
4507
4508 * w32proc.c (waitpid): Remove unused label get_result.
4509
4510 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
4511
4512 * makefile.w32-in (SYSWAIT_H): New macro.
4513 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
4514 ($(BLD)/sysdep.$(O)): Update dependencies.
4515
4516 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
4517
4518 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
4519 * callproc.c (relocate_fd): Assume F_DUPFD.
4520 * emacs.c, term.c (O_RDWR): Remove.
4521 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
4522 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
4523 * nsterm.m: Assume <fcntl.h> exists.
4524 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
4525 (create_pty, Fmake_network_process, server_accept_connection)
4526 (wait_reading_process_output, init_process_emacs):
4527 Assume O_NONBLOCK.
4528 (wait_reading_process_output): Put in a special case for WINDOWSNT
4529 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
4530 It's not clear this is needed, but it's a more-conservative change.
4531 (create_process): Assume FD_CLOEXEC.
4532 (create_process, create_pty): Assume O_NOCTTY.
4533 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
4534 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
4535 Omit if not DOS_NT, since F_GETFL is not defined there.
4536 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
4537 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
4538 (O_NOCTTY): Remove.
4539 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
4540 lack it, since gnulib guarantees this.
4541 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
4542
4543 2012-11-17 Eli Zaretskii <eliz@gnu.org>
4544
4545 * w32.c (faccessat): Pretend that directories have the execute bit
4546 set. Emacs expects that, e.g., in files.el:cd-absolute.
4547
4548 * w32proc.c (create_child): Don't clip the PID of the child
4549 process to fit into an Emacs integer, as this is no longer a
4550 restriction.
4551 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
4552 reaping only the process specified by PID argument, if that is
4553 positive. Use PID instead of dead_child to know which process to
4554 reap. Wait for the child to die only if WNOHANG is not in
4555 OPTIONS.
4556 (sys_select): Don't set dead_child.
4557
4558 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
4559 as it is no longer needed.
4560
4561 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
4562 no longer needed.
4563 (record_child_status_change): Remove the setting of
4564 record_at_most_one_child for the !WNOHANG case.
4565
4566 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
4567
4568 Fix problems in ns port found by static checking.
4569 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
4570 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
4571 not to process group.
4572 (ns_select): Use emacs_write, not write, as that's more robust
4573 in the presence of signals.
4574 (fd_handler:): Check for read errors.
4575
4576 2012-11-16 Glenn Morris <rgm@gnu.org>
4577
4578 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
4579
4580 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
4581
4582 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
4583
4584 2012-11-16 Eli Zaretskii <eliz@gnu.org>
4585
4586 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
4587 use the same value of thread handle.
4588 (start_timer_thread): If the timer thread exited (due to error),
4589 clean up by closing the two handles it used. Duplicate the caller
4590 thread's handle here, so it gets duplicated only once, when
4591 launching the timer thread. Set priority of the timer thread, not
4592 the caller thread.
4593 (getitimer): Don't duplicate the caller thread's handle here.
4594 (Bug#12832)
4595
4596 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
4597
4598 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
4599 called (Bug#12834).
4600
4601 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
4602
4603 Remove no-longer-used pty_max_bytes variable.
4604 * process.c (pty_max_bytes): Remove; unused.
4605 (send_process): Do not set it.
4606
4607 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
4608
4609 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
4610 Update dependencies.
4611
4612 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
4613
4614 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
4615 This follows up on the 2012-09-29 patch that removed indirection
4616 for the 'function' field. Reported by Sergey Vinokurov in
4617 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
4618
4619 2012-11-14 Eli Zaretskii <eliz@gnu.org>
4620
4621 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
4622 different name, as the MS runtime does not have such a function,
4623 and probably never will.) All callers changed. Ignore DIRFD
4624 value if PATH is an absolute file name, to match Posix spec
4625 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
4626 symlinks.
4627
4628 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
4629
4630 * xdisp.c (echo_area_display, redisplay_internal):
4631 Omit redundant check whether frame_garbaged is set.
4632
4633 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
4634
4635 Use faccessat, not access, when checking file permissions (Bug#12632).
4636 This fixes a bug that has been present in Emacs since its creation.
4637 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
4638 which must set some sort of record. (Torek's bug report was against
4639 a predecessor of GNU Emacs, but GNU Emacs happened to have the
4640 same common flaw.) See Torek's Usenet posting
4641 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
4642 Posted: Fri Apr 8 14:18:56 1983.
4643 * Makefile.in (LIB_EACCESS): New macro.
4644 (LIBES): Use it.
4645 * callproc.c (init_callproc):
4646 * charset.c (init_charset):
4647 * fileio.c (check_existing, check_executable, check_writable)
4648 (Ffile_readable_p):
4649 * lread.c (openp, load_path_check):
4650 * process.c (allocate_pty):
4651 * xrdb.c (file_p):
4652 Use effective UID when checking permissions, not real UID.
4653 * callproc.c (init_callproc):
4654 * charset.c (init_charset):
4655 * lread.c (load_path_check, init_lread):
4656 Test whether directories are accessible, not merely whether they exist.
4657 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
4658 * fileio.c (check_existing, check_executable, check_writable)
4659 (Ffile_readable_p):
4660 Use symbolic names instead of integers for the flags, as they're
4661 portable now.
4662 (check_writable): New arg AMODE. All uses changed.
4663 Set errno on failure.
4664 (Ffile_readable_p): Use faccessat, not stat + open + close.
4665 (Ffile_writable_p): No need to call check_existing + check_writable.
4666 Just call check_writable and then look at errno. This saves a syscall.
4667 dir should never be nil; replace an unnecessary runtime check
4668 with an eassert. When checking the parent directory of a nonexistent
4669 file, check that the directory is searchable as well as writable, as
4670 we can't create files in unsearchable directories.
4671 (file_directory_p): New function, which uses 'stat' on most platforms
4672 but faccessat with D_OK (for efficiency) if WINDOWSNT.
4673 (Ffile_directory_p, Fset_file_times): Use it.
4674 (file_accessible_directory_p): New function, which uses a single
4675 syscall for efficiency.
4676 (Ffile_accessible_directory_p): Use it.
4677 * xrdb.c (file_p): Use file_directory_p.
4678 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
4679 * lread.c (openp): When opening a file, use fstat rather than
4680 stat, as that avoids a permissions race. When not opening a file,
4681 use file_directory_p rather than stat.
4682 (dir_warning): First arg is now a usage string, not a format.
4683 Use errno. All uses changed.
4684 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
4685 that merely introduced a race.
4686 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
4687 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
4688 and similarly for the other O_* flags.
4689 * w32.c (sys_faccessat): Rename from sys_access and switch to
4690 faccessat's API. All uses changed.
4691 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
4692 (magic_db): Rename from magic_file_p.
4693 (magic_db, search_magic_path): Return an XrmDatabase rather than a
4694 char *, so that we don't have to test for file existence
4695 separately from opening the file for reading. This removes a race
4696 fixes a permission-checking problem, and simplifies the code.
4697 All uses changed.
4698 (file_p): Remove; no longer needed.
4699
4700 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
4701
4702 Omit glyphs initialization at startup.
4703 * dispnew.c (glyphs_initialized_initially_p): Remove.
4704 (adjust_frame_glyphs_initially): Likewise. Adjust users.
4705 (Fredraw_frame): Move actual code from here...
4706 (redraw_frame): ...to here. Add eassert. Adjust comment.
4707 (Fredraw_display): Use redraw_frame.
4708 * xdisp.c (clear_garbaged_frames): Likewise.
4709
4710 2012-11-13 Eli Zaretskii <eliz@gnu.org>
4711
4712 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
4713 passed to pint2str and pint2hrstr to be at most the size of the
4714 frame's decode_mode_spec_buffer. This avoids crashes with very
4715 large values of FIELD_WIDTH argument to decode_mode_spec.
4716 (Bug#12867)
4717
4718 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
4719
4720 Fix a race with verify-visited-file-modtime (Bug#12863).
4721 Since at least 1991 Emacs has ignored an mtime difference of no
4722 more than one second, but my guess is that this was to work around
4723 file system bugs that were fixed long ago. Since the race is
4724 causing problems now, let's remove that code.
4725 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
4726 whose time stamp is off by no more than a second. Insist that the
4727 file time stamps match exactly.
4728
4729 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
4730
4731 * frame.h (struct frame): Convert external_tool_bar member to
4732 1-bit unsigned bitfield.
4733 * termhooks.h (struct terminal): Remove mouse_moved member since
4734 all users are long dead. Adjust comment on mouse_position_hook.
4735
4736 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
4737
4738 Simplify by using FOR_EACH_FRAME here and there.
4739 * frame.c (next_frame, prev_frame, other_visible_frames)
4740 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
4741 * w32term.c (x_window_to_scroll_bar): Likewise.
4742 * window.c (window_list): Likewise.
4743 * xdisp.c (x_consider_frame_title): Likewise.
4744 * xfaces.c (Fdisplay_supports_face_attributes_p): Likewise.
4745 * xfns.c (x_window_to_frame, x_any_window_to_frame)
4746 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
4747 * xmenu.c (menubar_id_to_frame): Likewise.
4748 * xselect.c (frame_for_x_selection): Likewise.
4749 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
4750 (x_window_to_menu_bar): Likewise.
4751 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
4752
4753 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
4754
4755 * data.c (Qdefalias_fset_function): Now static.
4756
4757 Another tweak to vectorlike_header change.
4758 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
4759 Remove, and replace all uses with ...
4760 (next_in_free_list, set_next_in_free_list):
4761 New functions, which respect C's aliasing rules better.
4762
4763 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
4764
4765 * window.c (list4i): Rename from 'quad'. All uses changed.
4766 Needed because <sys/types.h> defines 'quad' on Solaris 10.
4767
4768 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
4769
4770 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
4771 warning about mixing declarations and code in ISO C90.
4772
4773 2012-11-10 Martin Rudalics <rudalics@gmx.at>
4774
4775 * window.c (Fsplit_window_internal): Set combination limit of
4776 new parent window to t iff Vwindow_combination_limit is t;
4777 fixing a regression introduced with the change from 2012-09-22.
4778 (Fset_window_combination_limit): Fix doc-string.
4779
4780 2012-11-10 Eli Zaretskii <eliz@gnu.org>
4781
4782 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
4783 amount when the scroll margins are too large. When scrolling
4784 backwards in the buffer, give up if cannot reach point or the
4785 scroll margin within a reasonable number of screen lines.
4786 Fixes point position in window under scroll-up/down-aggressively when
4787 point is positioned many lines beyond the window top/bottom.
4788 (Bug#12811)
4789
4790 * ralloc.c (relinquish): If real_morecore fails to return memory
4791 to the system, don't crash; instead, leave the last heap
4792 unchanged and return. (Bug#12774)
4793
4794 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4795
4796 * lisp.h (AUTOLOADP): New macro.
4797 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
4798 * data.c (Ffset): Remove special ad-advice-info handling.
4799 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
4800 (Fsubr_arity): CSE.
4801 (Finteractive_form): Simplify.
4802 (Fquo): Don't insist on having at least 2 arguments.
4803 (Qdefalias_fset_function): New var.
4804
4805 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
4806
4807 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
4808
4809 * nsfont.m (Qcondensed, Qexpanded): New variables.
4810 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
4811 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
4812
4813 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
4814
4815 Fix recently introduced crash on MS-Windows (Bug#12839).
4816 * w32term.h (struct scroll_bar): Use convenient header.
4817 (SCROLL_BAR_VEC_SIZE): Remove.
4818 * w32term.c (x_scroll_bar_create): Use VECSIZE.
4819
4820 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
4821
4822 Tweak last vectorlike_header change.
4823 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
4824 vectorlike object on the free list. This is introduced to avoid
4825 some (but not all) pointer casting and aliasing problems, see
4826 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
4827 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
4828 objects.
4829 (xvectype, xvecsize): Use them to examine Lisp_Object values.
4830
4831 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
4832
4833 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
4834 been removed, so remove them here also.
4835
4836 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
4837
4838 * doc.c (Fdocumentation): Handle new property
4839 dynamic-docstring-function to replace the old ad-advice-info.
4840
4841 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
4842
4843 * fns.c (Qeql, hashtest_eq): Now static.
4844
4845 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4846
4847 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
4848 * fns.c (hashfn_eq, hashfn_eql, sxhash):
4849 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
4850 * buffer.c (compare_overlays): Use XLI rather than XHASH.
4851
4852 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
4853
4854 Use same hash function for hashfn_profiler as for hash_string etc.
4855 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
4856 * lisp.h (sxhash_combine): New inline function, with the contents
4857 of the old SXHASH_COMBINE.
4858 * profiler.c (hashfn_profiler): Use it, instead of having a
4859 special hash function containing a comparison that always yields 1.
4860
4861 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4862
4863 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
4864 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
4865 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
4866 Remove unused vars.
4867
4868 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
4869
4870 * image.c (xpm_make_color_table_h): Fix compiler error because
4871 make_hash_table changed.
4872
4873 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
4874
4875 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
4876
4877 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
4878
4879 Use ad-hoc comparison function for the profiler's hash-tables.
4880 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
4881 (make_log): Use them.
4882 (handle_profiler_signal): Don't inhibit quit any longer since we don't
4883 call Fequal any more.
4884 (Ffunction_equal): New function.
4885 (cmpfn_profiler, hashfn_profiler): New functions.
4886 (syms_of_profiler): Initialize them.
4887 * lisp.h (struct hash_table_test): New struct.
4888 (struct Lisp_Hash_Table): Use it.
4889 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
4890 * fns.c (make_hash_table): Take a struct to describe the test.
4891 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
4892 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
4893 (hash_lookup, hash_remove_from_table): Move assertion checking of
4894 hashfn result here. Check hash-equality before calling cmpfn.
4895 (Fmake_hash_table): Adjust call to make_hash_table.
4896 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
4897 (syms_of_fns): Initialize them.
4898 * emacs.c (main): Move syms_of_fns earlier.
4899 * xterm.c (syms_of_xterm):
4900 * category.c (hash_get_category_set): Adjust call to make_hash_table.
4901 * print.c (print_object): Adjust to new hash-table struct.
4902 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
4903
4904 2012-11-08 Eli Zaretskii <eliz@gnu.org>
4905
4906 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
4907 value of w32-scroll-lock-modifier is neither nil nor one of the
4908 known key modifiers. (Bug#12806)
4909
4910 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
4911
4912 Shrink struct vectorlike_header to the only size field.
4913 * lisp.h (enum pvec_type): Avoid explicit enum member values.
4914 Adjust comment.
4915 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
4916 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
4917 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
4918 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
4919 information from the vector header. Adjust comment.
4920 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
4921 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
4922 layout.
4923 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
4924 (struct vectorlike_header): Remove next member. Adjust comment.
4925 (struct Lisp_Subr): Add convenient header. Adjust comment.
4926 (allocate_pseudovector): Adjust prototype.
4927 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
4928 (sweep_string, lisp_malloc): Remove useless prototypes.
4929 (enum mem_type): Adjust comment.
4930 (NEXT_IN_FREE_LIST): New macro.
4931 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
4932 (Fmake_bool_vector): Likewise.
4933 (struct large_vector): New type to represent allocation unit for
4934 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
4935 (large_vectors): Change type to struct large_vector.
4936 (allocate_vector_from_block): Simplify.
4937 (PSEUDOVECTOR_NBYTES): Replace with...
4938 (vector_nbytes): ...new function. Adjust users.
4939 (sweep_vectors): Adjust processing of large vectors.
4940 (allocate_vectorlike): Likewise.
4941 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
4942 Add easserts. Adjust XSETPVECTYPESIZE usage.
4943 (allocate_buffer): Use BUFFER_PVEC_INIT.
4944 (live_vector_p): Adjust to match large vector.
4945 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
4946 * buffer.h (struct buffer): Add next member.
4947 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
4948 New macros.
4949 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
4950 * fns.c (internal_equal): Adjust to match enum pvec_type change.
4951 (copy_hash_table): Adjust to match vector header change.
4952 * lread.c (defsubr): Use XSETPVECTYPE.
4953 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
4954 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
4955 (xvecsize): New command.
4956
4957 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
4958
4959 * keyboard.c (event_to_kboard): Do not dereference
4960 frame_or_window field of SELECTION_REQUEST_EVENT
4961 and SELECTION_CLEAR_EVENT events (Bug#12814).
4962 * xterm.h (struct selection_input_event): Adjust comment.
4963
4964 2012-11-07 Eli Zaretskii <eliz@gnu.org>
4965
4966 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
4967 such as Scroll Lock, if the respective keys are treated as
4968 function keys, not as modifiers. This avoids destroying non-ASCII
4969 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
4970
4971 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
4972
4973 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
4974
4975 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
4976
4977 Restore some duplicate definitions (Bug#12814).
4978 This undoes part of the 2012-11-03 changes. Some people build
4979 with plain -g rather than with -g3, and they need the duplicate
4980 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
4981 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
4982 Define as macros, as well as as enums or as constants.
4983
4984 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
4985
4986 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
4987 to keypad keys (Bug#12816).
4988
4989 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
4990
4991 Minor adjustments of recently-changed frame functions.
4992 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
4993 known to be a frame (we're in the FRAMEP branch).
4994 * lisp.h (Qframep): Remove decl. frame.h declares this.
4995 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
4996 since they're meant for Lisp fixnum values.
4997
4998 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4999
5000 * window.c (Fwindow_combination_limit): Revert to the only
5001 required argument and adjust docstring as suggested in
5002 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
5003 by Martin Rudalics <rudalics@gmx.at>.
5004
5005 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
5006
5007 Widely used frame validity and checking functions.
5008 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
5009 * frame.c (decode_live_frame, decode_any_frame): New functions.
5010 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
5011 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
5012 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
5013 (Fframe_pointer_visible_p): Use decode_any_frame.
5014 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
5015 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
5016 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
5017 (Fframe_focus): Likewise. Allow zero number of arguments.
5018 Adjust docstring.
5019 (frame_buffer_list, frame_buffer_predicate): Remove.
5020 * lisp.h (frame_buffer_predicate): Remove prototype.
5021 * buffer.c (Fother_buffer): Use decode_any_frame.
5022 * xdisp.c (Ftool_bar_lines_needed): Likewise.
5023 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
5024 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
5025 (Fclose_font, Ffont_info): Use decode_live_frame.
5026 * fontset.c (check_fontset_name): Likewise.
5027 * terminal.c (Fframe_terminal): Likewise.
5028 * w32fns.c (check_x_frame): Likewise.
5029 * window.c (Fminibuffer_window, Fwindow_at)
5030 (Fcurrent_window_configuration): Likewise.
5031 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
5032 Likewise. Allow zero number of arguments. Adjust docstring.
5033 * dispnew.c (Fredraw_frame): Likewise.
5034 * xfaces.c (frame_or_selected_frame): Remove.
5035 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
5036 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
5037 (Fframe_face_alist): Use decode_live_frame.
5038 * xfns.c (check_x_frame): Likewise.
5039
5040 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
5041
5042 * window.c (quad): New function.
5043 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
5044 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
5045 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
5046 (Fwindow_line_height): Use it.
5047 (Fwindow_fringes): Use list3.
5048 (Fwindow_scroll_bars): Use list4.
5049 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
5050 (Fwindow_combination_limit): Allow zero number of arguments.
5051
5052 2012-11-05 Eli Zaretskii <eliz@gnu.org>
5053
5054 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
5055
5056 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
5057 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
5058 file descriptor 2 for standard error. (Bug#12805)
5059
5060 2012-11-05 Chong Yidong <cyd@gnu.org>
5061
5062 * process.c (wait_reading_process_output): Revert previous change.
5063
5064 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
5065
5066 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
5067 This removes code that has been obsolete since around 1990.
5068 * callproc.c (Fcall_process):
5069 * emacs.c (main):
5070 * process.c (create_process):
5071 * term.c (dissociate_if_controlling_tty):
5072 Assume setsid exists.
5073 * callproc.c (child_setup): Assume setpgid exists and behaves as
5074 per POSIX.1-1988 or later.
5075 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
5076 * emacs.c (shut_down_emacs):
5077 * sysdep.c (sys_suspend, init_foreground_group):
5078 Assume getpgrp behaves as per POSIX.1-1998 or later.
5079 * msdos.c (setpgrp): Remove.
5080 (tcgetpgrp, setpgid, setsid): New functions.
5081 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
5082 * term.c (no_controlling_tty): Remove; unused.
5083 * w32proc.c (setpgrp): Remove.
5084 (setsid, tcgetpgrp): New functions.
5085
5086 Simplify by assuming __fpending.
5087 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
5088 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
5089 Do not assume that __fpending's result fits in int.
5090
5091 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
5092
5093 Remove EMACS_OUTQSIZE+sleep hack.
5094 * dispnew.c (update_frame_1): Remove hack for terminals slower
5095 than 2400 bps, which throttled Emacs by having it sleep.
5096 This code hasn't worked since at least 2007, when the multi-tty stuff
5097 was added, and anyway those old terminals are long dead.
5098 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
5099 without the dispnew.c change, as dispnew.c doesn't include systty.h.
5100
5101 Fix data-loss with --version (Bug#9574).
5102 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
5103 as we can't assume that emacs_strerror is initialized, and strerror
5104 is good enough here.
5105 (main): Invoke atexit earlier, to catch earlier instances of
5106 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
5107
5108 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
5109
5110 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
5111 (keyDown): Remap keypad keys to X11 virtual key codes.
5112
5113 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
5114
5115 Fix data-loss with --batch (Bug#9574).
5116 * emacs.c: Include <close-stream.h>.
5117 (close_output_streams): New function.
5118 (main): Pass it to atexit, so that Emacs closes stdout and stderr
5119 and handles errors appropriately.
5120 (Fkill_emacs): Don't worry about flushing, as close_output_stream
5121 does that now.
5122
5123 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
5124 The symptom is a diagnostic "GLib-WARNING **: In call to
5125 g_spawn_sync(), exit status of a child process was requested but
5126 SIGCHLD action was set to SIG_IGN and ECHILD was received by
5127 waitpid(), so exit status can't be returned." The diagnostic
5128 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
5129 The real bug is a race condition between Emacs and glib: Emacs
5130 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
5131 so that glib can't find it. Work around the bug by invoking
5132 waitpid only on subprocesses that Emacs itself creates.
5133 * process.c (create_process, record_child_status_change):
5134 Don't use special value -1 in pid field, as the caller now must
5135 know the pid rather than having the callee infer it.
5136 The inference was sometimes incorrect anyway, due to another race.
5137 (create_process): Set new 'alive' member if child is created.
5138 (process_status_retrieved): New function.
5139 (record_child_status_change): Use it.
5140 Accept negative 1st argument, which means to wait for the
5141 processes that Emacs already knows about. Move special-case code
5142 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
5143 processes that have already been waited for, by testing and
5144 clearing new 'alive' member.
5145 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
5146 now does this internally.
5147 (handle_child_signal): Let record_child_status_change do all
5148 the work, since we do not want to reap all exited child processes,
5149 only the child processes that Emacs itself created.
5150 * process.h (Lisp_Process): New boolean member 'alive'.
5151
5152 Omit duplicate definitions no longer needed with gcc -g3.
5153 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
5154 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
5155 Define only as macros. There's no longer any need to also define
5156 these symbols as enums or as constants, since we now assume
5157 gcc -g3 when debugging.
5158
5159 2012-11-03 Eli Zaretskii <eliz@gnu.org>
5160
5161 * lisp.mk: Adjust comments to the fact that term/internal is now
5162 loaded from loadup.el.
5163
5164 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
5165 (msdos_fatal_signal): New function.
5166 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
5167 its argument list.
5168
5169 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
5170 for GCC versions before 4.
5171 (emacs_raise): Define to call msdos_fatal_signal.
5172
5173 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
5174 iterator when starting in the middle of a display or overlay
5175 string. (Bug#12745)
5176
5177 2012-11-03 Chong Yidong <cyd@gnu.org>
5178
5179 * process.c (wait_reading_process_output): Clean up the last
5180 change.
5181
5182 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
5183
5184 * process.c (wait_reading_process_output): Avoid a race condition
5185 with SIGIO delivery (Bug#11536).
5186
5187 2012-11-03 Chong Yidong <cyd@gnu.org>
5188
5189 * buffer.c (cursor_type): Untabify docstring.
5190
5191 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
5192
5193 * frame.h (struct frame): Drop can_have_scroll_bars member
5194 which is meaningless for a long time. Adjust comments.
5195 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
5196 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
5197
5198 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
5199
5200 * window.c (decode_next_window_args): Update window arg after
5201 calling decode_live_window and so fix crash reported at
5202 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
5203 by Juanma Barranquero <lekktu@gmail.com>.
5204 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
5205 * font.c (Ffont_at): Likewise.
5206
5207 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
5208
5209 * widget.c (resize_cb): New function.
5210 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
5211 (EmacsFrameResize): Check if all is up to date before changing frame
5212 size.
5213
5214 2012-11-02 Eli Zaretskii <eliz@gnu.org>
5215
5216 Implement backtrace output for fatal errors on MS-Windows.
5217 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
5218 (BACKTRACE_LIMIT_MAX): New macro.
5219 (w32_backtrace): New function.
5220 (emacs_abort): Use w32_backtrace when the user chooses not to
5221 attach a debugger. Update the text of the abort dialog.
5222
5223 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
5224
5225 Window-related stuff cleanup here and there.
5226 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
5227 Use decode_any_window.
5228 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
5229 * xdisp.c (Fformat_mode_line): Likewise.
5230 * font.c (Ffont_at): Use decode_live_window.
5231 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
5232 * window.c (decode_next_window_args): Likewise.
5233 (decode_any_window): Remove static.
5234 * window.h (decode_any_window): Add prototype.
5235 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
5236 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
5237 respectively.
5238
5239 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
5240
5241 Remove pad from struct input_event.
5242 * termhooks.h (struct input_event): Remove padding field.
5243 Adjust comment.
5244 * keyboard.c (event_to_kboard): Simplify because frame_or_window
5245 member is never cons for a long time. Adjust comment.
5246 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
5247 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
5248 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
5249 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
5250
5251 2012-11-01 Eli Zaretskii <eliz@gnu.org>
5252
5253 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
5254
5255 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
5256
5257 Fix crash when using Emacs as commit editor for git (Bug#12697).
5258 * callproc.c (setpgrp): Remove macro, as we now use setpgid
5259 and it is configured in conf_post.h.
5260 (Fcall_process): Don't invoke both setsid and setpgid; the former
5261 is enough, if it exists.
5262 * callproc.c (Fcall_process, child_setup):
5263 * process.c (create_process): Use setpgid.
5264 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
5265 for the real thing.
5266 * dispnew.c (init_display): Initialize the foreground group
5267 if we are running a tty display.
5268 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
5269 * lisp.h (init_foreground_group): New decl.
5270 * sysdep.c (inherited_pgroup): New static var.
5271 (init_foreground_group, tcsetpgrp_without_stopping)
5272 (narrow_foreground_group, widen_foreground_group): New functions.
5273 (init_sys_modes): Narrow foreground group.
5274 (reset_sys_modes): Widen foreground group.
5275
5276 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
5277
5278 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
5279
5280 2012-10-31 Martin Rudalics <rudalics@gmx.at>
5281
5282 * minibuf.c (read_minibuf): Restore current buffer since
5283 choose_minibuf_frame calling Fset_frame_selected_window may
5284 change it (Bug#12766).
5285
5286 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
5287
5288 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
5289
5290 2012-10-30 Kenichi Handa <handa@gnu.org>
5291
5292 * font.c (Ffont_at): If WINDOW is specified and it is not
5293 displaying the current buffer, signal an error.
5294
5295 2012-10-29 Daniel Colascione <dancol@dancol.org>
5296
5297 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
5298 In preparation for fixing bug#12739, move these functions from
5299 here...
5300
5301 * coding.h, coding.c: ... to here, and compile them only when
5302 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
5303 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
5304
5305 2012-10-28 Eli Zaretskii <eliz@gnu.org>
5306
5307 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
5308 (timer_loop, getitimer, setitimer): Use it instead of
5309 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
5310 'clock'.
5311 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
5312 literal 10000.
5313
5314 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
5315
5316 * nsterm.m (NO_APPDEFINED_DATA): New define.
5317 (last_appdefined_event_data): New variable
5318 (last_appdefined_event): Remove.
5319 (ns_select): Initialize t from last_appdefined_event_data instead
5320 of [last_appdefined_event data1].
5321 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
5322 remove last_appdefined_event (Bug#12698).
5323
5324 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5325
5326 * frame.c (x_set_font): Catch internal error.
5327
5328 2012-10-27 Eli Zaretskii <eliz@gnu.org>
5329
5330 Avoid overflow in w32 implementation of interval timers.
5331 When possible, for ITIMER_PROF count only times the main thread
5332 actually executes.
5333 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
5334 'volatile ULONGLONG' types. All the other data which was
5335 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
5336 (GetThreadTimes_Proc): New typedef.
5337 (w32_get_timer_time): New function, returns a suitable time value
5338 for the timer.
5339 (timer_loop): Enter critical section when accessing ULONGLONG
5340 values of the itimer_data struct, as these accesses are no longer
5341 atomic. Call 'w32_get_timer_time' instead of 'clock'.
5342 Remove unused variable.
5343 (init_timers): Initialize s_pfn_Get_Thread_Times.
5344 (start_timer_thread): Don't assign itimer->caller_thread here.
5345 (getitimer): Assign itimer->caller_thread here.
5346 (setitimer): Always call getitimer to get the value of ticks_now.
5347 (sys_spawnve): Avoid compiler warning about format mismatch.
5348
5349 2012-10-26 Eli Zaretskii <eliz@gnu.org>
5350
5351 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
5352 mouse movement events if the menu bar is active. This avoids
5353 producing a busy "hour-glass" cursor by Windows if the mouse
5354 pointer is positioned over a tooltip shown for some menu item.
5355
5356 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
5357
5358 Don't assume process IDs fit in int.
5359 * emacs.c (shut_down_emacs) [!DOS_NT]:
5360 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
5361 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
5362 Use pid_t, not int, to store process IDs, as 'int'
5363 is not wide enough on a few platforms (e.g., AIX and IRIX).
5364
5365 2012-10-23 Kenichi Handa <handa@gnu.org>
5366
5367 The following change is to make face-font-rescale-alist work
5368 correctly for non-ASCII fonts.
5369
5370 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
5371 (font_open_for_lface): Handle Vface_font_rescale_alist.
5372
5373 2012-10-23 Chong Yidong <cyd@gnu.org>
5374
5375 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
5376
5377 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
5378
5379 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
5380 for screen font.
5381 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
5382
5383 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
5384 event (Bug#12681).
5385
5386 2012-10-21 Glenn Morris <rgm@gnu.org>
5387
5388 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
5389
5390 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
5391
5392 Port to OpenBSD 5.1.
5393 * frame.c (Fmouse_position, Fmouse_pixel_position):
5394 * xdisp.c (produce_stretch_glyph):
5395 Declare local vars only when they're needed.
5396 This is clearer and avoids a warning on OpenBSD about unused vars.
5397 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
5398 This is safer, and avoids OpenBSD warnings about unused vars.
5399 * keyboard.c (record_menu_key): Remove unnecessary decl.
5400 (poll_timer): Define only if POLL_FOR_INPUT is defined.
5401 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
5402 as our definition clashes with OpenBSD's.
5403 * xfaces.c (load_face_colors, check_lface_attrs)
5404 (get_lface_attributes_no_remap, get_lface_attributes)
5405 (lface_fully_specified_p, x_supports_face_attributes_p)
5406 (tty_supports_face_attributes_p, face_fontset, realize_face)
5407 (realize_x_face, realize_tty_face):
5408 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
5409 merely Lisp_Object *. This is more informative and avoids
5410 a warning on OpenBSD about accessing beyond an object's size.
5411
5412 2012-10-20 Chong Yidong <cyd@gnu.org>
5413
5414 * lread.c (Fload): Doc fix (Bug#12592).
5415
5416 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
5417
5418 * font.c (Ffont_at): Fix previous change.
5419
5420 2012-10-19 Eli Zaretskii <eliz@gnu.org>
5421
5422 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
5423 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
5424 for the reasons.
5425
5426 * alloc.c (NSTATICS): Decrease to 0x800.
5427
5428 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
5429
5430 * fns.c (Fnreverse): Include the problem element when signaling an
5431 error (bug#12677).
5432
5433 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
5434
5435 * nsterm.m (ns_select): Check writefds before call to
5436 FD_ISSET (Bug#12668).
5437
5438 2012-10-18 Daniel Colascione <dancol@dancol.org>
5439
5440 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
5441 (staticpro): If we run out of staticpro slots, die with an
5442 informative error instead of just calling emacs_abort.
5443
5444 2012-10-18 Martin Rudalics <rudalics@gmx.at>
5445
5446 Fix two flaws reported by Dmitry Antipov.
5447 * window.c (Ftemp_output_buffer_show): Remove.
5448 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
5449 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
5450
5451 2012-10-17 Eli Zaretskii <eliz@gnu.org>
5452
5453 * makefile.w32-in ($(BLD)/w32.$(O)):
5454 ($(BLD)/vm-limit.$(O)):
5455 ($(BLD)/term.$(O)):
5456 ($(BLD)/unexw32.$(O)):
5457 ($(BLD)/fileio.$(O)):
5458 ($(BLD)/dispnew.$(O)): Update dependencies.
5459
5460 * w32term.h (w32_initialize_display_info, initialize_w32_display):
5461 Add prototypes.
5462
5463 * w32proc.c: Include ctype.h.
5464
5465 * w32.h (init_environment, check_windows_init_file)
5466 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
5467 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
5468 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
5469 (sys_link): Add prototypes.
5470
5471 * w32.c: Include w32select.h.
5472 (sys_access, e_malloc, sys_select): Add prototypes.
5473 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
5474
5475 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
5476
5477 * unexw32.c: Include lisp.h and w32.h.
5478
5479 * term.c [WINDOWSNT]: Include w32term.h.
5480
5481 * process.c [WINDOWSNT]: Add prototype of sys_select.
5482
5483 * fileio.c [WINDOWSNT]: Include w32.h.
5484
5485 * dispnew.c [WINDOWSNT]: Include w32.h.
5486
5487 * cygw32.c (Fcygwin_convert_path_to_windows)
5488 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
5489 Lisp_Object values. (Bug#12661)
5490
5491 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
5492 to Lisp_Object. (Bug#12661)
5493
5494 2012-10-17 Kenichi Handa <handa@gnu.org>
5495
5496 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
5497 invalidate.
5498
5499 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
5500
5501 * buffer.c (Fkill_buffer): When unchaining the marker,
5502 reset its buffer pointer to NULL (Bug#12652).
5503
5504 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
5505
5506 Do not verify indirection counters of killed buffers (Bug#12579).
5507 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
5508 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
5509
5510 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
5511
5512 * alloc.c (Fmake_byte_code): Fix typo in comment.
5513 * print.c (print_interval): Define as static to match prototype.
5514 * indent.c (disptab_matches_widthtab, recompute_width_table):
5515 Convert to eassert.
5516
5517 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
5518
5519 * editfns.c (get_system_name): Remove.
5520 * lisp.h (get_system_name): Remove prototype.
5521 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
5522 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
5523
5524 2012-10-15 Daniel Colascione <dancol@dancol.org>
5525
5526 * dbusbind.c: Add comment explaining reason for previous change.
5527
5528 2012-10-15 Martin Rudalics <rudalics@gmx.at>
5529
5530 * window.c (Fwindow_end): Rewrite check whether cached position
5531 can be used (Bug#12600).
5532 (resize_frame_windows, grow_mini_window, shrink_mini_window):
5533 Set windows_or_buffers_changed.
5534
5535 2012-10-15 Daniel Colascione <dancol@dancol.org>
5536
5537 * dbusbind.c: Fix cygw32 build break when compiling with dbus
5538 enabled by undefining the symbol "interface", which the platform
5539 headers define to something incompatible.
5540
5541 2012-10-14 Daniel Colascione <dancol@dancol.org>
5542
5543 * image.c (init_tiff_functions, init_imagemagick_functions)
5544 (init_svg_functions): Fix cygw32 build break by using these
5545 functions only when WINDOWSNT _and_ HAVE_NTGUI.
5546
5547 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
5548
5549 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
5550
5551 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
5552
5553 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
5554
5555 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
5556
5557 * coding.c (detect_coding): Set coding->id before calling
5558 this->detector.
5559
5560 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
5561
5562 * fileio.c: Formatting fixes.
5563
5564 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
5565
5566 Fix some stat-related races.
5567 * fileio.c (Fwrite_region): Avoid race condition if a file is
5568 removed or renamed by some other process immediately after Emacs
5569 writes it but before Emacs stats it. Do not assume that stat (or
5570 fstat) succeeds.
5571 * image.c (slurp_file): Resolve the file name with fopen + fstat
5572 rather than stat + fopen.
5573 (pbm_read_file) [0]: Remove unused code with stat race.
5574 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
5575 Remove ineffective code with stat race.
5576
5577 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
5578
5579 * doc.c (get_doc_string): Don't signal an error if the file is missing.
5580
5581 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
5582
5583 * nsterm.m (hold_event_q): New static variable.
5584 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
5585 ! q_event_ptr.
5586 (hold_event): New function.
5587 (ns_read_socket): If hold_event_q have events, store them and
5588 return (Bug#12384).
5589 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
5590 is zero (Bug#12384).
5591
5592 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
5593
5594 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
5595
5596 2012-10-12 Eli Zaretskii <eliz@gnu.org>
5597
5598 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
5599
5600 * fileio.c (check_existing): New function.
5601 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
5602 instead of calling 'stat', when what's needed is to check whether
5603 a file exists. This avoids expensive system calls on MS-Windows.
5604 (Bug#12587)
5605
5606 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
5607
5608 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
5609 determine whether a file exists and is not a directory.
5610
5611 * lisp.h (check_existing): Add prototype.
5612
5613 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
5614
5615 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
5616
5617 2012-10-12 Glenn Morris <rgm@gnu.org>
5618
5619 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
5620
5621 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
5622
5623 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
5624
5625 * eval.c (Fautoload): Remember previous autoload status in load-history.
5626
5627 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
5628
5629 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
5630 * lread.c (load_each_byte, new_backquote_flag, readchar)
5631 (read_filtered_event, lisp_file_lexically_bound_p)
5632 (safe_to_load_version, Fload, complete_filename_p, openp)
5633 (build_load_history, readevalloop, read_escape, read1)
5634 (string_to_number, read_vector, read_list):
5635 * macros.c (Fstart_kbd_macro):
5636 * marker.c (CONSIDER):
5637 * menu.c (parse_single_submenu, digest_single_submenu)
5638 (find_and_return_menu_selection, Fx_popup_menu):
5639 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
5640 (Ftry_completion):
5641 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
5642 (ns_menu_show):
5643 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
5644 (xmenu_show, xdialog_show):
5645 Use bool for booleans.
5646 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
5647 as it's not a predicate. All uses changed. Omit unnecessary
5648 buffer termination.
5649
5650 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
5651
5652 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
5653 (save_excursion_restore): Do not restore mark if it was not saved.
5654
5655 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
5656
5657 * marker.c (cached_modiff): EMACS_INT, not int.
5658
5659 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
5660 instead of having a wrong decl.
5661 * nsmenu.m (waiting_for_input): Remove wrong decl.
5662
5663 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
5664
5665 keyboard.c, keymap.c: Use bool for booleans.
5666 * dispnew.c (sit_for): Distinguish between 3-way display_option
5667 and boolean do_display.
5668 * keyboard.c (single_kboard, this_command_key_count_reset)
5669 (waiting_for_input, echoing, immediate_quit, input_pending)
5670 (interrupt_input, interrupts_deferred, pop_kboard)
5671 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
5672 (command_loop_1, adjust_point_for_property)
5673 (safe_run_hooks_error, input_polling_used, read_char):
5674 (help_char_p, readable_events, kbd_buffer_events_waiting)
5675 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
5676 (lucid_event_type_list_p, get_input_pending):
5677 (gobble_input, menu_separator_name_p, menu_bar_item)
5678 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
5679 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
5680 (keyremap_step, test_undefined, read_key_sequence)
5681 (detect_input_pending, detect_input_pending_ignore_squeezables)
5682 (detect_input_pending_run_timers, requeued_events_pending_p)
5683 (quit_throw_to_read_char, Fset_input_interrupt_mode):
5684 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
5685 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
5686 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
5687 (accessible_keymaps_1, Fkey_description, push_key_description):
5688 (shadow_lookup, struct where_is_internal_data)
5689 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
5690 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
5691 (describe_map, describe_vector):
5692 * menu.c (single_menu_item):
5693 * nsmenu.m (ns_update_menubar):
5694 * process.c (wait_reading_process_output):
5695 * search.c (scan_buffer, scan_newline):
5696 Use bool for boolean.
5697 * keyboard.c (timers_run, swallow_events)
5698 (detect_input_pending_run_timers):
5699 * process.c (wait_reading_process_output):
5700 Use unsigned for counter where wraparound-on-overflow is desired,
5701 since unsigned is guaranteed to have that behavior and signed is not.
5702 (read_char): Use ptrdiff_t for string length.
5703 (get_input_pending): Remove first argument, since it was always
5704 the same pointer-to-int (now pointer-to-boolean) &input_pending,
5705 and behave as if it had that value. Return new value of
5706 input_pending. All callers changed.
5707 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
5708 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
5709 a string length.
5710 * keymap.c (push_key_description): Omit last arg, which was always 1.
5711 All callers changed.
5712
5713 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
5714
5715 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
5716
5717 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
5718 ($(BLD)/term.$(O)): Update dependencies.
5719
5720 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
5721
5722 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
5723 * lisp.h (enum pvec_type): Adjust comments and omit explicit
5724 initializer for PVEC_NORMAL_VECTOR.
5725
5726 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
5727
5728 Clean out old termopts cruft.
5729 * termopts.h (flow_control, meta_key): Remove unused decls.
5730 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
5731 Don't include termopts.h.
5732
5733 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
5734
5735 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
5736
5737 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
5738
5739 * commands.h (immediate_quit): Remove duplicate decl.
5740
5741 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
5742
5743 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
5744 caching.
5745 (nsfont_open): Remove setting of Vfonts_in_cache.
5746 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
5747
5748 2012-10-09 Eli Zaretskii <eliz@gnu.org>
5749
5750 * w32fns.c (w32_last_error): Change the return value to DWORD, to
5751 match what GetLastError returns. Explain why the function is
5752 needed.
5753
5754 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
5755 'is_tooltip_frame', to avoid confusion with its global namesake.
5756
5757 2012-10-08 Daniel Colascione <dancol@dancol.org>
5758
5759 * xdisp.c (start_hourglass): Call w32_note_current_window when
5760 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
5761 build that caused Emacs to display the hourglass cursor forever.
5762
5763 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
5764 which is broken under remote desktop, calculate the number of
5765 colors available for a display based on the display's number of
5766 planes and number of bits per pixel per plane. (bug#10397).
5767
5768 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
5769
5770 * nsfont.m (Vfonts_in_cache): New variable.
5771 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
5772 are used. Add cached fonts to Vfonts_in_cache.
5773 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
5774
5775 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
5776
5777 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
5778 in nt/config.nt.
5779 (FONT_H): Define after FRAME_H.
5780 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
5781 Update dependencies.
5782
5783 * w32term.c: Remove leftover declaration of keyboard_codepage.
5784
5785 2012-10-08 Eli Zaretskii <eliz@gnu.org>
5786
5787 * makefile.w32-in (FONT_H): Add $(FRAME_H).
5788 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
5789 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
5790 (GLOBAL_SOURCES): Add cygw32.c.
5791 ($(BLD)/unexw32.$(O)):
5792 ($(BLD)/w32.$(O)):
5793 ($(BLD)/w32console.$(O)):
5794 ($(BLD)/w32fns.$(O)):
5795 ($(BLD)/w32heap.$(O)):
5796 ($(BLD)/w32menu.$(O)):
5797 ($(BLD)/w32proc.$(O)): Add w32common.h.
5798
5799 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
5800 'const char *'.
5801 (x_to_w32_color): Don't modify the argument, modify a copy instead.
5802
5803 2012-10-08 Daniel Colascione <dancol@dancol.org>
5804
5805 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
5806 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
5807 accidental message numbering hole. Change other messages to
5808 match.
5809
5810 * w32select.h (HAVE_W32SELECT): Remove.
5811
5812 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
5813 w32common.h instead of w32heap.h.
5814
5815 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
5816 (get_allocation_unit, get_processor_type, get_w32_major_version)
5817 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
5818 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
5819 (OS_NT, os_subtype, cache_system_info): Move declarations to
5820 w32common.
5821
5822 * w32heap.c: Include w32common.h.
5823 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
5824 (w32_minor_version, w32_build_number, w32_subtype):
5825 Remove duplicate definitions.
5826
5827 * w32fns.c: Include w32common.h; include w32heap.h only in
5828 WINDOWSNT.
5829
5830 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
5831 Use `report_file_error' instead of `error' in order to better
5832 inform users of what went wrong. Increase NTGUI_UNICODE file
5833 dialog box file name length to 32k, the maximum allowed by the NT
5834 kernel.
5835
5836 * w32common.h: New file.
5837 (ROUND_UP, ROUND_DOWN, get_page_size)
5838 (get_allocation_unit, get_processor_type, get_w32_major_version)
5839 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
5840 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
5841 (OS_NT, os_subtype, cache_system_info): Move here.
5842
5843 * unexw32.c, unexcw.c: Include w32common.h.
5844
5845 * emacs.c (main): Use (defined (WINDOWSNT) || defined
5846 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
5847 to call syms_of_w32select.
5848
5849 * cygw32.h: Remove obsolete EXFUN declarations.
5850
5851 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
5852
5853 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
5854 of w32inevt.o from SOME_MACHINE_OBJECTS.
5855
5856 2012-10-08 Daniel Colascione <dancol@dancol.org>
5857
5858 * image.c: Permanent fix for JPEG compilation issue --- limit
5859 jpeglib `boolean' redefinition to Cygwin builds.
5860
5861 2012-10-08 Eli Zaretskii <eliz@gnu.org>
5862
5863 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
5864
5865 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
5866 Cygwin.
5867
5868 2012-10-08 Daniel Colascione <dancol@dancol.org>
5869
5870 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
5871 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
5872 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
5873 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
5874 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
5875 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
5876 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
5877 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
5878 now a supported configuration.
5879
5880 * Makefile.in: consolidate image variables into LIBIMAGE; add
5881 W32_OBJ and W32_LIBS. Compile new files.
5882
5883 * conf_post.h:
5884 (_DebPrint) declare tracing facility for W32 debugging. We need
5885 to unify tracing later.
5886
5887 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
5888 unconditional use of W32 Unicode functions. Cygwin runs only on
5889 100% Unicode operating systems.
5890
5891 * cygw32.c: New file. Define Cygwin-specific facilities.
5892 (Fcygwin_convert_path_to_windows)
5893 (Fcygwin_convert_path_from_windows): New user functions for
5894 accessing Cygwin path-munging routines.
5895
5896 * cygw32.h: New file.
5897 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
5898 UTF-16LE strings temporarily inside non-Lisp-visible string
5899 objects.
5900
5901 (w32_strerror): Just what it says on the tin.
5902
5903 * emacs.c: Make the NS fork-then-exec code for daemon-launching
5904 also run for Cygwin; both systems have the same problem with using
5905 GUI facilities in a forked child. Also call syms_of_cygw32,
5906 syms_of_w32select in correct places.
5907
5908 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
5909 needs fork-then-exec for daemon launching.
5910
5911 * font.h: Include frame.h.
5912
5913 * image.c: Use the image library cache machinery only when we're
5914 compiling for native WINDOWSNT; Cygwin can use shared libraries
5915 like any other Unixlike system.
5916
5917 * keyboard.c: Clarify a comment regarding the input loop.
5918
5919 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
5920 functions directly instead of trying to detect at runtime that our
5921 host operating system supports them. We make this change for two
5922 reasons: Cygwin lacks support for the multibyte character
5923 conversion functions used by the legacy menu code, and Cygwin
5924 never needs to rely on non-Unicode APIs.
5925
5926 * unexw32.c (hinst): Declare extern.
5927
5928 * w32.c: Change header order;
5929 (w32_strerror): Move to w32fns.c because we need it for
5930 non-WINDOWSNT builds.
5931
5932 * w32.h: Add #error macro to make sure we don't include w32.h for
5933 Cygwin builds. Remove w32select declarations.
5934
5935 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
5936 w32fns.c. w32console.c is WINDOWSNT-only.
5937
5938 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
5939 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
5940 POSIXy alternative.
5941 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
5942 (w32_major_version, w32_minor_version, w32_build_number)
5943 (os_subtype, sound_type): Define here
5944 (w32_defined_color): Make color parameter const for consistency
5945 with other _defined_color functions.
5946 (w32_createwindow): Unconditionally call w32_init_class instead of
5947 doing so only when hprevinst is non-NULL. Plumbing hprevinst
5948 through the code is complex and unnecessary because class
5949 registration is practically free.
5950 (w32_name_of_message): New EMACSDEBUG-only function.
5951 (Fset_message_beep): Move here
5952 (Fx_open_connection): Require that the display name for Windows be
5953 "w32" for consistency, emacsclient disambiguation, and maybe, one
5954 day, multi-window-system support.
5955 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
5956 Cygwin files for W32 GUI facilities, since these clearly don't
5957 expect Cygwin names.
5958 (_DebPrint): Define.
5959 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
5960 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
5961 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
5962 (w32_last_error): Remove.
5963
5964 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
5965
5966 * w32heap.c (syspage_mask): Declare here.
5967 (cache_system_info): Remove.
5968
5969 * w32inevt.c (faked_key): Define globally, not statically.
5970 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
5971 (w32_console_toggle_lock_key): Move to w32fns.c.
5972
5973 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
5974
5975 * w32proc.c (_DebPrint): Move to w32fns.c.
5976 * w32select.c: Include string.h, stdio.h for Cygwin.
5977 * w32select.h: New File.
5978
5979 * w32term.c: Include io.h for non-CYGWIN builds; needed for
5980 get_osfhandle.
5981 (w32_message_fd): New variable. Under Cygwin, holds the file
5982 descriptor the system used to tell us about pending thread
5983 messages.
5984
5985 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
5986 that prevented compilation under non-WINDOWSNT systems.
5987
5988 (w32_initialize): Open /dev/windows and assign it to
5989 w32_message_fd. Provide w32 feature.
5990
5991 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
5992 (WM_EMACS_INPUT_READY): add.
5993 (prepend_msg, w32_message_fd): Declare globally.
5994
5995 * w32xfns.c:
5996 (keyboard_handle): Use only when WINDOWSNT.
5997 (notify_msg_ready): New function. Posts a message to the main
5998 thread's message queue under CYGWIN, which wakes up the main
5999 thread from select(2) by making the /dev/windows file descriptor
6000 ready. Under WINDOWSNT, it sets an event the same way the old
6001 code did.
6002
6003 (post, prepend_msg): Actually call notify_msg_ready instead of
6004 setting the input event directly.
6005
6006 2012-10-07 Eli Zaretskii <eliz@gnu.org>
6007
6008 * ralloc.c (relinquish): If a heap is ready to be relinquished,
6009 but it still has blocs in it, don't return it to the system,
6010 instead of aborting. (Bug#12402)
6011
6012 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
6013
6014 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
6015
6016 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
6017 MAC_OS_X_VERSION_10_6.
6018 (syms_of_nsterm): Remove comment about Panther and above for
6019 ns-antialias-text.
6020 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
6021 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
6022 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
6023
6024 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
6025 MAC_OS_X_VERSION_10_4.
6026
6027 * nsmenu.m (fillWithWidgetValue:): Remove code for <
6028 MAC_OS_X_VERSION_10_2.
6029
6030 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
6031
6032 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
6033 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
6034
6035 * nsterm.m (ns_in_resize): Remove (Bug#12479).
6036 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
6037 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
6038 Remove ns_in_resize check.
6039 (ns_clear_frame_area): Remove resize handle code.
6040
6041 * nsfns.m (ns_in_resize): Remove.
6042 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
6043 Remove ns_in_resize check.
6044
6045 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
6046
6047 Improve sys_siglist detection.
6048 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
6049 defined as a macro, as is done in Solaris.
6050 (sys_siglist_entries): New macro.
6051 (save_strsignal): Use it.
6052 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
6053 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
6054
6055 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
6056
6057 * nsfns.m (Fx_create_frame): Call x_default_parameter with
6058 fullscreen/Fullscreen.
6059
6060 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
6061 tobar_height is new.
6062
6063 * nsterm.m (x_make_frame_visible): Check for fullscreen.
6064 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
6065 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
6066 (windowDidResize:): Check for correct window if old style fullscreen.
6067 Capitalize word in comment. Remove incorrect comment.
6068 (initFrameFromEmacs:): tbar_height renamed tibar_height.
6069 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
6070 error in drawing background.
6071 (toggleFullScreen:): Remove comment. Rearrange calls.
6072 Set toolbar values to zero, save old height in tobar_height.
6073 Restore tool bar height when leaving fullscreen.
6074 (canBecomeMainWindow): New function.
6075
6076 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
6077
6078 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
6079
6080 2012-10-05 Eli Zaretskii <eliz@gnu.org>
6081
6082 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
6083
6084 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
6085 that time stamps of directories could also be changed.
6086 Don't request the too broad GENERIC_WRITE, only the more restrictive
6087 FILE_WRITE_ATTRIBUTES access rights.
6088
6089 * fileio.c (Fset_file_times): Special-case ignoring errors for
6090 directories only on MSDOS, not on MS-Windows.
6091
6092 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
6093
6094 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
6095
6096 2012-10-04 Eli Zaretskii <eliz@gnu.org>
6097
6098 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
6099 see whether CreateFile failed.
6100
6101 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
6102
6103 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
6104 to avoid similar races.
6105 * keyboard.c (pending_signals): Now bool, not int.
6106
6107 Port timers to OpenBSD, plus check for timer failures.
6108 OpenBSD problem reported by Han Boetes.
6109 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
6110 and/or setitimer.
6111 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
6112 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
6113 like OpenBSD, which has timer_settime but does not declare it.
6114 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
6115 whether to use itimerspec-related primitives. All uses of
6116 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
6117
6118 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
6119
6120 * profiler.c (handle_profiler_signal): Fix a malloc race
6121 that caused Emacs to hang on Fedora 17 when profiling Lisp.
6122
6123 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
6124
6125 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
6126
6127 2012-10-02 Eli Zaretskii <eliz@gnu.org>
6128
6129 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
6130 consistent with the change in return value of 'safe_strsignal'.
6131
6132 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
6133
6134 Prefer plain 'static' to 'static inline' (Bug#12541).
6135 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
6136 (bidi_set_sor_type, bidi_push_embedding_level)
6137 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
6138 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
6139 (bidi_cache_search, bidi_cache_ensure_space)
6140 (bidi_cache_iterator_state, bidi_cache_find)
6141 (bidi_peek_at_next_level, bidi_set_paragraph_end)
6142 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
6143 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
6144 Now 'static', not 'static inline'.
6145
6146 Count overruns when profiling; change units to ns.
6147 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
6148 Give extra weight to samples after overruns, to attempt to count
6149 the time more accurately.
6150 (setup_cpu_timer): Change sampling interval units from ms to ns, since
6151 the underlying primitives nominally do ns.
6152 (Fprofiler_cpu_start): Document the change. Mention that
6153 the sampling intervals are only approximate.
6154
6155 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
6156
6157 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
6158
6159 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
6160 case for the special 0 coding-system.
6161
6162 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
6163 (Fmake_overlay): Remove redundant tests.
6164 (fix_start_end_in_overlays): Remove redundant recentering.
6165
6166 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
6167
6168 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
6169 Update dependencies.
6170
6171 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
6172
6173 Fix a malloc race condition involving strsignal.
6174 A signal can arrive in the middle of a malloc, and Emacs's signal
6175 handler can invoke strsignal, which can invoke malloc, which is
6176 not portable. This race condition bug makes Emacs hang on GNU/Linux.
6177 Fix it by altering the signal handler so that it does not invoke
6178 strsignal.
6179 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
6180 * process.c (status_message): Use const pointer, in case strsignal
6181 is #defined to safe_strsignal.
6182 * sysdep.c (sys_siglist, init_signals): Always define and
6183 initialize a substitute sys_siglist if the system does not define
6184 one, even if HAVE_STRSIGNAL.
6185 (safe_strsignal): Rename from strsignal. Always define,
6186 using sys_siglist. Return a const pointer.
6187 * syssignal.h (safe_strsignal): New decl.
6188 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
6189
6190 2012-10-01 Eli Zaretskii <eliz@gnu.org>
6191
6192 * w32proc.c (timer_loop): Fix code that waits for timer
6193 expiration, to avoid high CPU usage.
6194
6195 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
6196
6197 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
6198 (sweep_weak_table): Remove redundant prototypes.
6199
6200 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
6201
6202 * emacs.c: Move the inclusion of TERM_HEADER after including
6203 windows.h on WINDOWSNT. This avoids compilation problems with
6204 MSVC.
6205
6206 2012-10-01 Eli Zaretskii <eliz@gnu.org>
6207
6208 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
6209 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
6210 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
6211 as the previous version used 'void *'.
6212
6213 * ralloc.c (ROUNDUP): Fix last change.
6214 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
6215 'size_t'.
6216
6217 * w32proc.c <disable_itimers>: New static flag.
6218 (init_timers): Initialize it to zero, after creating the critical
6219 sections used by the timer threads.
6220 (term_timers): Set to 1 before deleting the critical sections.
6221 (getitimer, setitimer): If disable_itimers is non-zero, return an
6222 error indication without doing anything. Reported by Fabrice
6223 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
6224 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
6225 return results.
6226 [!HAVE_SETITIMER]: Behave as the previous version that didn't
6227 support timers.
6228
6229 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
6230 term_ntproc after all the other bookkeeping, to get timers working
6231 as long as possible.
6232
6233 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
6234
6235 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
6236 Suggested by Juri Linkov in
6237 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
6238
6239 Prefer plain 'static' to 'static inline' (Bug#12541).
6240 With static functions, modern compilers inline pretty well by
6241 themselves; advice from programmers often hurts as much as it helps.
6242 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
6243 this change shrinks the text size of the Emacs executable by 1.1%
6244 without affecting CPU significantly in my benchmark.
6245 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
6246 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
6247 (mark_maybe_object, mark_maybe_pointer, bounded_number):
6248 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
6249 (bset_auto_fill_function, bset_auto_save_file_format)
6250 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
6251 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
6252 (bset_cache_long_line_scans, bset_case_fold_search)
6253 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
6254 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
6255 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
6256 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
6257 (bset_header_line_format, bset_indicate_buffer_boundaries)
6258 (bset_indicate_empty_lines, bset_invisibility_spec)
6259 (bset_left_fringe_width, bset_major_mode, bset_mark)
6260 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
6261 (bset_name, bset_overwrite_mode, bset_pt_marker)
6262 (bset_right_fringe_width, bset_save_length)
6263 (bset_scroll_bar_width, bset_scroll_down_aggressively)
6264 (bset_scroll_up_aggressively, bset_selective_display)
6265 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
6266 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
6267 (set_buffer_overlays_after):
6268 * category.c (bset_category_table):
6269 * charset.c (read_hex):
6270 * coding.c (produce_composition, produce_charset)
6271 (handle_composition_annotation, handle_charset_annotation)
6272 (char_encodable_p):
6273 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
6274 (assign_row, set_frame_matrix_frame, make_current)
6275 (add_row_entry):
6276 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
6277 * fns.c (maybe_resize_hash_table):
6278 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
6279 * gmalloc.c (register_heapinfo):
6280 * image.c (lookup_image_type):
6281 * intervals.c (set_interval_object, set_interval_left)
6282 (set_interval_right, copy_interval_parent, rotate_right)
6283 (rotate_left, balance_possible_root_interval):
6284 * keyboard.c (kset_echo_string, kset_kbd_queue)
6285 (kset_keyboard_translate_table, kset_last_prefix_arg)
6286 (kset_last_repeatable_command, kset_local_function_key_map)
6287 (kset_overriding_terminal_local_map, kset_real_last_command)
6288 (kset_system_key_syms, clear_event, set_prop):
6289 * lread.c (digit_to_number):
6290 * marker.c (attach_marker, live_buffer, set_marker_internal):
6291 * nsterm.m (ns_compute_glyph_string_overhangs):
6292 * process.c (pset_buffer, pset_command)
6293 (pset_decode_coding_system, pset_decoding_buf)
6294 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
6295 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
6296 (pset_status, pset_tty_name, pset_type, pset_write_queue):
6297 * syntax.c (bset_syntax_table, dec_bytepos):
6298 * terminal.c (tset_param_alist):
6299 * textprop.c (interval_has_some_properties)
6300 (interval_has_some_properties_list):
6301 * window.c (wset_combination_limit, wset_dedicated)
6302 (wset_display_table, wset_hchild, wset_left_fringe_width)
6303 (wset_left_margin_cols, wset_new_normal, wset_new_total)
6304 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
6305 (wset_right_fringe_width, wset_right_margin_cols)
6306 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
6307 (wset_vertical_scroll_bar_type, wset_window_parameters):
6308 * xdisp.c (wset_base_line_number, wset_base_line_pos)
6309 (wset_column_number_displayed, wset_region_showing)
6310 (window_box_edges, run_window_scroll_functions)
6311 (append_glyph_string_lists, prepend_glyph_string_lists)
6312 (append_glyph_string, set_glyph_string_background_width)
6313 (append_glyph, append_composite_glyph)
6314 (take_vertical_position_into_account):
6315 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
6316 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
6317 (lface_hash, lface_same_font_attributes_p, lookup_face):
6318 * xml.c (libxml2_loaded_p):
6319 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
6320 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
6321 Now 'static', not 'static inline'.
6322
6323 * bidi.c: Tune.
6324 (bidi_copy_it): Do the whole copy with a single memcpy.
6325 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
6326
6327 Revert the FOLLOW-SYMLINKS change for file-attributes.
6328 Doing it right would require several changes to Tramp, and there's
6329 not enough time to get that tested before the freeze today.
6330 * dired.c (directory_files_internal, Ffile_attributes):
6331 Undo last change.
6332
6333 * frame.c (x_report_frame_params): Port better to wider ints.
6334 Do not assume that EMACS_UINT is the same width as uprintmax_t,
6335 or that pointers can be printed in 15 decimal digits.
6336 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
6337
6338 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
6339
6340 Support x64 build on MS-Windows.
6341 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
6342 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
6343 compatibility with x64.
6344 (x_get_focus_frame): Add prototype.
6345
6346 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
6347 defining an XRectangle structure.
6348
6349 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
6350 arithmetics for compatibility with x64.
6351
6352 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
6353 compatibility with x64.
6354
6355 * w32heap.h: Adjust prototypes and declarations.
6356
6357 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
6358 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
6359 DWORD, long, and unsigned long, for compatibility with x64.
6360 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
6361 (sbrk): Argument is now of type ptrdiff_t.
6362
6363 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
6364 less than 0x0500.
6365 (w32_msg_pump): Use WPARAM type for 'result'.
6366
6367 * w32.c (init_environment, get_emacs_configuration): Support AMD64
6368 architecture.
6369 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
6370 compatibility with x64.
6371
6372 * vm-limit.c (lim_data): Now size_t.
6373 (check_memory_limits): Adjust prototypes of real_morecore and
6374 __morecore to receive argument of type ptrdiff_t. Use size_t for
6375 five_percent and data_size.
6376
6377 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
6378 variables, for compatibility with x64.
6379 (rva_to_section, offset_to_section, relocate_offset)
6380 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
6381 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
6382 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
6383 for compatibility with x64.
6384
6385 * sysdep.c (STDERR_FILENO): Define if not already defined.
6386
6387 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
6388 (__morecore): Argument type is now ptrdiff_t.
6389 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
6390 (relinquish): Use ptrdiff_t type for 'excess'.
6391 (r_alloc_sbrk): Argument type is now ptrdiff_t.
6392
6393 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
6394 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
6395 instead of a literal number.
6396
6397 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
6398 (min): Define only if not already defined.
6399
6400 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
6401 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
6402 hosts.
6403
6404 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
6405 'bitmaps' is a pointer.
6406
6407 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
6408
6409 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
6410
6411 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
6412
6413 file-attributes has a new optional arg FOLLOW-SYMLINKS.
6414 * dired.c (directory_files_internal, Ffile_attributes):
6415 New arg follow_symlinks. All uses changed.
6416
6417 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6418
6419 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
6420
6421 2012-09-30 Eli Zaretskii <eliz@gnu.org>
6422
6423 Support atimers and CPU profiler via profile.c on MS-Windows.
6424 * w32proc.c (sig_mask, crit_sig): New static variables.
6425 (sys_signal): Support SIGALRM and SIGPROF.
6426 (sigemptyset, sigaddset, sigfillset, sigprocmask)
6427 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
6428 sigfillset, and sigprocmask are no longer no-ops.
6429 (sigismember): New function.
6430 (struct itimer_data): New definition.
6431 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
6432 (crit_prof): New static variables.
6433 (MAX_SINGLE_SLEEP): New definition.
6434 (timer_loop, stop_timer_thread, term_timers, init_timers)
6435 (start_timer_thread, getitimer, setitimer): New functions.
6436 (alarm): No longer a no-op, calls setitimer.
6437
6438 * w32.c (term_ntproc): Call term_timers.
6439 (init_ntproc): Make sure all signals are unblocked at startup, to
6440 erase any traces of dumping. Call init_timers.
6441
6442 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
6443 Windows-specific code to display the hourglass mouse pointer is no
6444 longer used.
6445 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
6446 to hourglass timer expiration.
6447 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
6448 Remove, no longer used.
6449 (w32_note_current_window, show_hourglass, hide_hourglass):
6450 New functions, in support of hourglass cursor display similar to other
6451 window systems.
6452 (syms_of_w32fns): Don't initialize hourglass_timer.
6453
6454 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
6455 WINDOWSNT as well.
6456 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
6457
6458 * w32.h (init_timers, term_timers): Add prototypes.
6459
6460 2012-09-30 Kenichi Handa <handa@gnu.org>
6461
6462 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
6463 to the buffer relocation which may be caused by ccl_driver.
6464
6465 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
6466
6467 * xfns.c (Fx_file_dialog): Update comment.
6468
6469 * w32fns.c (Fx_file_dialog): Update comment.
6470
6471 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
6472 Initialize panel name field if OSX >= 10.6.
6473
6474 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
6475
6476 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
6477
6478 * nsterm.m (NEW_STYLE_FS): New define.
6479 (ns_fullscreen_hook, windowWillEnterFullScreen)
6480 (windowDidEnterFullScreen, windowWillExitFullScreen)
6481 (windowDidExitFullScreen, toggleFullScreen, handleFS)
6482 (setFSValue): New functions.
6483 (EmacsFSWindow): New implementation.
6484 (canBecomeKeyWindow): New function for EmacsFSWindow.
6485 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
6486 (dealloc): Release nonfs_window if in fullscreen.
6487 (updateFrameSize:): Call windowDidMove to update top/left.
6488 (windowWillResize:toSize:): Check if frame is still maximized.
6489 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
6490 next_maximized, maximized_width, maximized_height and nonfs_window.
6491 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
6492 tbar_height.
6493 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
6494 fullscreen. Set maximized_width/height. Act on next_maximized.
6495
6496 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
6497 (EmacsView): Add variables for fullscreen.
6498 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
6499 (EmacsFSWindow): New interface for fullscreen.
6500
6501 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
6502
6503 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
6504
6505 2012-09-30 Chong Yidong <cyd@gnu.org>
6506
6507 * fns.c (Frandom): Doc fix.
6508
6509 2012-09-30 Martin Rudalics <rudalics@gmx.at>
6510
6511 * window.c (Vwindow_combination_limit): New default value.
6512 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
6513
6514 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
6515
6516 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
6517 Suggested by Eli Zaretskii in
6518 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
6519
6520 2012-09-30 Eli Zaretskii <eliz@gnu.org>
6521
6522 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
6523 HAVE_TIMER_SETTIME is defined.
6524
6525 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
6526
6527 Profiler improvements: more-accurate timers, overflow checks.
6528 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
6529 signal.h, setjmp.h. Include systime.h instead.
6530 (saturated_add): New function.
6531 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
6532 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
6533 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
6534 New static vars.
6535 (enum profiler_cpu_running): New enum.
6536 (profiler_cpu_running): Now of that enum type, not bool.
6537 All uses changed to store the new value.
6538 (handle_profiler_signal): Rename from sigprof_handler_1,
6539 for consistency with other handlers. Do not check whether
6540 cpu_log is a hash-table if garbage collecting, since it
6541 doesn't matter in that case.
6542 (deliver_profiler_signal): Rename from sigprof_handler,
6543 for consistency with other handlers.
6544 (setup_cpu_timer): New function, with much of what used to be in
6545 Fprofiler_cpu_start. Check for out-of-range argument.
6546 Prefer timer_settime if available, and prefer
6547 thread cputime clocks, then process cputime clocks, then
6548 monotonic clocks, to the old realtime clock. Use make_timeval
6549 to round more-correctly when falling back to setitimer.
6550 (Fprofiler_cpu_start): Use it.
6551 (Fprofiler_cpu_stop): Prefer timer_settime if available.
6552 Don't assume that passing NULL as the 2nd argument of setitimer
6553 is the same as passing a pointer to all-zero storage.
6554 Ignore SIGPROF afterwards.
6555 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
6556 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
6557 non-fatal signal handlers. Ignore SIGPROF on startup.
6558 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
6559 in profiler.c, since sysdep.c now uses it.
6560
6561 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
6562 Suggested by Eli Zaretskii in
6563 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
6564
6565 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
6566
6567 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
6568
6569 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
6570
6571 * lisp.h (struct backtrace): Remove indirection for `function' field.
6572 * xdisp.c (redisplay_internal):
6573 * profiler.c (record_backtrace, sigprof_handler_1):
6574 * alloc.c (Fgarbage_collect):
6575 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
6576 (Fbacktrace_frame): Adjust accordingly.
6577
6578 2012-09-28 Glenn Morris <rgm@gnu.org>
6579
6580 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
6581 (Frun_hook_with_args_until_failure): Doc fixes.
6582
6583 2012-09-28 Eli Zaretskii <eliz@gnu.org>
6584
6585 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
6586 Qautomatic_redisplay and change the symbol name. All users changed.
6587
6588 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
6589
6590 * profiler.c (sigprof_handler): Fix race condition.
6591
6592 2012-09-28 Glenn Morris <rgm@gnu.org>
6593
6594 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
6595
6596 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
6597
6598 Check more robustly for timer_settime.
6599 * Makefile.in (LIB_TIMER_TIME): New macro.
6600 (LIBES): Add it.
6601 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
6602 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
6603 call timer_settime.
6604
6605 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
6606
6607 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
6608
6609 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
6610
6611 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
6612
6613 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
6614
6615 * character.h (MAYBE_UNIFY_CHAR): Remove.
6616 * charset.c, charset.h (maybe_unify_char): Now static.
6617 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
6618 Since this stuff is now private to charset.c, there's no need for
6619 a public macro and no need to inline by hand.
6620
6621 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
6622 Stefan Monnier <monnier@iro.umontreal.ca>
6623 Juanma Barranquero <lekktu@gmail.com>
6624
6625 * profiler.c: New file.
6626 * Makefile.in (base_obj): Add profiler.o.
6627 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
6628 ($(BLD)/profiler.$(O)): New target.
6629 * emacs.c (main): Call syms_of_profiler.
6630 * alloc.c (Qautomatic_gc): New constant.
6631 (MALLOC_PROBE): New macro.
6632 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
6633 (total_bytes_of_live_objects): New function.
6634 (Fgarbage_collect): Use it. Record itself in backtrace_list.
6635 Call malloc_probe for the memory profiler.
6636 (syms_of_alloc): Define Qautomatic_gc.
6637 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
6638 race condition.
6639 (struct backtrace): Move definition...
6640 * lisp.h (struct backtrace): ..here.
6641 (Qautomatic_gc, profiler_memory_running): Declare vars.
6642 (malloc_probe, syms_of_profiler): Declare functions.
6643 * xdisp.c (Qautomatic_redisplay): New constant.
6644 (redisplay_internal): Record itself in backtrace_list.
6645 (syms_of_xdisp): Define Qautomatic_redisplay.
6646
6647 2012-09-25 Eli Zaretskii <eliz@gnu.org>
6648 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
6649
6650 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
6651
6652 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
6653
6654 Prefer POSIX timers if available.
6655 They avoid a race if the timer is too close to the current time.
6656 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
6657 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
6658 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
6659
6660 2012-09-25 Eli Zaretskii <eliz@gnu.org>
6661
6662 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
6663 CHAR_STRING_ADVANCE.
6664 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
6665 STRING_CHAR_ADVANCE.
6666
6667 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
6668
6669 Move Vlibrary_cache to emacs.c and reset before dumping.
6670
6671 * lisp.h (reset_image_types): Declare.
6672 [WINDOWSNT] (Vlibrary_cache): Declare.
6673
6674 * image.c (reset_image_types): New function.
6675
6676 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
6677 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
6678 (Fdump_emacs): Reset Vlibrary_cache and image_types.
6679
6680 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
6681 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
6682
6683 * w32.h (Vlibrary_cache): Do not declare.
6684
6685 2012-09-25 Eli Zaretskii <eliz@gnu.org>
6686
6687 * w32proc.c (sys_signal): Handle all signals defined by the
6688 MS-Windows runtime, not just SIGCHLD. Actually install the signal
6689 handlers for signals supported by Windows. Don't override
6690 term_ntproc as the handler for SIGABRT.
6691 (sigaction): Rewrite to call sys_signal instead of duplicating its
6692 code.
6693 (sys_kill): Improve commentary.
6694
6695 * w32.c (term_ntproc): Accept (and ignore) one argument, for
6696 consistency with a signature of a signal handler. All callers
6697 changed.
6698 (init_ntproc): Accept an argument DUMPING. If dumping, don't
6699 install term_ntproc as a signal handler for SIGABRT, as that
6700 should be done by the dumped Emacs.
6701
6702 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
6703
6704 * w32select.c (term_w32select): Protect against repeated
6705 invocation by setting clipboard_owner to NULL after calling
6706 DestroyWindow.
6707
6708 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
6709 and term_ntproc to their modified signatures.
6710
6711 * character.c (char_string, string_char): Remove calls to
6712 MAYBE_UNIFY_CHAR. See the discussion starting at
6713 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
6714 for the details.
6715
6716 2012-09-25 Chong Yidong <cyd@gnu.org>
6717
6718 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
6719
6720 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
6721
6722 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
6723 when encountering an unknown bytecode.
6724
6725 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
6726
6727 image.c, indent.c: Use bool for booleans.
6728 * dispextern.h (struct image_type): Members valid_p, load, init
6729 now return bool, not int. All uses changed.
6730 * image.c: Omit unnecessary static decls.
6731 (x_create_bitmap_mask, x_build_heuristic_mask):
6732 Return void, not int, since callers don't care about the return value.
6733 (x_create_bitmap_mask, define_image_type, valid_image_p)
6734 (struct image_keyword, parse_image_spec, image_spec_value)
6735 (check_image_size, image_background)
6736 (image_background_transparent, x_clear_image_1)
6737 (postprocess_image, lookup_image, x_check_image_size)
6738 (x_create_x_image_and_pixmap, xbm_image_p)
6739 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
6740 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
6741 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
6742 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
6743 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
6744 (png_image_p, init_png_functions, png_load_body, png_load)
6745 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
6746 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
6747 (init_gif_functions, gif_load, imagemagick_image_p)
6748 (imagemagick_load_image, imagemagick_load, svg_image_p)
6749 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
6750 (gs_load):
6751 * nsimage.m (ns_load_image):
6752 * nsterm.m (ns_defined_color):
6753 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
6754 * xfns.c (x_defined_color):
6755 * xterm.c (x_alloc_lighter_color_for_widget)
6756 (x_alloc_nearest_color_1, x_alloc_nearest_color)
6757 (x_alloc_lighter_color):
6758 * indent.c (disptab_matches_widthtab, current_column)
6759 (scan_for_column, string_display_width, indented_beyond_p)
6760 (compute_motion, vmotion, Fvertical_motion):
6761 Use bool for booleans.
6762
6763 2012-09-24 Chong Yidong <cyd@gnu.org>
6764
6765 * chartab.c (Fset_char_table_default): Obsolete function removed.
6766
6767 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
6768
6769 Move pid_t related decls out of lisp.h.
6770 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
6771 (interruptible_wait_for_termination):
6772 Move these decls from lisp.h to syswait.h, since they use pid_t.
6773 Needed on FreeBSD; see Herbert J. Skuhra in
6774 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
6775 * callproc.c: Include syswait.h.
6776
6777 gnutls.c, gtkutil.c: Use bool for boolean.
6778 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
6779 (emacs_gnutls_handle_error):
6780 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
6781 (xg_hide_tooltip, xg_create_frame_widgets)
6782 (create_dialog, xg_uses_old_file_dialog)
6783 (xg_get_file_with_chooser, xg_get_file_with_selection)
6784 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
6785 (xg_item_label_same_p, xg_update_menubar)
6786 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
6787 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
6788 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
6789 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
6790 (update_frame_tool_bar, free_frame_tool_bar):
6791 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
6792 * nsmenu.m (ns_update_menubar):
6793 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
6794 * xfns.c (Fx_show_tip) [USE_GTK]:
6795 Use bool for boolean.
6796 * gtkutil.c (xg_update_frame_menubar):
6797 * xmenu.c (update_frame_menubar):
6798 Return void, not int, since caller ignores return value.
6799 * gtkutil.c (xg_change_toolbar_position):
6800 Return void, not 1.
6801
6802 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
6803
6804 * makefile.w32-in (BLOCKINPUT_H): Remove.
6805 (SYSSIGNAL_H): New macro.
6806 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
6807 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
6808 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
6809 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
6810 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
6811 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
6812 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
6813 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
6814 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
6815 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
6816 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
6817 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
6818 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
6819 ($(BLD)/w32xfns.$(O)): Update dependencies.
6820
6821 2012-09-23 Eli Zaretskii <eliz@gnu.org>
6822
6823 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
6824 fatal_error_backtrace.
6825
6826 * w32proc.c (sys_kill): Undo last change: don't do anything when
6827 invoked to deliver SIGABRT to our own process. This is now
6828 handled by emacs_raise.
6829
6830 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
6831
6832 * w32term.c (w32_read_socket): Remove leftover reference to
6833 interrupt_input_pending.
6834
6835 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
6836
6837 Do not use SA_NODEFER.
6838 Problem reported by Dani Moncayo in
6839 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
6840 * alloc.c (die):
6841 * sysdep.c (emacs_abort): Do not reset signal handler.
6842 * emacs.c (terminate_due_to_signal): Reset signal handler here.
6843 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
6844 wanted even on POSIXish hosts, and it doesn't work on Windows.
6845
6846 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
6847
6848 * xterm.c (x_term_init): Call fixup_locale before and after calling
6849 gtk_init (Bug#12392).
6850
6851 2012-09-23 Chong Yidong <cyd@gnu.org>
6852
6853 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
6854 Vdynamic_library_alist.
6855
6856 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
6857 (Fgnutls_available_p): Caller changed.
6858
6859 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
6860 (Flibxml_parse_xml_region): Likewise.
6861
6862 * dispextern.h (struct image_type): Remove arg from init function.
6863
6864 * image.c (Finit_image_library, lookup_image_type)
6865 (define_image_type): Remove now-unneeded second arg.
6866 (init_xpm_functions, init_png_functions, init_jpeg_functions)
6867 (init_tiff_functions, init_gif_functions, init_svg_functions):
6868 Arglist and w32_delayed_load calling convention changed.
6869 (gs_type): Remove init_gs_functions; there is no such function.
6870 (valid_image_p, make_image): Fix caller to lookup_image_type.
6871
6872 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
6873
6874 Simplify and avoid signal-handling races (Bug#12471).
6875 * alloc.c (die):
6876 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
6877 Avoid recursive loop if there's a fatal error in the function itself.
6878 * atimer.c (pending_atimers):
6879 * blockinput.h: Don't include "atimer.h"; no longer needed.
6880 (interrupt_input_pending): Remove. All uses removed.
6881 pending_signals now counts both atimers and ordinary interrupts.
6882 This is less racy than having three separate pending-signal flags.
6883 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
6884 (input_blocked_p):
6885 Rename from their upper-case counterparts BLOCK_INPUT,
6886 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
6887 INPUT_BLOCKED_P, and turn into functions. All uses changed.
6888 This makes it easier to access volatile variables more accurately.
6889 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
6890 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
6891 that's more reliable if the code is buggy and sets
6892 interrupt_input_blocked to a negative value. All uses changed.
6893 * atimer.c (deliver_alarm_signal):
6894 Remove. No need to deliver this to the parent; any thread can
6895 handle this signal now. All uses replaced by underlying handler.
6896 * atimer.c (turn_on_atimers):
6897 * dispnew.c (handle_window_change_signal):
6898 * emacs.c (handle_danger_signal):
6899 * keyboard.c (kbd_buffer_get_event):
6900 Don't reestablish signal handler; not needed with sigaction.
6901 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
6902 (UNBLOCK_INPUT_TO):
6903 Rework to avoid unnecessary accesses to volatile variables.
6904 (UNBLOCK_INPUT_TO): Now a function.
6905 (totally_unblock_input, unblock_input): New decls.
6906 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
6907 (init_data): Remove. Necessary stuff now done in init_signal.
6908 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
6909 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
6910 (fatal_error_code): Remove; no longer needed.
6911 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
6912 it doesn't always backtrace. All uses changed. No need to reset
6913 signal to default, since sigaction and/or die does that for us now.
6914 Use emacs_raise (FOO), not kill (getpid (), FOO).
6915 (main): Check more-accurately whether we're dumping.
6916 Move fatal-error setup to sysdep.c
6917 * floatfns.c: Do not include "syssignal.h"; no longer needed.
6918 * gtkutil.c (xg_get_file_name, xg_get_font):
6919 Remove no-longer-needed signal-mask manipulation.
6920 * keyboard.c, process.c (POLL_FOR_INPUT):
6921 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
6922 * keyboard.c (read_avail_input): Remove.
6923 All uses replaced by gobble_input.
6924 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
6925 (kbd_buffer_store_event_hold, gobble_input):
6926 (record_asynch_buffer_change) [USABLE_SIGIO]:
6927 (store_user_signal_events):
6928 No need to mess with signal mask.
6929 (gobble_input): If blocking input and there are terminals, simply
6930 set pending_signals to 1 and return. All hooks changed to not
6931 worry about whether input is blocked.
6932 (process_pending_signals): Clear pending_signals before processing
6933 them, in case a signal comes in while we're processing.
6934 By convention callers now test pending_signals before calling us.
6935 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
6936 New functions, to support changes to blockinput.h.
6937 (handle_input_available_signal): Now extern.
6938 (reinvoke_input_signal): Remove. All uses replaced by
6939 handle_async_input.
6940 (quit_count): Now volatile, since a signal handler uses it.
6941 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
6942 All callers changed. Block SIGINT only if not already blocked.
6943 Clear sigmask reliably, even if Fsignal returns, which it can.
6944 Omit unnecessary accesses to volatile var.
6945 (quit_throw_to_read_char): No need to restore sigmask.
6946 * keyboard.c (gobble_input, handle_user_signal):
6947 * process.c (wait_reading_process_output):
6948 Call signal-handling code rather than killing ourselves.
6949 * lisp.h: Include <float.h>, for...
6950 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
6951 (pending_signals): Now volatile.
6952 (syms_of_data): Now const if IEEE floating point.
6953 (handle_input_available_signal) [USABLE_SIGIO]:
6954 (terminate_due_to_signal, record_child_status_change): New decls.
6955 * process.c (create_process): Avoid disaster if memory is exhausted
6956 while we're processing a vfork, by tightening the critical section
6957 around the vfork.
6958 (send_process_frame, process_sent_to, handle_pipe_signal)
6959 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
6960 ignores SIGPIPE.
6961 (send_process): No need for setjmp/longjmp any more, since the
6962 SIGPIPE stuff is now gone. Instead, report an error if errno
6963 is EPIPE.
6964 (record_child_status_change): Now extern. PID and W are now args.
6965 Return void, not bool. All callers changed.
6966 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
6967 Remove. All uses removed. This bug should be fixed now in a
6968 different way.
6969 (wait_for_termination_1): Use waitpid rather than sigsuspend,
6970 and record the child status change directly. This avoids the
6971 need to futz with the signal mask.
6972 (process_fatal_action): Move here from emacs.c.
6973 (emacs_sigaction_flags): New function, containing
6974 much of what used to be in emacs_sigaction_init.
6975 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
6976 caught by emacs, to make races less likely.
6977 (deliver_process_signal): Rename from handle_on_main_thread.
6978 All uses changed.
6979 (BACKTRACE_LIMIT_MAX): Now at top level.
6980 (thread_backtrace_buffer, threadback_backtrace_pointers):
6981 New static vars.
6982 (deliver_thread_signal, deliver_fatal_thread_signal):
6983 New functions, for more-accurate delivery of thread-specific signals.
6984 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
6985 (deliver_arith_signal): Handle in this thread, not
6986 in the main thread, since it's triggered by this thread.
6987 (maybe_fatal_sig): New function.
6988 (init_signals): New arg DUMPING so that we can be more accurate
6989 about whether we're dumping. Caller changed.
6990 Treat thread-specific signals differently from process-general signals.
6991 Block all signals while handling fatal error; that's safer.
6992 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
6993 on IEEE hosts.
6994 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
6995 Ignore SIGPIPE unless batch.
6996 (emacs_backtrace): Output backtrace for the appropriate thread,
6997 which is not necessarily the main thread.
6998 * syssignal.h: Include <stdbool.h>.
6999 (emacs_raise): New macro.
7000 * xterm.c (x_connection_signal): Remove; no longer needed
7001 now that we use sigaction.
7002 (x_connection_closed): No need to mess with sigmask now.
7003 (x_initialize): No need to reset SIGPIPE handler here, since
7004 init_signals does this for us now.
7005
7006 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
7007
7008 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
7009 background rect may be larger (Bug#12245).
7010
7011 2012-09-23 Chong Yidong <cyd@gnu.org>
7012
7013 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
7014
7015 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
7016
7017 * .gdbinit: Just stop at fatal_error_backtrace.
7018 See Stefan Monnier's request in
7019 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
7020 Remove no-longer-used query of system type.
7021
7022 2012-09-22 Chong Yidong <cyd@gnu.org>
7023
7024 * search.c (Freplace_match): Doc fix (Bug#12325).
7025
7026 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
7027
7028 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
7029 (Fline_end_position): Doc fix.
7030
7031 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
7032
7033 2012-09-22 Chong Yidong <cyd@gnu.org>
7034
7035 * dispextern.h (struct image_type): Add new slot, storing a type
7036 initialization function.
7037
7038 * image.c (define_image_type): Call the image initializer function
7039 if it is defined. Arguments and return value changed.
7040 (valid_image_p, make_image): Callers changed.
7041 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
7042 (gif_type, imagemagick_type, svg_type, gs_type):
7043 Add initialization functions.
7044 (Finit_image_library): Call lookup_image_type.
7045 (CHECK_LIB_AVAILABLE): Macro deleted.
7046 (lookup_image_type): Call define_image_type here, rather than via
7047 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
7048 (syms_of_image): Move define_image_type calls for xbm_type and
7049 pbm_type to lookup_image_type.
7050
7051 2012-09-22 Eli Zaretskii <eliz@gnu.org>
7052
7053 * keyboard.c (timer_check_2): Move calculation of 'timers' and
7054 'idle_timers' from here ...
7055 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
7056 lists, to avoid infloops when the timer does something stupid,
7057 like reinvoke itself with the same or smaller time-out.
7058 (Bug#12447)
7059
7060 2012-09-22 Martin Rudalics <rudalics@gmx.at>
7061
7062 * window.c (Fsplit_window_internal): Handle only Qt value of
7063 Vwindow_combination_limit separately.
7064 (Qtemp_buffer_resize): New symbol.
7065 (Vwindow_combination_limit): New default value.
7066 Rewrite doc-string.
7067
7068 2012-09-22 Eli Zaretskii <eliz@gnu.org>
7069
7070 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
7071 the new overlay string. (Bug#10159)
7072
7073 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
7074
7075 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
7076 or that fprintf is async-signal-safe. POSIX doesn't require
7077 either assumption.
7078
7079 2012-09-22 Chong Yidong <cyd@gnu.org>
7080
7081 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
7082 (Bug#8207).
7083
7084 2012-09-22 Kenichi Handa <handa@gnu.org>
7085
7086 * composite.c (composition_reseat_it): Handle the case that a
7087 grapheme cluster is not covered by a single font (Bug#12352).
7088
7089 2012-09-21 Chong Yidong <cyd@gnu.org>
7090
7091 * image.c (define_image_type): Avoid adding duplicate types to
7092 image_types (Bug#12463). Suggested by Jörg Walter.
7093
7094 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7095
7096 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
7097 (print_load_command_name): Add case LC_DATA_IN_CODE.
7098 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
7099
7100 2012-09-21 Glenn Morris <rgm@gnu.org>
7101
7102 * eval.c (Frun_hook_with_args_until_success)
7103 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
7104
7105 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
7106
7107 * fileio.c (Ffile_selinux_context): Only call freecon when
7108 lgetfilecon succeeded.
7109 (Fset_file_selinux_context): Likewise. (Bug#12444)
7110
7111 2012-09-21 Eli Zaretskii <eliz@gnu.org>
7112
7113 * xdisp.c (try_window_reusing_current_matrix): Under bidi
7114 reordering, locate the cursor by calling set_cursor_from_row; if
7115 that fails, clear the desired glyph matrix before returning a
7116 failure indication to the caller. Fixes leaving garbled display
7117 when fast scrolling with a down-key. (Bug#12403)
7118 (compute_stop_pos_backwards): Fix a typo that caused crashes while
7119 scrolling through multibyte text.
7120
7121 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
7122
7123 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
7124 calling mark_vectorlike since that's the one that marks the window.
7125 (mark_discard_killed_buffers): Mark the final cdr.
7126 * window.h (struct window): Move prev/next_buffers to the
7127 non-standard fields.
7128 * window.c (make_window): Initialize prev/next_buffers manually.
7129
7130 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
7131
7132 Omit unused arg EXPECTED from socket hooks.
7133 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
7134 * nsterm.m (ns_term_init):
7135 * termhooks.h (struct terminal.read_socket_hook):
7136 * w32inevt.c (w32_console_read_socket):
7137 * w32term.c (w32_read_socket):
7138 * xterm.c (XTread_socket):
7139 Omit unused arg EXPECTED. All callers changed.
7140 (store_user_signal_events): Return void, not int, since callers no
7141 longer care about the return value. All uses changed.
7142
7143 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
7144
7145 * w32gui.h (XParseGeometry): Do not declare.
7146
7147 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
7148
7149 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
7150 Ignore 'expected'. See Eli Zaretskii in
7151 <http://bugs.gnu.org/12471#8> (last line).
7152
7153 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
7154 (XParseGeometry): Now static. Substitute extremal values for
7155 values that are out of range.
7156
7157 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
7158
7159 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
7160
7161 * nsfns.m (XParseGeometry): Remove.
7162 (Fx_create_frame): Call x_set_offset to correctly interpret
7163 top_pos in geometry.
7164
7165 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
7166 (Fx_parse_geometry): If there is a space in string, call
7167 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
7168
7169 2012-09-17 Eli Zaretskii <eliz@gnu.org>
7170
7171 * search.c (scan_buffer): Use character positions in calls to
7172 region_cache_forward and region_cache_backward, not byte
7173 positions. (Bug#12196)
7174
7175 * w32term.c (w32_read_socket): Set pending_signals to 1, like
7176 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
7177
7178 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
7179 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
7180 emacs_blocked_malloc, now deleted.
7181
7182 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
7183
7184 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
7185 The workaround was for improving performance on Solaris 2.4, but
7186 is getting in the way now. Emacs will still work if someone is
7187 still running Solaris 2.4 in a museum somewhere; Sun dropped
7188 support for Solaris 2.4 in 2003.
7189 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
7190 * process.c (create_process) [HAVE_WORKING_VFORK]:
7191 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
7192 since Emacs no longer uses vfork on that platform.
7193
7194 2012-09-17 Glenn Morris <rgm@gnu.org>
7195
7196 * emacs.c: Use COPYRIGHT.
7197
7198 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
7199
7200 Remove configure's --without-sync-input option (Bug#12450).
7201 When auditing signal-handling in preparation for cleaning it up,
7202 I found that SYNC_INPUT has race conditions and would be a real
7203 pain to fix. Since it's an undocumented and deprecated
7204 configure-time option, now seems like a good time to remove it.
7205 Also see <http://bugs.gnu.org/11080#16>.
7206 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
7207 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
7208 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
7209 (malloc_hysteresis):
7210 (check_depth) [XMALLOC_OVERRUN_CHECK]:
7211 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
7212 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
7213 (dont_register_blocks, bytes_used_when_reconsidered)
7214 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
7215 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
7216 [!SYSTEM_MALLOC && !SYNC_INPUT]:
7217 Remove. All uses removed.
7218 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
7219 implementation, one that depends on whether the new macro
7220 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
7221 is defined.
7222 * atimer.c (run_timers, handle_alarm_signal):
7223 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
7224 (handle_async_input, process_pending_signals)
7225 (handle_input_available_signal, init_keyboard):
7226 * nsterm.m (ns_read_socket):
7227 * process.c (wait_reading_process_output):
7228 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
7229 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
7230 (emacs_write):
7231 * xterm.c (XTread_socket):
7232 Assume SYNC_INPUT.
7233 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
7234 * eval.c (handling_signal): Remove. All uses removed.
7235 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
7236 All uses replaced with the SYNC_INPUT version.
7237 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
7238 Remove decls.
7239 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7240 Now static.
7241
7242 * font.c (Ffont_shape_gstring): Remove unused local.
7243
7244 2012-09-16 Glenn Morris <rgm@gnu.org>
7245
7246 * Makefile.in (clean): No longer run nextstep's clean.
7247
7248 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
7249 (ns_frag): Remove.
7250 (ns-app): Move here from ns.mk, and simplify.
7251 (clean): Simplify nextstep entry.
7252 * ns.mk: Remove file.
7253
7254 2012-09-17 Kenichi Handa <handa@gnu.org>
7255
7256 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
7257 not covert the last few charactes.
7258
7259 2012-09-16 Kenichi Handa <handa@gnu.org>
7260
7261 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
7262 here, but just check the validity of glyphs in the glyph-string.
7263
7264 2012-09-16 Martin Rudalics <rudalics@gmx.at>
7265
7266 * window.c (Fwindow_parameter, Fset_window_parameter):
7267 Accept any window as argument (Bug#12452).
7268
7269 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
7270
7271 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
7272 to ns_term_init to avoid memory leak.
7273
7274 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
7275 explicit retain/release.
7276 (ns_term_init): Only allow one display. Initialize outerpool and
7277 ns_*_types.
7278
7279 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
7280
7281 Port _setjmp fix to POSIXish hosts as well as Microsoft.
7282 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
7283 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
7284 the Microsoft problem in a different way, by altering ../nt/config.nt.
7285
7286 2012-09-15 Eli Zaretskii <eliz@gnu.org>
7287
7288 * w32xfns.c:
7289 * w32uniscribe.c:
7290 * w32term.c:
7291 * w32select.c:
7292 * w32reg.c:
7293 * w32proc.c:
7294 * w32menu.c:
7295 * w32inevt.c:
7296 * w32heap.c:
7297 * w32font.c:
7298 * w32fns.c:
7299 * w32console.c:
7300 * w32.c:
7301 * w16select.c: Remove inclusion of setjmp.h, as it is now included
7302 by lisp.h. This completes removal of setjmp.h inclusion
7303 erroneously announced in the previous commit. (Bug#12446)
7304
7305 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
7306 more accurate.
7307
7308 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
7309 not defined as a macro. The latter happens on MS-Windows.
7310 (Bug#12446)
7311
7312 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
7313
7314 Port better to POSIX hosts lacking _setjmp (Bug#12446).
7315 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
7316 Some instances of '#include <setjmp.h>' removed, if the
7317 only reason for the instance was because "lisp.h" was included.
7318 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
7319 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
7320 and _longjmp with the new symbols. Emacs already uses _setjmp if
7321 available, so this change affects only POSIXish hosts that have
7322 sigsetjmp but not _setjmp, such as some versions of Solaris and
7323 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
7324 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
7325 (png_load_body) [HAVE_PNG]:
7326 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
7327 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
7328 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
7329 since PNG requires jmp_buf. This is the only exception to the
7330 general rule that we now use sys_setjmp and sys_longjmp.
7331 This exception is OK since this code does not change the signal
7332 mask or longjmp out of a signal handler.
7333
7334 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
7335
7336 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
7337 Include "syssignal.h", for 'main_thread'.
7338
7339 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
7340
7341 Avoid out-of-range marker position (Bug#12426).
7342 * insdel.c (replace_range, replace_range_2):
7343 Adjust markers before overlays, as suggested by comments.
7344 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
7345 Remove redundant check before calling offset_intervals.
7346
7347 2012-09-14 Martin Rudalics <rudalics@gmx.at>
7348
7349 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
7350 current buffer (Bug#12387).
7351
7352 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
7353
7354 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
7355
7356 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7357
7358 Use a more backwards-compatible timer format (Bug#12430).
7359 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
7360 vector element, not from the 4th, since PSECS is now at the end.
7361 (Fcurrent_idle_time): Doc fix.
7362
7363 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
7364
7365 Function to mark objects and remove killed buffers at once.
7366 * alloc.c (discard_killed_buffers): Rename to ...
7367 (mark_discard_killed buffers) ... new name. Add marking
7368 of remaining objects. Fix comment. Adjust users.
7369 (mark_object): Do not touch frame buffer lists here.
7370 * frame.c (delete_frame): Reset frame buffer lists here.
7371
7372 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
7373
7374 Better workaround for GNOME bug when --enable-gcc-warnings.
7375 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
7376 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
7377 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
7378
7379 Simplify SIGIO usage (Bug#12408).
7380 The code that dealt with SIGIO was crufty and confusing, e.g., it
7381 played tricks like "#undef SIGIO" but these tricks were not used
7382 consistently. Simplify mostly by not #undeffing standard symbols,
7383 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
7384 or not as we please) rather than "defined SIGIO" (standard symbol
7385 that we probably shouldn't #undef).
7386 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
7387 Modules that need it can include it.
7388 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
7389 * dispextern.h (ignore_sigio): New decl.
7390 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
7391 unconditionally, since it's now a no-op if !USABLE_SIGIO.
7392 * emacs.c (shut_down_emacs):
7393 * keyboard.c (kbd_buffer_store_event_hold):
7394 Use ignore_sigio rather than invoking 'signal' directly.
7395 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
7396 for FIONREAD.
7397 (FIONREAD, SIGIO): Do not #undef.
7398 (tty_read_avail_input): Use #error rather than a syntax error.
7399 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
7400 for I_PIPE, used by SETUP_SLAVE_PTY.
7401 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
7402 * sysdep.c (croak): Remove; no longer needed. This bit of
7403 temporary code, with Fred N. Fish's comment that it's temporary,
7404 has been in Emacs since at least 1992!
7405 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
7406 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
7407 * syssignal.h (croak): Remove decl.
7408 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
7409 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
7410 now that we're termios-only.
7411 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
7412 * term.c (dissociate_if_controlling_tty): Use #error rather than
7413 a run-time error.
7414
7415 Work around GCC and GNOME bugs when --enable-gcc-warnings.
7416 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
7417 to work around GNOME bug 683906.
7418 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
7419 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
7420 This works around GCC bug 54561.
7421
7422 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
7423
7424 More fixes for 'volatile' and setjmp/longjmp.
7425 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
7426 * image.c (struct png_load_context) [HAVE_PNG]: New type.
7427 (png_load_body) [HAVE_PNG]:
7428 (jpeg_load_body) [HAVE_JPEG]:
7429 New function, with most of the old parent function's body.
7430 (png_load) [HAVE_PNG]:
7431 (jpeg_load) [HAVE_JPEG]:
7432 Invoke the new function, to avoid longjmp munging our locals.
7433 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
7434 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
7435 longjmp is passed 2, as the C standard doesn't guarantee this.
7436 Instead, store the failure code into mgr->failure_code.
7437
7438 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7439
7440 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
7441 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
7442 (syms_of_keyboard): Remove support for unread-command-char.
7443
7444 2012-09-12 Eli Zaretskii <eliz@gnu.org>
7445
7446 * w32proc.c (sys_kill): If PID is our process ID and the signal is
7447 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
7448 violation. (Bug#12426)
7449
7450 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
7451
7452 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
7453
7454 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7455
7456 * eval.c: Add `inhibit-debugger'.
7457 (Qinhibit_debugger): New symbol.
7458 (call_debugger): Bind it instead of Qdebug_on_error.
7459 (maybe_call_debugger): Test Vinhibit_debugger.
7460 (syms_of_eval): Define inhibit-debugger.
7461 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
7462 (syms_of_xdisp): Remove inhibit-debug-on-message.
7463
7464 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
7465
7466 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
7467 If a nonvolatile local variable is written before a _longjmp to
7468 the frame containing the variable, and is read after the _longjmp,
7469 the value read is indeterminate. Some local variables of type
7470 'struct handler' and 'struct catchtag' are used in this way, so
7471 mark each of their slots as volatile if the slot can be set before
7472 _longjmp and read afterwards.
7473 * lisp.h (struct handler): var and chosen_clause are now volatile.
7474 (struct catchtag): val, next, and pdlcount are now volatile.
7475
7476 * bidi.c (bidi_push_it, bidi_pop_it):
7477 * fns.c (copy_hash_table):
7478 * image.c (define_image_type):
7479 * keyboard.c (kbd_buffer_store_event_hold):
7480 * process.c (Fprocess_send_eof):
7481 * xfaces.c (x_create_gc) [HAVE_NS]:
7482 * xgselect.c (xg_select):
7483 Prefer assignment to memcpy when either will do.
7484
7485 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
7486 Use pointer-to-a-pointer to simplify and avoid a NILP check each
7487 time an item is removed. No need to mark this function 'inline';
7488 the compiler knows better than we do.
7489
7490 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
7491
7492 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
7493 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
7494 to change_frame_size (Bug#12388).
7495 (windowDidResize:): Pass YES to updateFrameSize.
7496
7497 * nsterm.h: Add delay parameter to updateFrameSize.
7498
7499 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
7500
7501 Discard killed buffers from deleted window and frame objects.
7502 This reduces an amount of references to killed buffers and
7503 helps GC to reclaim them faster.
7504 * alloc.c (discard_killed_buffers): New function.
7505 (mark_object): Use it for deleted windows and frames.
7506 (mark_object): If symbol's value is set up for a killed buffer
7507 or deleted frame, restore its global binding.
7508 * data.c (swap_in_global_binding): Add GC notice.
7509 (swap_in_symval_forwarding): Use convenient set_blv_where.
7510 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
7511 * window.h: ... to here.
7512
7513 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
7514
7515 Convenient macro to check whether the buffer is live.
7516 * buffer.h (BUFFER_LIVE_P): New macro.
7517 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
7518 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
7519
7520 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7521
7522 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
7523 composition cases (Bug#12364).
7524
7525 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
7526 overhang of succeeding glyphs overlapping box cursor.
7527
7528 * w32term.c (x_draw_glyph_string): Likewise.
7529
7530 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
7531
7532 Simplify, document, and port floating-point (Bug#12381).
7533 The porting part of this patch fixes bugs on non-IEEE platforms
7534 with frexp, ldexp, logb.
7535 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
7536 Now static.
7537 * floatfns.c: Simplify discussion of functions that Emacs doesn't
7538 support, by removing commented-out code and briefly listing the
7539 C89 functions excluded. The commented-out stuff was confusing
7540 maintenance, e.g., we thought we needed cbrt but it was commented out.
7541 (logb): Remove decl; no longer needed.
7542 (isfinite): New macro, if not already supplied.
7543 (isnan): Don't replace any existing macro.
7544 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
7545 are present on all C89 platforms.
7546 (Ffrexp): Do not special-case zero, as frexp does the right thing
7547 for that case.
7548 (Flogb): Do not use logb, as it doesn't have the desired meaning
7549 on hosts that use non-base-2 floating point. Instead, stick with
7550 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
7551 frexp, to avoid getting an unspecified result.
7552
7553 * xdisp.c (Qinhibit_debug_on_message): Now static.
7554
7555 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
7556
7557 * nsterm.m (ns_update_begin): Set clip path to whole view by using
7558 NSBezierPath (Bug#12131).
7559
7560 2012-09-10 Chong Yidong <cyd@gnu.org>
7561
7562 * fns.c (Fdelq, Fdelete): Doc fix.
7563
7564 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
7565
7566 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
7567 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
7568
7569 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
7570
7571 * lisp.h (make_lisp_ptr): New macro to replace XSET.
7572 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
7573 Use it.
7574
7575 2012-09-09 Eli Zaretskii <eliz@gnu.org>
7576
7577 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
7578 left fringe if the window has a left margin. This avoids leaving
7579 traces of the cursor because its leftmost pixel is not drawn over.
7580
7581 * dispnew.c (update_window_line): When the left margin area of a
7582 screen line is updated, set the redraw_fringe_bitmaps_p flag of
7583 that screen line. (Bug#12277)
7584
7585 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
7586
7587 Assume C89 or later for math functions (Bug#12381).
7588 This simplifies the code, and makes it a bit smaller and faster,
7589 and (most important) makes it easier to clean up signal handling
7590 since we can stop worring about floating-point exceptions in
7591 library code. That was a problem before C89, but the problem
7592 went away many years ago on all practical Emacs targets.
7593 * data.c, image.c, lread.c, print.c:
7594 Don't include <math.h>; no longer needed.
7595 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
7596 might be autoconfigured, as that never happens.
7597 * data.c (fmod):
7598 * doprnt.c (DBL_MAX_10_EXP):
7599 * print.c (DBL_DIG):
7600 Remove. C89 or later always defines these.
7601 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
7602 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
7603 (arith_error, domain_error, domain_error2):
7604 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
7605 no longer needed -- we simply return what C returns. All uses removed.
7606 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
7607 the wrapped code.
7608 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
7609 Remove. All uses expanded, as these macros are no longer used
7610 more than once and are now more trouble than they're worth.
7611 (Ftan): Use tan, not sin / cos.
7612 (Flogb): Assume C89 frexp.
7613 (fmod_float): Assume C89 fmod.
7614 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
7615 (init_floatfns): Remove. All uses removed.
7616
7617 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
7618
7619 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
7620 compositeToPoint for OSX < 10.6 (Bug#12390).
7621
7622 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
7623
7624 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
7625 This produces more-accurate results.
7626
7627 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
7628
7629 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
7630 changes (Bug#12088).
7631
7632 2012-09-08 Chong Yidong <cyd@gnu.org>
7633
7634 * syntax.c (Fstring_to_syntax): Doc fix.
7635
7636 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
7637
7638 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
7639 in the internal border.
7640 (x_set_window_size): Remove static variables and their usage.
7641 (ns_redraw_scroll_bars): Fix NSTRACE arg.
7642 (ns_after_update_window_line, ns_draw_fringe_bitmap):
7643 Remove fringe/internal border adjustment (Bug#11052).
7644 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
7645 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
7646 (ns_fix_rect_ibw): Remove.
7647 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
7648 (ns_dumpglyphs_box_or_relief): Ditto.
7649 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
7650 adjustment.
7651 (ns_dumpglyphs_image): Ditto.
7652 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
7653 border adjustment.
7654 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
7655 their usage. Add fringe_extended_p and its use as in other terms.
7656 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
7657 scroll bar was removed.
7658 (updateFrameSize): New function.
7659 (windowDidResize): Move code to updateFrameSize and call it.
7660
7661 * nsterm.h (EmacsView): Add updateFrameSize.
7662
7663 2012-09-07 Chong Yidong <cyd@gnu.org>
7664
7665 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
7666
7667 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
7668
7669 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
7670
7671 More signal-handler cleanup (Bug#12327).
7672 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
7673 Problem introduced when merging patches. Noted by Eli Zaretskii in
7674 <http://bugs.gnu.org/12327#67>.
7675 * floatfns.c: Comment fix.
7676 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
7677 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
7678 and anyway the declaration is harmless even if SIGDANGER is not defined.
7679 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
7680 defined BROKEN_FIONREAD). systty.h formerly did this, but other
7681 source files not surprisingly expected syssignal.h to define, or
7682 not define, SIGIO, and it's cleaner to do it that way, for consistency.
7683 Include <sys/ioctl.h>, for FIONREAD.
7684 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
7685 This eliminates a problem whereby other files mysteriously had
7686 to include "syssignal.h" before including "systty.h" if they
7687 wanted to use "#ifdef SIGIO".
7688
7689 2012-09-07 Eli Zaretskii <eliz@gnu.org>
7690
7691 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
7692
7693 * w32.c (sigemptyset): Empty the set.
7694 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
7695
7696 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
7697
7698 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
7699
7700 * alloc.c (mark_buffer): Revert unsafe marking optimization.
7701 (mark_object): Likewise for frame objects.
7702
7703 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
7704
7705 * syssignal.h (handle_on_main_thread): Always declare,
7706 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
7707 This ports to platforms without HAVE_PTHREAD.
7708
7709 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
7710
7711 Signal-handler cleanup (Bug#12327).
7712 Emacs's signal handlers were written in the old 4.2BSD style with
7713 sigblock and sigmask and so forth, and this led to some
7714 inefficiencies and confusion. Rewrite these to use
7715 pthread_sigmask etc. without copying signal sets around. Also,
7716 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
7717 'signal', and instead use functions that do not attempt to take
7718 over the system name space. This patch causes Emacs's text
7719 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
7720 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
7721 Do not include <signal.h> or "syssignal.h", as these
7722 modules do not use signals.
7723 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
7724 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
7725 Do not include <signal.h>, as "syssignal.h" does that for us now.
7726 * atimer.c (sigmask_atimers): New function.
7727 (block_atimers, unblock_atimers): New functions,
7728 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
7729 All uses replaced.
7730 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
7731 no longer needed here.
7732 * emacs.c (main): Inspect existing signal handler with sigaction,
7733 so that there's no need to block and unblock SIGHUP.
7734 * sysdep.c (struct save_signal): New member 'action', replacing
7735 old member 'handler'.
7736 (save_signal_handlers, restore_signal_handlers):
7737 Use sigaction instead of 'signal' to save and restore.
7738 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
7739 New function. All users of 'signal' modified to use set_sighandler
7740 if they're writeonly, and to use sys_signal if they're read+write.
7741 (emacs_sigaction_init, forwarded_signal): New functions.
7742 (sys_signal): Remove. All uses replaced by calls to sigaction
7743 and emacs_sigaction_init, or by direct calls to 'signal'.
7744 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
7745 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
7746 all uses replaced by pthread_sigmask etc. calls.
7747 * syssignal.h: Include <signal.h>.
7748 (emacs_sigaction_init, forwarded_signal): New decls.
7749 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
7750 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
7751 (sigmask, sys_sigmask): Remove; no longer needed.
7752 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
7753 (sigblock, sigunblock, sigfree):
7754 (sigsetmask) [!defined sigsetmask]:
7755 Remove. All uses replaced by pthread_sigmask.
7756 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
7757 no longer need to be replaced, and its typical old uses
7758 are now done via emacs_sigaction_init and sigaction.
7759 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
7760 (sys_sigdel): Remove; unused.
7761 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
7762
7763 2012-09-06 Eli Zaretskii <eliz@gnu.org>
7764
7765 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
7766 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
7767
7768 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
7769
7770 Explicitly mark buffer_defaults and buffer_local_symbols.
7771 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
7772 mark_local_symbols here.
7773 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
7774 since special buffers aren't marked here any more.
7775 (allocate_buffer): Chain new buffer with all_buffers here...
7776 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
7777 not here.
7778 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
7779 (syms_of_buffer): Remove staticpro of the above.
7780 (init_buffer_once): Set names for buffer_defaults and
7781 buffer_local_symbols.
7782
7783 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
7784
7785 Use bool for booleans in font-related modules.
7786 * font.c (font_intern_prop, font_style_to_value)
7787 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
7788 (generate_otf_features, font_check_otf_features, font_check_otf)
7789 (font_match_p, font_list_entities, font_at):
7790 * fontset.c (fontset_id_valid_p, reorder_font_vector
7791 (fontset_find_font, Fset_fontset_font)
7792 (face_suitable_for_char_p) [0]:
7793 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
7794 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
7795 (m17n_flt_initialized, ftfont_shape_by_flt):
7796 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
7797 * nsfont.m (nsfont_draw):
7798 * w32font.c (w32font_draw):
7799 * w32term.c (x_draw_glyphless_glyph_string_foreground):
7800 Use bool for booleans.
7801 * font.h: Adjust to above API changes.
7802 (struct font, struct font_driver, struct font_driver_list):
7803 Use bool for booleans.
7804 (struct font): Remove useless member encoding_type.
7805 All users removed.
7806 * fontset.c, xftfont.c: Omit unnecessary static decls.
7807
7808 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
7809
7810 * alloc.c (mark_object): Revert window marking code
7811 since it's unsafe for the Fset_window_configuration.
7812
7813 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
7814
7815 Fix race conditions with signal handlers and errno (Bug#12327).
7816 Be more systematic about preserving errno whenever a signal
7817 handler returns, even if it's not in the main thread. Do this by
7818 renaming signal handlers to distinguish between signal delivery
7819 and signal handling. All uses changed.
7820 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
7821 * data.c (deliver_arith_signal): Rename from arith_error.
7822 * dispnew.c (deliver_window_change_signal): Rename from
7823 window_change_signal.
7824 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
7825 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
7826 * keyboard.c (deliver_input_available_signal): Rename from
7827 input_available_signal.
7828 (deliver_user_signal): Rename from handle_user_signal.
7829 (deliver_interrupt_signal): Rename from interrupt_signal.
7830 * process.c (deliver_pipe_signal): Rename from send_process_trap.
7831 (deliver_child_signal): Rename from sigchld_handler.
7832 * atimer.c (handle_alarm_signal):
7833 * data.c (handle_arith_signal):
7834 * dispnew.c (handle_window_change_signal):
7835 * emacs.c (handle_fatal_signal, handle_danger_signal):
7836 * keyboard.c (handle_input_available_signal):
7837 * keyboard.c (handle_user_signal, handle_interrupt_signal):
7838 * process.c (handle_pipe_signal, handle_child_signal):
7839 New functions, with the actual signal-handling code taken from the
7840 original respective signal handlers, sans the sporadic attempts to
7841 preserve errno, since that's now done by handle_on_main_thread.
7842 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
7843 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
7844 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7845 Move to sysdep.c.
7846 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7847 Move initialization of main_thread to sysdep.c's init_signals.
7848 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
7849 our usage, and simplifies the mainline code.
7850 (record_child_status_change): New static function, as a helper
7851 for handle_child_signal, and with most of the old child handler's
7852 contents.
7853 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
7854 (handle_child_signal): Use the above.
7855 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7856 Moved here from emacs.c.
7857 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
7858 code moved here from emacs.c's main function.
7859 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
7860 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
7861 This lets callers save and restore errno properly.
7862
7863 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
7864
7865 Remove redundant or unused things here and there.
7866 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
7867 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
7868 * editfns.c (Fcompare_buffer_substrings): Likewise.
7869 * frame.h (struct terminal, struct font_driver_list):
7870 Remove redundant declarations.
7871 * window.h (Qleft, Qright): Likewise.
7872
7873 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
7874
7875 Do not mark objects from deleted buffers, windows and frames.
7876 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
7877 (mark_object): Likewise for windows and frames.
7878
7879 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
7880
7881 * alloc.c (valid_lisp_object_p): Treat killed buffers,
7882 buffer_defaults and buffer_local_symbols as valid objects.
7883 Return special value to denote them.
7884
7885 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
7886
7887 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
7888 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
7889 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
7890 (file_name_absolute_p, Fsubstitute_in_file_name):
7891 (check_executable, check_writable, Ffile_accessible_directory_p)
7892 (Fset_file_selinux_context, Fdefault_file_modes)
7893 (Finsert_file_contents, choose_write_coding_system)
7894 (Fwrite_region, build_annotations, a_write, e_write)
7895 (Fdo_auto_save):
7896 * filelock.c (boot_time_initialized, get_boot_time)
7897 (get_boot_time_1, lock_file_1, within_one_second):
7898 * floatfns.c (in_float):
7899 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
7900 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
7901 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
7902 * lisp.h (struct Lisp_Hash_Table.cmpfn):
7903 * window.c (compare_window_configurations):
7904 Use bool for booleans.
7905 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
7906 (Fdefault_file_modes): Now mode_t, not int, for modes.
7907 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
7908 (internal_delete_file): Now returns void, not a (boolean) int,
7909 since nobody was looking at the return value.
7910 * lisp.h, window.h: Adjust to above API changes.
7911
7912 * xdisp.c (set_message): Simplify and reindent last change.
7913
7914 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
7915
7916 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
7917
7918 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
7919
7920 * eval.c (call_debugger): Make the function non-static so that we
7921 can call it from set_message.
7922
7923 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
7924 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
7925
7926 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7927
7928 Give more-useful info on a fatal error (Bug#12328).
7929 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
7930 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
7931 of doing the work ourselves.
7932 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
7933 do most of the work.
7934 (fatal_error_backtrace): New function, taken from the guts
7935 of the old fatal_error_signal, but with a new option to output
7936 a backtrace.
7937 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
7938 info about the signal than just its number.
7939 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
7940 * sysdep.c: Include <execinfo.h>
7941 (emacs_backtrace): New function, taken partly from the previous
7942 code of the 'die' function.
7943 (emacs_abort): Call fatal_error_backtrace rather than abort.
7944
7945 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
7946
7947 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
7948 eager (load-time) macro-expansion.
7949 * lisp.mk (lisp): Add macroexp.
7950
7951 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7952
7953 Simplify redefinition of 'abort' (Bug#12316).
7954 Do not try to redefine the 'abort' function. Instead, redo
7955 the code so that it calls 'emacs_abort' rather than 'abort'.
7956 This removes the need for the NO_ABORT configure-time macro
7957 and makes it easier to change the abort code to do a backtrace.
7958 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
7959 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
7960 Remove; sysdep.c's emacs_abort now takes its place.
7961 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
7962 'abort' changed to use 'emacs_abort'.
7963 * msdos.c (dos_abort) [defined abort]: Remove; not used.
7964 (abort) [!defined abort]: Rename to ...
7965 (emacs_abort): ... new name.
7966 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
7967 the place of the old 'abort' in emacs.c.
7968 * w32.c, w32fns.c (abort): Do not #undef.
7969 * w32.c (emacs_abort): Rename from w32_abort.
7970
7971 2012-09-04 Eli Zaretskii <eliz@gnu.org>
7972
7973 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
7974 offsets[j].dv, since the y axis of the screen coordinates points
7975 down, while the y axis of the font definition coordinates points
7976 up. This fixes display of Arabic diacritics such as KASRA and
7977 KASRATAN. (Bug#11860)
7978
7979 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7980
7981 Be more systematic about _setjmp vs setjmp.
7982 * alloc.c (test_setjmp, mark_stack):
7983 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
7984 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
7985 (png_load, my_error_exit, jpeg_load):
7986 * process.c (send_process_trap, send_process):
7987 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
7988 The underscored versions are up to 30x faster on some hosts.
7989 Formerly, the code used setjmp+longjmp sometimes and
7990 _setjmp+_longjmp at other times, with no particular reason to
7991 prefer setjmp+longjmp.
7992
7993 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
7994
7995 Fix minor problem found by static checking.
7996 * buffer.c (Fdelete_all_overlays): Return nil.
7997
7998 2012-09-03 Martin Rudalics <rudalics@gmx.at>
7999
8000 * buffer.c (Fdelete_all_overlays): New function.
8001
8002 2012-09-03 Chong Yidong <cyd@gnu.org>
8003
8004 * gtkutil.c: Add extern decl for Qxft.
8005
8006 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
8007
8008 * emacs.c, eval.c: Use bool for boolean.
8009 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
8010 (malloc_using_checking) [DOUG_LEA_MALLOC]:
8011 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
8012 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
8013 (main, decode_env_path, Fdaemon_initialized):
8014 * eval.c (call_debugger, Finteractive_p, interactive_p):
8015 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
8016 (maybe_call_debugger, Fbacktrace):
8017 * process.c (read_process_output, exec_sentinel):
8018 Use bool for booleans.
8019 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
8020 All callers changed.
8021 * eval.c (interactive_p): Omit always-true boolean argument
8022 EXCLUDE_SUBRS_P. All callers changed.
8023 * dispextern.h, lisp.h: Reflect above API changes.
8024 * firstfile.c (dummy): Use the address of 'main', whose signature
8025 won't change, instead of the address of 'initialize', whose
8026 signature just changed from int to bool.
8027 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
8028 * msdos.c (fatal_error_in_progress): ... from here.
8029 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
8030 of incrementing it.
8031 (redisplay_internal, unwind_redisplay): Simply clear
8032 REDISPLAYING_P when unwinding, instead of saving its previous,
8033 always-false value and then restoring it.
8034
8035 Clean up some extern decls.
8036 Mostly, this hoists extern decls out of .c files and into .h files.
8037 That way, we're more likely to catch errors if the interfaces change.
8038 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
8039 declare xg_mark_data.
8040 * dispextern.h (x_frame_parm_handlers):
8041 * font.h (Qxft):
8042 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
8043 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
8044 (Qultra_bold, Qoblique, Qitalic):
8045 Move extern decl here from .c file.
8046 * alloc.c (xg_mark_data) [USE_GTK]:
8047 * doc.c (Qclosure):
8048 * eval.c (Qlexical_binding):
8049 * fns.c (time) [!HAVE_UNISTD_H]:
8050 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
8051 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
8052 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
8053 * lread.c (Qinternal_interpreter_environment):
8054 * minibuf.c (Qbuffer):
8055 * process.c (QCfamily, QCfilter):
8056 * widget.c (free_frame_faces):
8057 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
8058 * xfont.c (x_clear_errors):
8059 * xterm.c (x_frame_parm_handlers):
8060 Remove now-redundant extern decls.
8061 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
8062 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
8063 Now static.
8064 * xfaces.c: Remove unnecessary static decls.
8065 * xterm.c (updating_frame): Remove decl of nonexistent object.
8066
8067 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
8068 when building globals.h, as the objects that are not built on
8069 this host are not needed to compile C files on this host.
8070
8071 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
8072
8073 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
8074
8075 * frame.h: Add missing prototype for x_wm_set_size_hint.
8076
8077 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
8078
8079 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
8080 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
8081 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
8082 (Fsubstitute_command_keys):
8083 * editfns.c (region_limit, find_field, Fconstrain_to_field)
8084 (save_excursion_save, save_excursion_restore)
8085 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
8086 (format_time_string, general_insert_function)
8087 (make_buffer_string, make_buffer_string_both)
8088 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
8089 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
8090 (copy_text, insert_1, insert_1_both, insert_from_string)
8091 (insert_from_string_before_markers, insert_from_string_1)
8092 (insert_from_buffer, insert_from_buffer_1, replace_range)
8093 (replace_range_2, del_range_1, del_range_byte, del_range_both)
8094 (del_range_2, modify_region):
8095 * intervals.c (intervals_equal, balance_possible_root_interval)
8096 (adjust_intervals_for_insertion, merge_properties_sticky)
8097 (graft_intervals_into_buffer, lookup_char_property)
8098 (adjust_for_invis_intang, set_point_both)
8099 (get_property_and_range, compare_string_intervals)
8100 (set_intervals_multibyte_1, set_intervals_multibyte):
8101 * keyboard.c (decode_timer):
8102 Use bool for boolean.
8103 * intervals.h, lisp.h, systime.h: Reflect above API changes.
8104 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
8105
8106 2012-09-02 Chong Yidong <cyd@gnu.org>
8107
8108 * keymap.c (push_key_description): Print M-TAB as C-M-i
8109 (Bug#11758).
8110
8111 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
8112
8113 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
8114 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
8115 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
8116 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
8117 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
8118 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
8119 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
8120
8121 2012-09-01 Eli Zaretskii <eliz@gnu.org>
8122
8123 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
8124 more than one grapheme cluster passed to the shaper: compute the
8125 offset adjustment values separately for each cluster. (Bug#11860)
8126
8127 * image.c: Restore mistakenly removed inclusion of w32.h. Without
8128 it, GCC doesn't see prototypes of w32_delayed_load, and complains
8129 about implicit conversions from integer to pointer.
8130
8131 2012-09-01 Daniel Colascione <dancol@dancol.org>
8132
8133 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
8134 system used too early.
8135
8136 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
8137
8138 Better seed support for (random).
8139 * emacs.c (main): Call init_random.
8140 * fns.c (Frandom): Set the seed from a string argument, if given.
8141 Remove long-obsolete Gentzel cruft.
8142 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
8143 (init_random): New function.
8144
8145 2012-09-01 Daniel Colascione <dancol@dancol.org>
8146
8147 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
8148 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
8149 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
8150 x_wm_set_size_hint, x_query_colors, x_real_positions,
8151 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
8152 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
8153 all of which have been moved to common code.
8154
8155 * xfaces.c: Include TERM_HEADER instead of listing all possible
8156 window-system headers.
8157
8158 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
8159 to match header.
8160
8161 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
8162 directly accessing frame internals.
8163
8164 * w32font.h: Include font.h. Define syms_of_w32font and
8165 globals_of_w32font.
8166
8167 * process.c: Include TERM_HEADER instead of listing all possible
8168 window-system headers.
8169
8170 * nsterm.h: Remove declarations now in frame.h.
8171 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
8172
8173 * menu.c: Include TERM_HEADER instead of listing all possible
8174 window-system headers.
8175
8176 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
8177 window system.
8178
8179 * keyboard.c: Include TERM_HEADER instead of listing all possible
8180 window-system headers.
8181
8182 * image.c: Include TERM_HEADER instead of listing all possible
8183 window-system headers. Declare Vlibrary_cache when compiling for
8184 Windows.
8185
8186 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
8187 window system declarations.
8188
8189 * frame.h: Move common functions here: set_frame_menubar,
8190 x_set_window_size, x_sync, x_get_focus_frame,
8191 x_set_mouse_position, x_set_mouse_pixel_position,
8192 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
8193 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
8194 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
8195 x_activate_menubar, x_real_positions, x_bitmap_icon,
8196 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
8197 and x_query_colors.
8198
8199 * frame.c: Include TERM_HEADER instead of listing all possible
8200 window-system headers.
8201
8202 * font.c: Include TERM_HEADER instead of listing all possible
8203 window-system headers.
8204
8205 * emacs.c: Include TERM_HEADER.
8206
8207 * dispnew.c: Include TERM_HEADER instead of listing all possible
8208 window-system headers.
8209
8210 * ccl.h: Include character.h.
8211
8212 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
8213 the current window system; include in list of objects to link into
8214 Emacs.
8215
8216 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
8217
8218 Remove mark_ttys function and fix tty_display_info initialization.
8219 * lisp.h (mark_ttys): Remove prototype.
8220 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
8221 to mark_ttys because all possible values of 'top_frame' slot are
8222 the frames which are reachable from Vframe_list.
8223 * term.c (mark_ttys): Remove.
8224 (init_tty): Safely initialize 'top_frame' slot with Qnil.
8225
8226 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
8227
8228 Change struct frame bitfields from unsigned char to unsigned.
8229 * frame.h (struct frame): Change type of 'display_preempted',
8230 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
8231 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
8232 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
8233 bitfields from unsigned char to unsigned.
8234
8235 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
8236
8237 Remove unused member of struct x_output and struct w32_output.
8238 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
8239 * w32term.h (struct w32_output): Likewise.
8240
8241 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
8242
8243 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
8244 does not become zero (Bug#12234).
8245
8246 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
8247
8248 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
8249 for GCC 4.7.1 x86-64.
8250
8251 2012-08-30 Glenn Morris <rgm@gnu.org>
8252
8253 * lread.c (init_lread): For out-of-tree builds, only add the
8254 source directory's site-lisp dir to the load-path if it exists,
8255 consistent with in-tree builds. (Bug#12302)
8256
8257 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
8258
8259 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
8260 button_values to NULL. Call setStykeMask so dialogs get a close button.
8261 (windowShouldClose:): Set window_closed.
8262 (dealloc): New member, free button_values.
8263 (process_dialog:): Make member function. Remove window argument,
8264 replace window with self. Count buttons and allocate and store values
8265 in button_values.
8266 (addButton:value:row:): value is int with the name tag. Call setTag
8267 with tag. Remove return self, declare return value as void.
8268 (addString:row:): Remove return self, declare return value as void.
8269 (addSplit): Remove return self, declare return value as void.
8270 (clicked:): Remove return self, declare return value as void.
8271 Set dialog_return to button_values[seltag]. Code formatting change.
8272 (initFromContents:isQuestion:): Adjust call to process_dialog.
8273 Code formatting change.
8274 (timeout_handler:): Set timer_fired to YES.
8275 (runDialogAt:): Set timer_fired to NO.
8276 Handle click on close button as quit.
8277
8278 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
8279 Add window_closed and button_values. Add void as return value for
8280 add(Button|String|Split). addButton takes int instead of Lisp_Object.
8281 Add process_dialog as new member.
8282
8283 2012-08-28 Eli Zaretskii <eliz@gnu.org>
8284
8285 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
8286 is not one of the heaps we manage. (Bug#12242)
8287
8288 2012-08-28 Glenn Morris <rgm@gnu.org>
8289
8290 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
8291
8292 2012-08-28 Martin Rudalics <rudalics@gmx.at>
8293
8294 * window.c (Fset_window_configuration): Remove handling of
8295 auto-buffer-name window parameter. Install revision of reverted
8296 fix.
8297
8298 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
8299
8300 Do not allow to set major mode for a dead buffer.
8301 * buffer.c (Fset_buffer_major_mode): Signal an error
8302 if the buffer is dead.
8303 (Fother_buffer, other_buffer_safely): Remove redundant
8304 nested declaration.
8305
8306 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
8307
8308 Always use set_buffer_if_live to restore original buffer at unwind.
8309 * buffer.h (record_unwind_current_buffer): New function.
8310 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
8311 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
8312 * undo.c, window.c: Adjust users.
8313 * buffer.c (set_buffer_if_live): Fix comment.
8314
8315 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
8316
8317 Fix usage of set_buffer_internal.
8318 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
8319 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
8320 * coding.c (decode_coding): Omit redundant test.
8321 * fileio.c (decide_coding_unwind): Likewise.
8322 * fns.c (secure_hash): Likewise.
8323 * insdel.c (modify_region): Likewise.
8324 * keyboard.c (command_loop_1): Likewise.
8325 * print.c (PRINTFINISH): Likewise.
8326 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
8327
8328 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
8329
8330 * dispnew.c: Use bool for boolean.
8331 (frame_garbaged, display_completed, delayed_size_change)
8332 (fonts_changed_p, add_window_display_history)
8333 (add_frame_display_history, verify_row_hash)
8334 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
8335 (row_equal_p, realloc_glyph_pool)
8336 (allocate_matrices_for_frame_redisplay)
8337 (showing_window_margins_p)
8338 (adjust_frame_glyphs_for_frame_redisplay)
8339 (build_frame_matrix_from_leaf_window, make_current)
8340 (mirrored_line_dance, mirror_line_dance, update_frame)
8341 (update_window_tree, update_single_window)
8342 (check_current_matrix_flags, update_window, update_text_area)
8343 (update_window_line, set_window_update_flags, scrolling_window)
8344 (update_frame_1, scrolling, buffer_posn_from_coords)
8345 (do_pending_window_change, change_frame_size)
8346 (change_frame_size_1, sit_for):
8347 Use bool for boolean.
8348 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
8349 and remove last int (actually boolean) argument, which was always 0.
8350 All callers changed.
8351 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
8352 * dispextern.h (struct composition_it): Use bool for boolean.
8353 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
8354 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
8355 * dired.c (file_name_completion):
8356 Use bool for boolean. (This was missed in an earlier change.)
8357
8358 2012-08-27 Martin Rudalics <rudalics@gmx.at>
8359
8360 * window.c (Fset_window_configuration): Revert first part of
8361 last change.
8362
8363 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
8364
8365 * nsterm.h (NSPanel): New class variable dialog_return.
8366
8367 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
8368 Initialize dialog_return.
8369 (windowShouldClose:): Use stop instead of stopModalWithCode.
8370 (clicked:): Ditto, and also set dialog_return (Bug#12258).
8371 (timeout_handler:): Use stop instead of abortModal. Send a dummy
8372 event.
8373 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
8374 modal loop returns.
8375
8376 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
8377
8378 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
8379 * composite.c (find_composition, composition_gstring_p)
8380 (composition_reseat_it, find_automatic_composition):
8381 * data.c (let_shadows_buffer_binding_p)
8382 (let_shadows_global_binding_p, set_internal, make_blv)
8383 (Fmake_variable_buffer_local, Fmake_local_variable)
8384 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
8385 (cons_to_signed, arith_driver):
8386 * dbusbind.c (xd_in_read_queued_messages):
8387 * dired.c (directory_files_internal, file_name_completion):
8388 Use bool for booleans.
8389 * dired.c (file_name_completion):
8390 * process.h (fd_callback):
8391 Omit int (actually boolean) argument. It wasn't being used.
8392 All uses changed.
8393 * composite.h, lisp.h: Reflect above API changes.
8394
8395 * cmds.c, coding.c: Use bool for booleans.
8396 * cmds.c (move_point, Fself_insert_command):
8397 * coding.h (struct composition status, struct coding_system):
8398 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
8399 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
8400 (emacs_mule_char, decode_coding_emacs_mule)
8401 (encode_coding_emacs_mule, detect_coding_iso_2022)
8402 (decode_coding_iso_2022, encode_invocation_designation)
8403 (encode_designation_at_bol, encode_coding_iso_2022)
8404 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
8405 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
8406 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
8407 (encode_coding_raw_text, detect_coding_charset)
8408 (decode_coding_charset, encode_coding_charset, detect_eol)
8409 (detect_coding, get_translation_table, produce_chars)
8410 (consume_chars, reused_workbuf_in_use)
8411 (make_conversion_work_buffer, code_conversion_save)
8412 (decode_coding_object, encode_coding_object)
8413 (detect_coding_system, char_encodable_p)
8414 (Funencodable_char_position, code_convert_region)
8415 (code_convert_string, code_convert_string_norecord)
8416 (Fset_coding_system_priority):
8417 * fileio.c (Finsert_file_contents):
8418 Use bool for booleans.
8419 * coding.h, lisp.h: Reflect above API changes.
8420 * coding.c: Remove unnecessary static function decls.
8421 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
8422 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
8423 not a boolean 'int', since callers never look at the return value.
8424 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
8425 * coding.h (decoding_buffer_size, encoding_buffer_size)
8426 (emacs_mule_string_char): Remove unused extern decls.
8427 (struct iso_2022_spec, struct coding_system):
8428 Use 'unsigned int : 1' for boolean fields, since there's more than one.
8429 (struct emacs_mule_spec): Remove unused field 'full_support'.
8430 All initializations removed.
8431 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
8432
8433 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
8434
8435 Fix spare memory change (Bug#12286).
8436 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
8437 (valid_lisp_object_p): Likewise.
8438
8439 2012-08-27 Martin Rudalics <rudalics@gmx.at>
8440
8441 * window.c (Fset_window_configuration): Record any window's old
8442 buffer if it's replaced (see Bug#8789). If the new current
8443 buffer doesn't appear in the selected window, go to its old
8444 point (Bug#12208).
8445
8446 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
8447
8448 Special MEM_TYPE_SPARE to denote reserved memory.
8449 * alloc.c (enum mem_type): New memory type.
8450 (refill_memory_reserve): Use new type for spare memory.
8451 This prevents live_cons_p and live_string_p from incorrect
8452 detection of uninitialized objects from spare memory as live.
8453
8454 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
8455
8456 Spelling fixes.
8457 * Makefile.in (.PHONY): versioclean -> versionclean.
8458
8459 Remove unused external symbols.
8460 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
8461 * window.c (Qwindow_valid_p, decode_valid_window):
8462 Now static, not extern.
8463 * data.c (Qinterval): Remove; unused.
8464 (syms_of_data): Do not define 'interval'.
8465 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
8466 * window.h (decode_valid_window):
8467 Remove decls.
8468
8469 * character.c, charset.c, chartab.c: Use bool for booleans.
8470 * character.c (lisp_string_width, string_count_byte8)
8471 (string_escape_byte8):
8472 * charset.c (charset_map_loaded, load_charset_map, read_hex):
8473 (load_charset_map_from_file, map_charset_chars)
8474 (Fdefine_charset_internal, define_charset_internal)
8475 (Fdeclare_equiv_charset, find_charsets_in_text)
8476 (Ffind_charset_region, char_charset, Fiso_charset):
8477 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
8478 (sub_char_table_set, sub_char_table_set_range)
8479 (char_table_set_range, optimize_sub_char_table)
8480 (map_sub_char_table):
8481 Use bool for boolean.
8482 * character.c (str_to_unibyte): Omit last boolean argument; it was
8483 always 0. All callers changed.
8484 * character.h, charset.h: Adjust to match previous changes.
8485 * character.h (char_printable_p): Remove decl of nonexistent function.
8486 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
8487 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
8488 are all boolean, so make them single-bit bitfields.
8489
8490 * lisp.h (ASET): Remove attempt to detect side effects.
8491 It was meant to be temporary and it often doesn't work,
8492 because when IDX has side effects the behavior of IDX==IDX
8493 is undefined. See Stefan Monnier in
8494 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
8495
8496 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
8497
8498 * lisp.h (functionp): New function (extracted from Ffunctionp).
8499 (FUNCTIONP): Use it.
8500 * eval.c (Ffunctionp): Use it.
8501
8502 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
8503
8504 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
8505 as that's faster and simpler than static storage. Don't bother
8506 with the g_main_context_query overhead if g_main_context_pending
8507 says no events are pending.
8508 (gfds, gfds_size): Remove these static vars.
8509 (xgselect_initialize): Remove; no longer needed.
8510 All uses and decls removed.
8511
8512 * emacs.c (fatal_error_signal_hook): Remove.
8513 All uses removed. This leftover from old code was always 0.
8514
8515 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
8516 * casefiddle.c (casify_object, casify_region):
8517 * casetab.c (set_case_table):
8518 * category.c, category.h (word_boundary_p):
8519 * category.h (CHAR_HAS_CATEGORY):
8520 Use bool for booleans, instead of int.
8521
8522 2012-08-25 Eli Zaretskii <eliz@gnu.org>
8523
8524 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
8525
8526 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
8527
8528 On assertion failure, print backtrace if available.
8529 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
8530 (die) [ENABLE_CHECKING]: Print a backtrace if available.
8531 * Makefile.in (LIB_EXECINFO): New macro.
8532 (LIBES): Use it.
8533
8534 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
8535 * bytecode.c (exec_byte_code):
8536 * callint.c (check_mark, Fcall_interactively):
8537 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
8538 (getenv_internal, sync_process_alive, call_process_exited):
8539 * lisp.h (USE_SAFE_ALLOCA):
8540 Use bool for booleans, instead of int.
8541 * lisp.h, process.h: Adjust prototypes to match above changes.
8542 * callint.c (Fcall_interactively): Don't assume the mark's
8543 offset fits in 'int'.
8544
8545 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
8546
8547 * buffer.c, buffer.h: Use bool for boolean.
8548 * buffer.c (reset_buffer_local_variables)
8549 (buffer_lisp_local_variables, Fset_buffer_modified_p)
8550 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
8551 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
8552 (overlay_touches_p, overlay_strings, Foverlay_put)
8553 (report_overlay_modification, call_overlay_mod_hooks):
8554 (mmap_enlarge, mmap_set_vars):
8555 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
8556 Use bool for booleans, instead of int.
8557 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
8558 since the 1-or-0 return value is always ignored anyway.
8559 (mmap_initialized_p):
8560 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
8561 * buffer.h, lisp.h: Adjust prototypes to match above changes.
8562
8563 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
8564
8565 * bidi.c: Use bool for boolean.
8566 This is a bit more readable, and makes the text segment of bidi.o
8567 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
8568 Presumably it's faster too.
8569 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
8570 Now bool.
8571 (bidi_cache_find_level_change, bidi_cache_iterator_state)
8572 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
8573 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
8574 (bidi_explicit_dir_char, bidi_level_of_next_char)
8575 (bidi_find_other_level_edge, bidi_move_to_visually_next):
8576 Use bool for booleans, instead of int.
8577 * dispextern.h (bidi_init_it, bidi_paragraph_init)
8578 (bidi_unshelve_cache): Adjust decls to match code.
8579
8580 2012-08-23 Martin Rudalics <rudalics@gmx.at>
8581
8582 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
8583 argument.
8584
8585 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
8586
8587 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
8588 * atimer.h: Include <stdbool.h>.
8589
8590 2012-08-22 Dan Nicolaescu <dann@gnu.org>
8591
8592 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
8593 compile time tests instead of run time tests on systems that do
8594 not use them.
8595 (FRAME_MAC_P): Remove leftover from deleted code.
8596 * frame.c (syms_of_frame): Remove leftover from deleted code.
8597
8598 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
8599
8600 * nsterm.m (insertText:): Don't clear modifiers if code is space.
8601
8602 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
8603
8604 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
8605 Otherwise, the compiler complains about (A?B:C) where B is void
8606 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
8607 (fontset_add): Return void, for FONTSET_ADD.
8608
8609 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
8610
8611 * alloc.c: Use bool for booleans.
8612 (gc_in_progress, abort_on_gc)
8613 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
8614 (dont_register_blocks) [GC_MALLOC_CHECK]:
8615 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
8616 (check_string_bytes, make_specified_string, memory_full)
8617 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
8618 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
8619 (mark_stack, valid_pointer_p, make_pure_string)
8620 (Fgarbage_collect, survives_gc_p, gc_sweep):
8621 Use bool for booleans, instead of int.
8622 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
8623 Remove unused local.
8624 * alloc.c (PURE_POINTER_P):
8625 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
8626 * editfns.c (Fformat):
8627 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
8628 (Fdo_auto_save):
8629 * fns.c (sweep_weak_table):
8630 * lisp.h (suppress_checking, push_message, survives_gc_p)
8631 (make_pure_string, gc_in_progress, abort_on_gc):
8632 * lread.c (readchar, read1):
8633 * print.c (Fprin1_to_string):
8634 * xdisp.c (push_message):
8635 Use bool for booleans affected directly or indirectly by
8636 alloc.c's changes.
8637
8638 Make recently-introduced setters macros.
8639 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
8640 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
8641 (set_fontset_default, set_fontset_fallback): Rename from their
8642 upper-case counterparts, and make them functions rather than macros.
8643 This is more consistent with the other recently-introduced setters.
8644 These don't need to be inline, since they're local.
8645
8646 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
8647
8648 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
8649 the loop (Bug#12247).
8650
8651 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
8652
8653 * lisp.h (vcopy): Use memcpy rather than our own loop.
8654 This fixes a performance regression introduced by the recent
8655 addition of vcopy. This means 'vcopy' will need to be modified
8656 for a copying collector, but that's OK. Also, tighten the
8657 checking in the assertion.
8658
8659 2012-08-21 Eli Zaretskii <eliz@gnu.org>
8660
8661 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
8662 components for RTL text (Bug#11860). Adjust X-OFFSET of each
8663 non-base glyph for the width of the base character, according to
8664 what x_draw_composite_glyph_string_foreground expects.
8665 Generate WADJUST value according to composition_gstring_width's
8666 expectations, to produce correct width of the composed character.
8667 Reverse the sign of the DU offset produced by ScriptPlace.
8668
8669 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
8670
8671 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
8672
8673 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
8674
8675 Avoid direct writes to contents member of struct Lisp_Vector.
8676 * lisp.h (vcopy): New function to copy data into vector.
8677 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
8678 * fns.c (Ffillarray): Use ASET.
8679 * keyboard.c (timer_check_2): Use AREF and ASET.
8680 (append_tool_bar_item, Frecent_keys): Use vcopy.
8681 * lread.c (read_vector): Use ASET.
8682 * msdos.c (Frecent_doskeys): Use vcopy.
8683 * xface.c (Finternal_copy_lisp_face): Use vcopy.
8684 (Finternal_merge_in_global_face): Use ASET and vcopy.
8685 * xfont.c (xfont_list_pattern): Likewise.
8686
8687 2012-08-21 Martin Rudalics <rudalics@gmx.at>
8688
8689 * window.c (Fwindow_point): For the selected window always return
8690 the position of its buffer's point.
8691 (Fset_window_point): For the selected window always go in its
8692 buffer to the specified position.
8693
8694 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
8695
8696 Setter macros for fontsets.
8697 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
8698 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
8699 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
8700 Adjust users.
8701
8702 2012-08-20 Glenn Morris <rgm@gnu.org>
8703
8704 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
8705 Don't assume that `ln -f' works.
8706
8707 2012-08-20 Eli Zaretskii <eliz@gnu.org>
8708
8709 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
8710 and later about non-assignments with no effect. See discussion at
8711 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
8712 details.
8713
8714 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8715
8716 Inline setter functions for Lisp_Objects slots of struct specbinding.
8717 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
8718 Adjust users.
8719
8720 2012-08-20 Martin Rudalics <rudalics@gmx.at>
8721
8722 * window.c (select_window): Always make selected window's buffer
8723 current.
8724
8725 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8726
8727 Use AREF and ASET for docstrings of category tables.
8728 * category.h (CATEGORY_DOCSTRING): Use AREF.
8729 (SET_CATEGORY_DOCSTRING): Use ASET.
8730 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
8731
8732 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8733
8734 Inline setter functions for hash table members.
8735 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
8736 (set_hash_hash, set_hash_index): Rename with _slot suffix.
8737 (set_hash_key_and_value, set_hash_index, set_hash_next)
8738 (set_hash_hash): New functions.
8739 * charset.c, fns.c: Adjust users.
8740
8741 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
8742
8743 Inline getter and setter functions for per-buffer values.
8744 * buffer.h (per_buffer_default, set_per_buffer_default)
8745 (per_buffer_value, set_per_buffer_value): New functions.
8746 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
8747 * buffer.c, data.c: Adjust users.
8748
8749 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
8750
8751 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
8752
8753 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
8754
8755 Rely on <config.h> + <unistd.h> to declare 'environ',
8756 as gnulib does this if the system doesn't.
8757 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
8758 Remove declaration. MS-Windows declares it on stdlib.h which is
8759 included by conf_post.h.
8760 * emacs.c (environ) [DOUG_LEA_MALLOC]:
8761 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
8762 * vm-limit.c: Include <unistd.h>, for 'environ'.
8763
8764 * unexaix.c, unexcoff.c: Include "mem-limits.h".
8765 (start_of_data): Remove decl; mem-limits.h provides it.
8766
8767 * xdisp.c (handle_invisible_prop): Make it a bit faster
8768 and avoid a gcc -Wmaybe-uninitialized diagnostic.
8769
8770 2012-08-19 Chong Yidong <cyd@gnu.org>
8771
8772 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
8773 ends (Bug#3874).
8774
8775 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
8776
8777 * .gdbinit: Use call instead of set when calling a function in the
8778 inferior.
8779
8780 * data.c (set_internal): Don't use set_blv_found.
8781 (Fkill_local_variable): Likewise.
8782
8783 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
8784
8785 * nsfont.m (ns_ascii_average_width): Ensure the string
8786 ascii_printable is initialized with a null-terminated character
8787 array. Otherwise, it can contain undesired extra characters.
8788
8789 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
8790
8791 port new setting code to Sun C 5.8 2005/10/13
8792 * chartab.c, lisp.h (char_table_set, char_table_set_range):
8793 Return void, not Lisp_Object. Otherwise, the compiler
8794 complains about (A?B:C) where B is void and C is Lisp_Object
8795 when compiling CHAR_TABLE_SET, due to the recent change to
8796 the API of sub_char_table_set_contents.
8797
8798 2012-08-18 Chong Yidong <cyd@gnu.org>
8799
8800 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
8801 for the string case (Bug#3874).
8802
8803 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
8804
8805 * buffer.h (BSET): Remove (Bug#12215).
8806 Replace all uses with calls to new setter functions.
8807 (bset_bidi_paragraph_direction, bset_case_canon_table)
8808 (bset_case_eqv_table, bset_directory, bset_display_count)
8809 (bset_display_time, bset_downcase_table)
8810 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
8811 (bset_last_selected_window, bset_local_var_alist)
8812 (bset_mark_active, bset_point_before_scroll, bset_read_only)
8813 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
8814 (bset_width_table):
8815 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
8816 (bset_auto_fill_function, bset_auto_save_file_format)
8817 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
8818 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
8819 (bset_cache_long_line_scans, bset_case_fold_search)
8820 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
8821 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
8822 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
8823 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
8824 (bset_header_line_format, bset_indicate_buffer_boundaries)
8825 (bset_indicate_empty_lines, bset_invisibility_spec)
8826 (bset_left_fringe_width, bset_major_mode, bset_mark)
8827 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
8828 (bset_name, bset_overwrite_mode, bset_pt_marker)
8829 (bset_right_fringe_width, bset_save_length)
8830 (bset_scroll_bar_width, bset_scroll_down_aggressively)
8831 (bset_scroll_up_aggressively, bset_selective_display)
8832 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
8833 (bset_word_wrap, bset_zv_marker):
8834 * category.c (bset_category_table):
8835 * syntax.c (bset_syntax_table):
8836 New setter functions.
8837
8838 * process.h (PSET): Remove (Bug#12215).
8839 Replace all uses with calls to new setter functions.
8840 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8841 (PROCESS_INLINE): New macro.
8842 (pset_childp): New setter function.
8843 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
8844 * process.c (PROCESS_INLINE):
8845 Define to EXTERN_INLINE, so that the corresponding functions
8846 are compiled into code.
8847 (pset_buffer, pset_command, pset_decode_coding_system)
8848 (pset_decoding_buf, pset_encode_coding_system)
8849 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
8850 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
8851 (pset_type, pset_write_queue): New setter functions.
8852
8853 * window.h (WSET): Remove (Bug#12215).
8854 Replace all uses with calls to new setter functions.
8855 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8856 (WINDOW_INLINE): New macro.
8857 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
8858 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
8859 (wset_total_lines, wset_vertical_scroll_bar)
8860 (wset_window_end_pos, wset_window_end_valid)
8861 (wset_window_end_vpos): New setter functions.
8862 * window.c (WINDOW_INLINE):
8863 Define to EXTERN_INLINE, so that the corresponding functions
8864 are compiled into code.
8865 (wset_combination_limit, wset_dedicated, wset_display_table)
8866 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
8867 (wset_new_normal, wset_new_total, wset_next_buffers)
8868 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
8869 (wset_prev_buffers, wset_right_fringe_width)
8870 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
8871 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
8872 (wset_window_parameters):
8873 * xdisp.c (wset_base_line_number, wset_base_line_pos)
8874 (wset_column_number_displayed, wset_region_showing):
8875 New setter functions.
8876
8877 * termhooks.h (TSET): Remove (Bug#12215).
8878 Replace all uses with calls to new setter functions.
8879 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8880 (TERMHOOKS_INLINE): New macro.
8881 (tset_charset_list, tset_selection_alist): New setter functions.
8882 * terminal.c (TERMHOOKS_INLINE):
8883 Define to EXTERN_INLINE, so that the corresponding functions
8884 are compiled into code.
8885 (tset_param_alist): New setter function.
8886
8887 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
8888
8889 * keyboard.h (KSET): Remove (Bug#12215).
8890 Replace all uses with calls to new setter functions.
8891 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8892 (KEYBOARD_INLINE): New macro.
8893 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
8894 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
8895 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
8896 New setter functions.
8897 * keyboard.c (KEYBOARD_INLINE):
8898 Define to EXTERN_INLINE, so that the corresponding functions
8899 are compiled into code.
8900 (kset_echo_string, kset_kbd_queue)
8901 (kset_keyboard_translate_table, kset_last_prefix_arg)
8902 (kset_last_repeatable_command, kset_local_function_key_map)
8903 (kset_overriding_terminal_local_map, kset_real_last_command)
8904 (kset_system_key_syms): New setter functions.
8905
8906 * frame.h (FSET): Remove (Bug#12215).
8907 Replace all uses with calls to new setter functions.
8908 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8909 (FRAME_INLINE): New macro.
8910 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
8911 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
8912 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
8913 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
8914 (fset_param_alist, fset_root_window, fset_scroll_bars)
8915 (fset_selected_window, fset_title, fset_tool_bar_items)
8916 (fset_tool_bar_position, fset_tool_bar_window): New functions.
8917 * frame.c (FRAME_INLINE):
8918 Define to EXTERN_INLINE, so that the corresponding functions
8919 are compiled into code.
8920 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
8921
8922 A few more naming-convention fixes for getters and setters.
8923 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
8924 and rename from buffer_overlays_set_before.
8925 (set_buffer_overlays_after): Move here from buffer.h, and rename
8926 from buffer_overlays_set_after.
8927 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
8928 All uses changed.
8929 (set_buffer_intervals): Rename from buffer_set_intervals.
8930 * intervals.c (set_interval_object): Move here from intervals.h,
8931 and rename from interval_set_object.
8932 (set_interval_left): Move here from intervals.h, and rename from
8933 interval_set_left.
8934 (set_interval_right): Move here from intervals.h, and rename from
8935 interval_set_right.
8936 (copy_interval_parent): Move here from intervals.h, and rename from
8937 interval_copy_parent.
8938 * intervals.h (set_interval_parent): Rename from interval_set_parent.
8939 (set_interval_plist): Rename from interval_set_plist.
8940 Return void, not Lisp_Object, since no caller uses the result.
8941 * lisp.h (string_intervals): Rename from string_get_intervals.
8942 (set_string_intervals): Rename from string_set_intervals.
8943
8944 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
8945 (set_char_table_contents): Rename from char_table_set_contents.
8946 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
8947 All uses changed. See the end of
8948 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
8949
8950 * lisp.h (CSET): Remove (Bug#12215).
8951 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
8952 (set_char_table_purpose): New functions,
8953 replacing CSET. All uses changed. For example, replace
8954 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
8955 "set_char_table_parent (char_table, parent);".
8956 The old version was confusing because it used the same name
8957 'parent' for two different things.
8958
8959 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
8960
8961 Functions to get and set Lisp_Object fields of buffer-local variables.
8962 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
8963 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
8964 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
8965 * data.c, eval.c, frame.c: Adjust users.
8966
8967 2012-08-17 Chong Yidong <cyd@gnu.org>
8968
8969 * xfaces.c (merge_face_vectors): If the target font specfies a
8970 font spec, make the font's attributes take precedence over
8971 directly-specified attributes.
8972 (merge_face_ref): Recognize :font.
8973
8974 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
8975
8976 Do not use memcpy for copying intervals.
8977 * intervals.c (reproduce_interval): New function.
8978 (reproduce_tree, reproduce_tree_obj): Use it.
8979 (reproduce_tree_obj): Remove prototype.
8980
8981 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
8982
8983 * lisp.h (duration_to_sec_usec): Remove unused decl.
8984
8985 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
8986
8987 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
8988 to an allocated instance of NSString, not to the class itself.
8989
8990 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
8991
8992 * makefile.w32-in (C_CTYPE_H): New macro.
8993 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
8994 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
8995 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
8996
8997 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
8998
8999 Use ASCII tests for character types.
9000 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
9001 * xfns.c, xterm.c:
9002 Don't include <ctype.h>; was not needed.
9003 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
9004 * sysdep.c, xfaces.c:
9005 Include <c-ctype.h> instead of <ctype.h>.
9006 * nsterm.m: Include <c-ctype.h>.
9007 * charset.c (read_hex):
9008 * doc.c (Fsnarf_documentation):
9009 * fileio.c (IS_DRIVE) [WINDOWSNT]:
9010 (DRIVE_LETTER) [DOS_NT]:
9011 (Ffile_name_directory, Fexpand_file_name)
9012 (Fsubstitute_in_file_name):
9013 * font.c (font_parse_xlfd, font_parse_fcname):
9014 * frame.c (x_set_font_backend):
9015 * gtkutil.c (xg_get_font):
9016 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
9017 * nsimage.m (hexchar):
9018 * nsterm.m (ns_xlfd_to_fontname):
9019 * sysdep.c (system_process_attributes):
9020 * xfaces.c (hash_string_case_insensitive):
9021 Use C-locale tests instead of locale-specific tests for character
9022 types, since we want the ASCII interpretation here, not the
9023 interpretation suitable for whatever happens to be the current locale.
9024
9025 2012-08-16 Martin Rudalics <rudalics@gmx.at>
9026
9027 Consistently check windows for validity/liveness
9028 (Bug#11984, Bug#12025, Bug#12026).
9029 * lisp.h (CHECK_VALID_WINDOW): New macro.
9030 * window.c (decode_window): Rename to decode_live_window.
9031 (decode_valid_window, Fwindow_valid_p): New functions.
9032 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
9033 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
9034 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
9035 (Fwindow_prev_sibling, Fwindow_combination_limit)
9036 (Fset_window_combination_limit, Fwindow_use_time)
9037 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
9038 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
9039 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
9040 (Fwindow_hscroll, Fset_window_hscroll)
9041 (Fwindow_redisplay_end_trigger)
9042 (Fset_window_redisplay_end_trigger, Fwindow_edges)
9043 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
9044 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
9045 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
9046 (Fwindow_end, Fset_window_point, Fset_window_start)
9047 (Fpos_visible_in_window_p, Fwindow_line_height)
9048 (Fwindow_dedicated_p, Fset_window_dedicated_p)
9049 (Fwindow_prev_buffers, Fset_window_prev_buffers)
9050 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
9051 (Fset_window_parameter, Fwindow_display_table)
9052 (Fset_window_display_table, Fdelete_other_windows_internal)
9053 (Fset_window_buffer, Fset_window_new_total)
9054 (Fset_window_new_normal, Fdelete_window_internal)
9055 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
9056 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
9057 (Fwindow_scroll_bars): Check whether argument window is a valid or
9058 live window. Update doc-strings.
9059 (syms_of_window): New symbol Qwindow_valid_p.
9060 * keyboard.c (Fposn_at_x_y): Check whether argument
9061 frame_or_window denotes a valid window.
9062
9063 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
9064
9065 Fix previous char table change.
9066 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
9067 * chartab.c (optimize_sub_char_table): Likewise.
9068
9069 2012-08-16 Chong Yidong <cyd@gnu.org>
9070
9071 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
9072
9073 * xfont.c (xfont_open):
9074 * xftfont.c (xftfont_open): Set the font's max_width field.
9075
9076 * nsfont.m (nsfont_open): Similar to the Xft backend, set
9077 min_width to space_width and average_width to the average over
9078 printable ASCII characters.
9079 (ns_char_width): Code cleanup.
9080 (ns_ascii_average_width): New utility function.
9081
9082 * font.h (struct font): Update comments.
9083
9084 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
9085
9086 Simple interface to set Lisp_Object fields of character tables.
9087 * lisp.h (CSET): New macro.
9088 (char_table_set_extras, char_table_set_contents)
9089 (sub_char_table_set_contents): New function.
9090 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
9091 * syntax.c: Adjust users.
9092
9093 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
9094
9095 * eval.c (eval_sub): Bind lexical-binding.
9096 * lread.c (Qlexical_binding): Make non-static.
9097
9098 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
9099
9100 * nsmenu.m (popupSession): Remove.
9101 (pop_down_menu): Remove endModalSession.
9102 (timeout_handler:): New method.
9103 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
9104 Call runModalForWindow. Check timer_fired when it returns.
9105 If not set, cancel timer and break out of loop.
9106 Otherwise loop again, with a new timeout.
9107
9108 * nsterm.m: Include fcntl.h if present.
9109 (fd_entry, t_readfds, inNsSelect): Remove.
9110 (select_writefds, select_valid, select_timeout, selfds)
9111 (select_mutex, apploopnr): Add.
9112 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
9113 Otherwise call kbd_buffer_store_event.
9114 (ns_send_appdefined): Remove release of fd_entry.
9115 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
9116 Increment and decrement apploopnr.
9117 (ns_select): If no file descriptors, just do a NSTimer.
9118 Otherwise copy read/write masks and start select thread (fd_handler).
9119 Start main loop and wait for application defined event.
9120 Inform select thread to stop selecting after main loop is exited.
9121 (ns_term_init): Create selfds pipe and set non-blocking.
9122 Initialize select_mutex. Start the select thread (fd_handler).
9123 (fd_handler:): Loop forever, wait for info from the main thread
9124 to either start or stop selecting. When select returns, send
9125 and appdefined event.
9126 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
9127 If not call kbd_buffer_store_event.
9128
9129 * nsterm.h (EmacsApp): fd_handler takes id argument.
9130 (EmacsDialogPanel): Add timer_fired and timeout_handler.
9131
9132 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
9133
9134 2012-08-15 Eli Zaretskii <eliz@gnu.org>
9135
9136 * region-cache.c (move_cache_gap): Update gap_len using the actual
9137 growth of the boundaries array. Do not change cache_len.
9138 (Bug#12196)
9139
9140 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
9141
9142 Generalize and cleanup font subsystem checks.
9143 * font.h (FONT_DEBUG, font_assert): Remove.
9144 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
9145 Change font_assert to eassert. Use eassert where appropriate.
9146
9147 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
9148
9149 * gtkutil.c (xg_get_font): Use pango_units_to_double.
9150
9151 2012-08-15 Chong Yidong <cyd@gnu.org>
9152
9153 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
9154 When using the new font chooser, use gtk_font_chooser_get_font_desc to
9155 extract the font descriptor instead of just the font name.
9156 In that case, return a font spec instead of a string.
9157 (x_last_font_name): Move to this file from xfns.c.
9158
9159 * xfns.c (Fx_select_font): The return value can also be a font
9160 spec. Move x_last_font_name management to gtkutil.c.
9161
9162 * xfaces.c: Make font weight and style symbols non-static.
9163
9164 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9165
9166 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
9167 (bug#12117).
9168
9169 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
9170
9171 * alloc.c (Fgarbage_collect): Use plural form consistently.
9172
9173 2012-08-14 Eli Zaretskii <eliz@gnu.org>
9174
9175 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
9176 iteration through the command loop. Fixes a problem whereby mouse
9177 movements are ignored until the first mouse click.
9178
9179 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
9180
9181 Use bool, not int, for Lisp booleans.
9182 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
9183 makes Emacs a bit smaller and presumably a bit faster.
9184 * lisp.h: Include <stdbool.h>.
9185 (struct Lisp_Boolfwd, defvar_bool):
9186 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
9187 * regex.c [!emacs]: Include <stdbool.h>.
9188 (false, true): Remove; <stdbool.h> does this for us now.
9189
9190 2012-08-14 Chong Yidong <cyd@gnu.org>
9191
9192 * character.c (Fcharacterp): Doc fix (Bug#12076).
9193
9194 * data.c (Findirect_variable): Doc fix (Bug#11040).
9195
9196 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
9197
9198 * editfns.c (Fformat): Doc fix (Bug#12059).
9199 (Fsave_current_buffer): Doc fix (Bug#11542).
9200
9201 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
9202
9203 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
9204 (bug#12022).
9205
9206 2012-08-14 Martin Rudalics <rudalics@gmx.at>
9207
9208 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
9209 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
9210 * minibuf.c (choose_minibuf_frame, read_minibuf):
9211 * w32fns.c (x_create_tip_frame):
9212 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
9213 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
9214
9215 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
9216
9217 * intervals.c (offset_intervals): Remove obsolete comment.
9218
9219 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
9220
9221 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
9222
9223 2012-08-14 Gergely Risko <gergely@risko.hu>
9224
9225 * coding.c (decode_coding): Record buffer modification before
9226 disabling undo_list (Bug#11773).
9227
9228 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
9229
9230 Revert and cleanup some recent overlay changes.
9231 * buffer.h (enum overlay_type): Remove.
9232 (buffer_get_overlays, buffer_set_overlays): Likewise.
9233 (buffer_set_overlays_before, buffer_set_overlays_after):
9234 New function. Adjust users.
9235 (unchain_both): Add eassert.
9236
9237 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
9238
9239 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
9240
9241 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
9242
9243 * gtkutil.c (xg_mark_data): Don't assume C99.
9244
9245 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
9246
9247 * gtkutil.c (xg_frame_tb_info): New struct.
9248 (TB_INFO_KEY): New define.
9249 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
9250 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
9251 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
9252 if not present.
9253 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
9254 is up to date. Otherwise store new data.
9255 (free_frame_tool_bar): Free xg_frame_tb_info if present.
9256
9257 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
9258
9259 Use KSET for write access to Lisp_Object members of struct kboard.
9260 * keyboard.h (KSET): New macro.
9261 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
9262 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
9263 * xterm.c: Adjust users.
9264
9265 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
9266
9267 Use BSET for write access to Lisp_Object members of struct buffer.
9268 * buffer.h (BSET): New macro.
9269 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
9270 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
9271 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
9272 * window.c, xdisp.c, xfns.c: Adjust users.
9273
9274 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
9275
9276 * lread.c (syms_of_lread): Initialize Vlexical_binding.
9277
9278 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
9279
9280 * nsterm.m (not_in_argv): New function.
9281 (application:openFile, application:openTempFile:):
9282 (application:openFileWithoutUI:, application:openFiles:): Open file
9283 if not_in_argv returns non-zero (bug#12171).
9284
9285 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
9286 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
9287 Define for Gtk+ versions less than 3.2.
9288 (xg_get_font_name): Use those functions/macros here.
9289 Reported by Frans Oilinki <moilinki@gmail.com>.
9290
9291 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9292
9293 * unexmacosx.c (copy_data_segment): Copy initialized data in
9294 statically linked libraries from input file rather than memory.
9295
9296 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
9297 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
9298 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
9299
9300 2012-08-10 Glenn Morris <rgm@gnu.org>
9301
9302 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
9303 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
9304
9305 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
9306
9307 Fix last change to allow compilation with low optimization levels.
9308 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
9309 Reported by Jan Djärv <jan.h.d@swipnet.se>.
9310
9311 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
9312
9313 Use common inline syntax in intervals.h.
9314 * intervals.h (INTERVALS_INLINE): New macro.
9315 Change all users from LISP_INLINE.
9316
9317 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
9318
9319 Define Qnone once for all platforms.
9320 * frame.c (Qnone): Define here.
9321 (syms_of_frame): DEFSYM it.
9322 * lisp.h (Qnone): New declaration.
9323 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
9324 * xfns.c: Remove duplication. Adjust users.
9325
9326 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
9327
9328 Remove unused macros from intervals.h.
9329 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
9330 * intervals.c: Adjust comment.
9331
9332 2012-08-10 Eli Zaretskii <eliz@gnu.org>
9333
9334 * w32fns.c <w32_unicode_gui>: New static variable.
9335 (globals_of_w32fns): Initialize it according to os_subtype.
9336 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
9337 testing os_subtype.
9338
9339 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
9340 Eli Zaretskii <eliz@gnu.org>
9341
9342 Fix bug #10299 with Unicode characters sent by customized
9343 keyboards created by MSKLC.
9344 * w32fns.c (INIT_WINDOW_CLASS): New macro.
9345 (w32_init_class): Use it to initialize the Emacs class with either
9346 ANSI or Unicode API calls.
9347 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
9348 later.
9349 (w32_wnd_proc): If the character code sent by WM_CHAR or
9350 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
9351 original message. Call DefWindowProcW on NT and later.
9352
9353 2012-08-10 Glenn Morris <rgm@gnu.org>
9354
9355 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
9356
9357 * lisp.h (DIRECTORY_SEP): Let configure set it.
9358
9359 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
9360
9361 Use TSET for write access to Lisp_Object slots of struct terminal.
9362 * termhooks.h (TSET): New macro.
9363 * coding.c, terminal.c, xselect.c: Adjust users.
9364
9365 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
9366
9367 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
9368 the failing expression, include them in the error message.
9369 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
9370 * lisp.h (internal_condition_case_n): Update declaration.
9371
9372 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
9373
9374 Inline functions to examine and change buffer overlays.
9375 * buffer.c (unchain_both): New function.
9376 * buffer.h (buffer_get_overlays, buffer_set_overlays):
9377 (buffer_has_overlays): New function.
9378 (enum overlay_type): New enum.
9379 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
9380 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
9381
9382 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
9383
9384 Inline functions to examine and change buffer intervals.
9385 * alloc.c (mark_interval_tree): Remove.
9386 (MARK_INTERVAL_TREE): Simplify.
9387 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
9388 * intervals.c (buffer_balance_intervals): New function.
9389 (graft_intervals_into_buffer): Adjust indentation.
9390 (set_intervals_multibyte): Simplify.
9391 * buffer.h (BUF_INTERVALS): Remove.
9392 (buffer_get_intervals, buffer_set_intervals): New function.
9393 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
9394 * intervals.c, textprop.c: Adjust users.
9395
9396 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
9397
9398 Inline functions to examine and change string intervals.
9399 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
9400 (string_get_intervals, string_set_intervals): New function.
9401 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
9402 * lread.c, print.c, textprop.c: Adjust users.
9403
9404 2012-08-08 Glenn Morris <rgm@gnu.org>
9405
9406 * lisp.mk (lisp): Remove language/persian.elc.
9407
9408 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
9409
9410 Cleanup intervals.
9411 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
9412 (NULL_INTERVAL_P): Likewise. Adjust users.
9413 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
9414 Adjust comment. Move under #if 0.
9415 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
9416 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
9417
9418 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
9419
9420 Check total length of intervals with eassert.
9421 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
9422 * intervals.c: Change all users to eassert.
9423
9424 2012-08-07 Eli Zaretskii <eliz@gnu.org>
9425
9426 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
9427 Rename fields to match removal of FGET and WGET and disuse of
9428 INTERNAL_FIELD in Lisp_Cons.
9429
9430 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
9431
9432 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
9433 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
9434 name since all xname users are fixed long time ago. Do not
9435 use INTERNAL_FIELD.
9436 (set_symbol_name, set_symbol_function, set_symbol_plist):
9437 (set_symbol_next, set_overlay_plist): New function.
9438 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
9439 (struct Lisp_Overlay): Likewise.
9440 (CVAR, MVAR, SVAR): Remove.
9441 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
9442 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
9443 * xterm.c: Adjust users.
9444 * .gdbinit: Change to use name field of struct Lisp_Symbol
9445 where appropriate.
9446
9447 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
9448
9449 Basic functions to set Lisp_Object and pointer slots of intervals.
9450 * intervals.h (interval_set_parent, interval_set_object):
9451 (interval_set_left, interval_set_right, interval_set_plist):
9452 (interval_copy_parent): New function.
9453 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
9454 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
9455 Adjust indentation.
9456 (INTERVAL_SIZE): Remove. Adjust users.
9457 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
9458
9459 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
9460
9461 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
9462 * process.h (PGET): Remove.
9463 (struct Lisp_Process): Do not use INTERNAL_FIELD.
9464 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
9465
9466 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
9467
9468 Drop WGET and revert read access to Lisp_Objects slots of struct window.
9469 * window.h (WGET): Remove.
9470 (struct window): Do not use INTERNAL_FIELD.
9471 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9472 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9473 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
9474 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
9475 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
9476 Adjust users.
9477
9478 2012-08-07 Chong Yidong <cyd@gnu.org>
9479
9480 * window.c (Fwindow_edges, Fwindow_pixel_edges)
9481 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
9482 (Fdelete_window_internal): Signal an error if the window is not on
9483 a live frame (Bug#12025).
9484
9485 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
9486
9487 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
9488 * frame.h (FGET): Remove.
9489 (struct frame): Do not use INTERNAL_FIELD.
9490 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
9491 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
9492 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
9493 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
9494
9495 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
9496
9497 * w32.c: Silence compiler warnings.
9498 (map_w32_filename): Remove unused variable `is_fat'.
9499 (chase_symlinks): Add parentheses around expression.
9500
9501 2012-08-06 Glenn Morris <rgm@gnu.org>
9502
9503 * sysdep.c: Respect BROKEN_GETWD.
9504
9505 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
9506 Let configure handle it.
9507 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
9508
9509 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9510
9511 Use GCALIGNMENT where appropriate.
9512 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
9513 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
9514 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
9515
9516 2012-08-06 Eli Zaretskii <eliz@gnu.org>
9517
9518 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
9519 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
9520
9521 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
9522
9523 * buffer.h (struct buffer): Revert `indirections' to a simple int;
9524 that should be sufficient for everyone.
9525
9526 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
9527
9528 * keyboard.c (timer_check_2): Add break so timer_check returns next
9529 timeout.
9530
9531 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9532
9533 Fix Windows build errors introduced after converting to WGET and WSET.
9534 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
9535 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9536
9537 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
9538
9539 * nsterm.m (ns_frame_rehighlight): Use FSET.
9540
9541 * nsmenu.m (ns_update_menubar): Use FSET.
9542
9543 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9544
9545 Separate read and write access to Lisp_Object slots of Lisp_Process.
9546 * process.h (PGET, PSET): New macros similar to AREF and ASET.
9547 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
9548
9549 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9550
9551 Separate read and write access to Lisp_Object slots of struct window.
9552 * window.h (WGET, WSET): New macros similar to AREF and ASET.
9553 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9554 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9555 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
9556 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
9557 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
9558 Adjust users.
9559
9560 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9561
9562 Fix Windows build errors introduced after converting to FGET and FSET.
9563 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
9564 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
9565 (w32_judge_scroll_bars): Change to use FSET.
9566 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9567
9568 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9569
9570 Fix replacement typo.
9571 * window.c (replace_window): Set root_window instead of
9572 selected_window. This fixes a total window subsystem
9573 malfunction reported by Bastien Guerry <bzg@gnu.org>.
9574
9575 2012-08-06 Glenn Morris <rgm@gnu.org>
9576
9577 * lisp.mk (lisp): Add language/persian.elc.
9578
9579 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
9580
9581 Separate read and write access to Lisp_Object slots of struct frame.
9582 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
9583 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
9584 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
9585 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
9586 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
9587
9588 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
9589
9590 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
9591
9592 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
9593
9594 Generalize common compile-time constants.
9595 * lisp.h (header_size, bool_header_size, word_size): Now here.
9596 (struct Lisp_Vector): Add comment.
9597 (struct Lisp_Bool_Vector): Move up to define handy constants.
9598 (VECSIZE, PSEUDOVECSIZE): Simplify.
9599 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
9600 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
9601 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
9602 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
9603 * xfont.c, xmenu.c: Use word_size where appropriate.
9604
9605 2012-08-05 Lawrence Mitchell <wence@gmx.li>
9606
9607 * search.c (Freplace_match): Treat \? in the replacement text
9608 literally (Bug#8161).
9609
9610 2012-08-05 Chong Yidong <cyd@gnu.org>
9611
9612 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
9613 * frame.c (Vdelete_frame_functions):
9614 * emacs.c (Vkill_emacs_hook): Doc fix.
9615
9616 2012-08-04 Eli Zaretskii <eliz@gnu.org>
9617
9618 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
9619 --with-x-toolkit=no builds.
9620 Reported by Carsten Mattner <carstenmattner@gmail.com>.
9621
9622 2012-08-04 Chong Yidong <cyd@gnu.org>
9623
9624 * syntax.c (Fmodify_syntax_entry): Doc fix.
9625
9626 2012-08-04 Eli Zaretskii <eliz@gnu.org>
9627
9628 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
9629 * w32.c (init_environment): Change the default values of many
9630 environment variables in dflt_envvars[] to NULL, to avoid pushing
9631 them into environment when they were not already defined.
9632 Remove the code that deletes site-lisp subdirectories from the default
9633 value of EMACSLOADPATH, as it is no longer needed.
9634 (check_windows_init_file): Now external, not static.
9635 Use Vload_path as is, without adding anything, as this function is now
9636 called when Vload_path is already set up.
9637
9638 * w32.h (check_windows_init_file): Add prototype.
9639
9640 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
9641 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
9642 compatibility with Posix platforms.
9643 (main): Move the call to check_windows_init_file to here from
9644 w32.c.
9645 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
9646 any, in the DEFALT argument into the root of the Emacs build or
9647 installation tree, as appropriate.
9648
9649 * callproc.c (init_callproc_1): Call decode_env_path instead of
9650 doing its equivalent by hand.
9651 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
9652 the code that sets Vexec_path run on MS-Windows.
9653
9654 * lread.c (init_lread): Add comments to #ifdef's.
9655
9656 * msdos.c (dos_set_window_size, IT_update_begin)
9657 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
9658 instead of direct references.
9659
9660 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
9661
9662 Export DEFAULT_REHASH_* to GDB.
9663 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
9664 Now constants, not macros.
9665
9666 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
9667
9668 Remove unnecessary casts involving pointers.
9669 These casts are no longer needed now that we assume C89 or later,
9670 since they involve casting to or from void *.
9671 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
9672 (make_pure_float, make_pure_vector):
9673 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
9674 * macros.c (Fstart_kbd_macro):
9675 * menu.c (find_and_return_menu_selection):
9676 * minibuf.c (read_minibuf_noninteractive):
9677 * sysdep.c (closedir):
9678 * xdisp.c (x_produce_glyphs):
9679 * xfaces.c (compare_fonts_by_sort_order):
9680 * xfns.c (x_real_positions, select_visual):
9681 * xselect.c (x_stop_queuing_selection_requests)
9682 (x_get_window_property, x_get_window_property_as_lisp_data):
9683 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
9684 Remove unnecessary pointer casts.
9685 * alloc.c (record_xmalloc): New function.
9686 * lisp.h (record_xmalloc): New decl.
9687 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
9688 more like a function. This is because the pointer cast is not
9689 needed. All uses changed.
9690 * print.c (print_string, print_error_message): Avoid length recalc.
9691
9692 Improve fix for macroexp crash with debugging (Bug#12118).
9693 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
9694 ARRAY_MARK_FLAG when checking subscripts, because ASET is
9695 not supposed to be invoked from the garbage collector.
9696 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
9697 (gc_aset): New function, which is like ASET but can be
9698 used in the garbage collector.
9699 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
9700 (set_hash_index): Use it instead of ASET.
9701
9702 2012-08-03 Eli Zaretskii <eliz@gnu.org>
9703
9704 Support symlinks on latest versions of MS-Windows.
9705 * w32.c: Include winioctl.h and aclapi.h.
9706 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
9707 (revert_to_self): Forward declarations of static functions.
9708 <static BOOL g_b_init_get_security_info>:
9709 <g_b_init_create_symbolic_link>: New static flags.
9710 (globals_of_w32): Initialize them to zero.
9711 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
9712 (map_w32_filename): Improve commentary. Simplify switch.
9713 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
9714 headers (most versions of MinGW w32api don't).
9715 (get_security_info, create_symbolic_link)
9716 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
9717 New functions.
9718 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
9719 in the argument file name.
9720 (sys_access): Call unc_volume_file_attributes only if
9721 GetFileAttributes fails with network-related error codes.
9722 (sys_rename): Diagnose renaming of a symlink when the user doesn't
9723 have the required privileges.
9724 (get_file_security_desc_by_name): Rename from
9725 get_file_security_desc.
9726 (stat_worker): New function, with most of the guts of 'stat', and
9727 with addition of handling of symlinks and support for 'lstat'.
9728 If possible, get file's attributes and security information by
9729 handle, not by name. Produce S_IFLNK bit for symlinks, when
9730 called from 'lstat'.
9731 (stat, lstat): New functions, call 'stat_worker'.
9732 (symlink, readlink, careadlinkat): Rewritten to create and resolve
9733 symlinks when the underlying filesystem supports them.
9734
9735 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
9736
9737 Fix macroexp crash on Windows with debugging (Bug#12118).
9738 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
9739 checking subscripts; problem introduced with the recent
9740 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
9741 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
9742 since it's used in non-static inline functions now.
9743
9744 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
9745 Don't assume buffer size fits in 'int'. Remove unused local.
9746
9747 Use C99-style 'extern inline' if available.
9748 * buffer.h (BUFFER_INLINE):
9749 * category.h (CATEGORY_INLINE):
9750 * character.h (CHARACTER_INLINE):
9751 * charset.h (CHARSET_INLINE):
9752 * composite.h (COMPOSITE_INLINE):
9753 * dispextern.h (DISPEXTERN_INLINE):
9754 * lisp.h (LISP_INLINE):
9755 * systime.h (SYSTIME_INLINE):
9756 New macro, replacing 'static inline' in this header.
9757 * buffer.h, category.h, character.h, charset.h, composite.h:
9758 * dispextern.h, lisp.h, systime.h:
9759 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
9760 * alloc.c (LISP_INLINE):
9761 * buffer.c (BUFFER_INLINE):
9762 * category.c (CATEGORY_INLINE):
9763 * character.c (CHARACTER_INLINE):
9764 * charset.c (CHARSET_INLINE):
9765 * composite.c (COMPOSITE_INLINE):
9766 * dispnew.c (DISPEXTERN_INLINE):
9767 * sysdep.c (SYSTIME_INLINE):
9768 Define to EXTERN_INLINE, so that the corresponding functions
9769 are compiled into code.
9770 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
9771 (INLINE_HEADER_END): New macros.
9772 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
9773 since it's used in non-static inline functions now.
9774 (VALMASK) [!USE_LSB_TAG]: Likewise.
9775
9776 2012-08-02 Glenn Morris <rgm@gnu.org>
9777
9778 * s/: Remove empty directory.
9779
9780 * s/ms-w32.h: Move to ../nt/inc.
9781 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
9782 Update for new ms-w32.h location.
9783
9784 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
9785
9786 Port to Solaris 8.
9787 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
9788
9789 2012-08-02 Glenn Morris <rgm@gnu.org>
9790
9791 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
9792 hard-coding the path separator.
9793
9794 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
9795
9796 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
9797 This how ASET and AREF are supposed to work, and makes
9798 it easier to think about future improvements. See
9799 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
9800 * charset.h (set_charset_attr): New function.
9801 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
9802 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
9803 (aref_addr): New function. All uses of &AREF(...) changed.
9804 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
9805 (set_hash_index): New functions. All lvalue-style uses of
9806 HASH_KEY etc. changed.
9807 * keyboard.c (set_prop): New function. All lvalue-style uses
9808 of PROP changed.
9809
9810 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
9811
9812 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
9813 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
9814 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
9815 * nsfns.m (ns_set_name_as_filename): Likewise.
9816 * nsmenu.m (ns_update_menubar): Likewise.
9817 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
9818
9819 2012-08-01 Eli Zaretskii <eliz@gnu.org>
9820
9821 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
9822 Adapt to latest changes in field names of the corresponding Lisp
9823 objects.
9824
9825 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
9826
9827 2012-08-01 Glenn Morris <rgm@gnu.org>
9828
9829 * s/msdos.h: Remove file.
9830 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
9831 * Makefile.in (S_FILE): Remove.
9832 (config_h): Remove S_FILE.
9833
9834 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
9835
9836 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
9837 Remove; moved to nt/config.nt.
9838
9839 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9840
9841 Use INTERNAL_FIELD for conses and overlays.
9842 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
9843 Remove obsolete comment.
9844 (MVAR): New macro.
9845 (struct Lisp_Overlay): Use INTERNAL_FIELD.
9846 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
9847
9848 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9849
9850 Use INTERNAL_FIELD for symbols.
9851 * lisp.h (SVAR): New macro. Adjust users.
9852 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
9853 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
9854
9855 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9856
9857 Use INTERNAL_FIELD for processes.
9858 * process.h (PVAR): New macro. Adjust style.
9859 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
9860 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
9861
9862 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
9863
9864 Use INTERNAL_FIELD for windows.
9865 * window.h (WVAR): New macro.
9866 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
9867 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9868 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9869 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
9870 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
9871 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
9872
9873 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
9874
9875 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
9876
9877 2012-08-01 Glenn Morris <rgm@gnu.org>
9878
9879 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
9880 Move to configure.ac.
9881
9882 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
9883
9884 * makefile.w32-in (CONFIG_H): Update dependencies.
9885 (CONF_POST_H): New macro.
9886
9887 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
9888
9889 2012-07-31 Glenn Morris <rgm@gnu.org>
9890
9891 * Makefile.in (S_FILE): No longer set by configure.
9892
9893 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
9894 is available.
9895 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
9896
9897 * process.h (NULL_DEVICE):
9898 * emacs.c (SEPCHAR):
9899 * editfns.c (USER_FULL_NAME): Let configure set them.
9900
9901 * s/README, s/template.h: Remove files.
9902
9903 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
9904
9905 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
9906 Move to configure.ac.
9907
9908 2012-07-31 Eli Zaretskii <eliz@gnu.org>
9909
9910 * .gdbinit (xframe): Adapt to introduction of FVAR and the
9911 resulting renaming of 'struct frame' members.
9912
9913 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
9914
9915 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
9916 after introduction of FVAR.
9917
9918 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
9919
9920 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
9921
9922 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
9923 instead of compositeToPoint.
9924 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
9925
9926 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
9927
9928 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
9929
9930 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
9931 * lisp.h (INTERNAL_FIELD): New macro.
9932 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
9933 (BVAR): Change to use INTERNAL_FIELD.
9934 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
9935 (KVAR): Change to use INTERNAL_FIELD.
9936 * frame.h (FVAR): New macro.
9937 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
9938 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
9939 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
9940 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
9941 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
9942
9943 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
9944
9945 Miscellaneous fixes for non-default X toolkits.
9946 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
9947 * xterm.c (x_frame_of_widget): Remove redundant prototype.
9948 Move under #ifdef USE_LUCID.
9949 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
9950 definition and usage to avoid warnings.
9951
9952 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
9953
9954 * nsterm.m (openFiles): Fix previous checkin.
9955
9956 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
9957
9958 * indent.c (compute_motion): Remove unused local.
9959
9960 2012-07-31 Glenn Morris <rgm@gnu.org>
9961
9962 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
9963
9964 * conf_post.h [USG5_4]:
9965 Move remaining contents of s/usg5-4-common.h here.
9966 * s/usg5-4-common.h: Remove file.
9967
9968 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
9969 * s/irix6-5.h: Remove file.
9970
9971 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
9972 * s/darwin.h: Remove file.
9973
9974 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
9975 * s/hpux10-20.h: Remove file, which is now empty.
9976
9977 2012-07-30 Glenn Morris <rgm@gnu.org>
9978
9979 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
9980 * Makefile.in (config_h): Add conf_post.h.
9981 * makefile.w32-in (CONFIG_H): Add conf_post.h.
9982
9983 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
9984
9985 * nsterm.m (ns_do_open_file): New variable.
9986 (ns_term_init): Set ns_do_open_file to YES after run returns.
9987 (openFile, openTempFile, openFileWithoutUI, openFiles):
9988 Open files only if ns_do_open_file.
9989
9990 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9991
9992 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
9993 This no-op macro hasn't been needed for many years.
9994 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
9995
9996 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
9997 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
9998 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
9999 gdb_make_enums_visible.
10000 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
10001 (DIRECTORY_SEP): Now a constant, not a macro.
10002
10003 2012-07-30 Eli Zaretskii <eliz@gnu.org>
10004
10005 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
10006 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
10007
10008 * w32term.c <w32_keyboard_codepage>: Renamed from
10009 keyboard_codepage and now external. All users changed.
10010
10011 * w32term.h: Add declaration of w32_keyboard_codepage.
10012
10013 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
10014 the codepage to translate keys to Unicode. If this argument is
10015 -1, use the value returned by GetConsoleCP. All callers changed.
10016
10017 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
10018
10019 Update .PHONY listings in makefiles.
10020 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
10021 bootstrap-clean, distclean, maintainer-clean, versioclean,
10022 extraclean, frc.
10023
10024 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
10025 This is a bit clearer. Fix some commentary typos.
10026
10027 2012-07-30 Glenn Morris <rgm@gnu.org>
10028
10029 * s/netbsd.h: Let configure include signal.h if needed.
10030 Remove file, which is now empty.
10031
10032 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
10033 Let configure set them.
10034 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
10035 No more need to undefine.
10036
10037 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
10038
10039 * keymap.c (Fkey_description): Don't remove 0x80 bit from
10040 non-single-byte char when adding meta modifier. (Bug#12090)
10041
10042 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
10043
10044 Convert safe_call to use variable number of arguments.
10045 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
10046 (safe_call2): Fix comment.
10047 * lisp.h (safe_call): Adjust prototype.
10048 * coding.c (encode_coding_object): Change to use safe_call2.
10049 * xfaces.c (merge_face_heights): Change to use safe_call1.
10050
10051 2012-07-30 Glenn Morris <rgm@gnu.org>
10052
10053 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
10054 does that unconditionally. Remove file, which is now empty.
10055
10056 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
10057 Remove empty files.
10058
10059 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
10060
10061 Export to GDB most of lisp.h's remaining object-like macros.
10062 * lisp.h (min, max): Move earlier, because they're used earlier now.
10063 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
10064 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
10065 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
10066 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
10067 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
10068 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
10069 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
10070 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
10071 Now constants, for GDB. They need not be macros.
10072 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
10073 Now constants, for GDB, as well as macros, for static initializers.
10074 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
10075 Move to after the definition of struct Lisp_Char_Table,
10076 since the former now needs that type defined.
10077 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
10078 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
10079 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
10080 New enums, for gdb_make_enums_visible.
10081 (GLYPH_MODE_LINE_FACE): Remove; unused.
10082 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
10083 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
10084 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
10085 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
10086 enum maxargs, enum MAX_ALLOCA.
10087 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
10088 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
10089 no longer needed, now that they are done in lisp.h.
10090
10091 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
10092
10093 Cleanup string bytes checking.
10094 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
10095 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
10096 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
10097 (check_sblock, compact_small_strings): Simplify.
10098
10099 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
10100
10101 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
10102 These macros are confusing and no longer need to be defined, as
10103 the enum values now suffice. All uses replaced with definiens.
10104 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
10105
10106 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
10107
10108 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
10109 ($(BLD)/w32console.$(O)): Update dependencies.
10110
10111 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
10112
10113 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
10114 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
10115 time. Adjust users.
10116 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
10117
10118 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
10119
10120 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
10121 setting sitelisp (Bug#12010).
10122
10123 2012-07-29 Eli Zaretskii <eliz@gnu.org>
10124
10125 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
10126
10127 * w32heap.c (cache_system_info):
10128 * w32.c (sys_rename):
10129 * w32proc.c (find_child_console, sys_kill): All users changed.
10130
10131 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
10132
10133 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
10134
10135 2012-07-29 Eli Zaretskii <eliz@gnu.org>
10136
10137 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
10138
10139 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
10140
10141 Cleanup statistics calculation in Fgarbage_collect.
10142 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
10143 Fix zombies percentage calculation. Simplify elapsed time calculation.
10144
10145 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
10146
10147 Generalize marker debugging code under MARKER_DEBUG and use eassert.
10148 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
10149 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
10150 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
10151 (replace_range, replace_range_2, del_range_2): Change to eassert.
10152 * marker.c (byte_char_debug_check): Adjust style.
10153
10154 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
10155
10156 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
10157 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
10158 long-ago-commented-out code that talks about "WIN32".
10159 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
10160 All uses changed.
10161
10162 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
10163
10164 Use Gnulib stdalign module (Bug#9772, Bug#9960).
10165 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
10166 Simplify by using alignof.
10167 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
10168 * lisp.h: Include <stdalign.h>.
10169 (GCALIGNMENT): New macro and constant.
10170 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
10171 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
10172 (stdalign): New macro, if not already defined.
10173
10174 2012-07-28 Eli Zaretskii <eliz@gnu.org>
10175
10176 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
10177 * w32inevt.c: Include w32inevt.h.
10178 (w32_read_console_input): New inline function, calls either
10179 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
10180 w32_console_unicode_input.
10181 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
10182 (w32_kbd_patch_key, key_event): Use the codepage returned by
10183 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
10184 (key_event): use uChar.UnicodeChar only if
10185 w32_console_unicode_input is non-zero.
10186
10187 * w32console.c: Include w32heap.h.
10188 <w32_console_unicode_input>: New global variable.
10189 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
10190 family of Windows, zero otherwise.
10191
10192 * w32inevt.h: Declare w32_console_unicode_input.
10193
10194 * xdisp.c (init_iterator): Don't reference tip_frame in a build
10195 --without-x. (Bug#11742)
10196
10197 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
10198
10199 Adjust GDB to reflect pvec_type changes (Bug#12036).
10200 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
10201 2012-07-04 changes to pseudovector representation.
10202 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
10203
10204 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
10205
10206 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
10207 bus address.
10208 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
10209
10210 2012-07-27 Eli Zaretskii <eliz@gnu.org>
10211
10212 * alloc.c (listn): Fix the order the arguments are consed onto the
10213 list.
10214
10215 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
10216 enumeration constants, as PURE and HEAP are too general, and clash
10217 with other headers and sources, such as gmalloc.c and the
10218 MS-Windows system headers. All users changed.
10219
10220 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
10221
10222 Revert last save_excursion_save and save_excursion_restore changes.
10223 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
10224 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
10225
10226 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
10227
10228 Fix recently-introduced typos in Windows port.
10229 Reported by Martin Rudalics <rudalics@gmx.at>.
10230 * w32.c (init_environment): Replace comma with semicolon.
10231 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
10232
10233 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
10234
10235 Improve GDB symbol export (Bug#12036).
10236 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
10237 arms of an 'if', not using conditional expressions; otherwise GDB
10238 complains about the types in the unevaluated arm when the argument
10239 is an integer literal.
10240 (xgetint): Simplify expression.
10241 * alloc.c (gdb_make_enums_visible): New constant. This ports to
10242 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
10243 Zaretskii in <http://bugs.gnu.org/12036#13>.
10244 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
10245 needed now that we have gdb_make_enums_visible.
10246 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
10247 (enum enum_USE_LSB_TAG):
10248 New enum types, packaging up enums that need to be exported to GDB.
10249
10250 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
10251
10252 Utility function to make a list from specified amount of objects.
10253 * lisp.h (enum constype): New datatype.
10254 (listn): New prototype.
10255 * alloc.c (listn): New function.
10256 (Fmemory_use_count, syms_of_alloc): Use it.
10257 * buffer.c (syms_of_buffer): Likewise.
10258 * callint.c (syms_of_callint): Likewise.
10259 * charset.c (define_charset_internal): Likewise.
10260 * coding.c (syms_of_coding): Likewise.
10261 * keymap.c (syms_of_keymap): Likewise.
10262 * search.c (syms_of_search): Likewise.
10263 * syntax.c (syms_of_syntax): Likewise.
10264 * w32.c (init_environment): Likewise.
10265 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
10266 * xdisp.c (syms_of_xdisp): Likewise.
10267 * xfns.c (syms_of_xfns): Likewise.
10268
10269 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
10270
10271 Fast save_excursion_save and save_excursion_restore.
10272 * lisp.h (struct Lisp_Excursion): New data type.
10273 (PVEC_EXCURSION): New pseudovector type.
10274 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
10275 to deal with it. Adjust comments.
10276 (init_marker, attach_marker): New prototype.
10277 (unchain_marker): Adjust prototype.
10278 * marker.c (attach_marker): Change to global.
10279 (init_marker): New function.
10280 * alloc.c (Fmake_marker, build_marker): Use it.
10281 (build_marker): More easserts.
10282 (mark_object): Handle struct Lisp_Excursion.
10283 * editfns.c (save_excursion_save, save_excursion_restore):
10284 Reimplement to use struct Lisp_Excursion. Add comments.
10285
10286 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
10287
10288 Fix export of symbols to GDB (Bug#12036).
10289 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
10290 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
10291 emacs.c, as this is a more-suitable home. Had this been done earlier
10292 the fix for 12036 would have avoided some of the problems noted in
10293 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
10294 would have been more obvious.
10295 * emacs.c: Do not include <verify.h>; no longer needed.
10296 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
10297 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
10298 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
10299 Remove; now done in lisp.h.
10300 * lisp.h (PUBLISH_TO_GDB): New macro.
10301 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
10302 (DATA_SEG_BITS): Use it.
10303 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
10304 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
10305 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
10306 not be usable in #if. This simplifies things.
10307
10308 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
10309
10310 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
10311
10312 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
10313
10314 Simplify export of symbols to GDB (Bug#12036).
10315 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
10316 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
10317 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
10318 Adjust to changes in lisp.h and emacs.c, by using
10319 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
10320 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
10321 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
10322 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
10323 instead of gdb_valbits.
10324 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
10325 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
10326 instead of gdb_array_mark_flag.
10327 (xboolvector): Get size from $->size, not $->header.size.
10328 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
10329 (xreload, hook-run, hookpost-run): Remove.
10330 * emacs.c: Include <verify.h>.
10331 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
10332 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
10333 Remove.
10334 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
10335 (gdb_USE_LSB_TAG): New enum constants.
10336 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
10337 Also define these as enum constants, so they're visible to GDB.
10338 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
10339 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
10340 as constants, so they're visible to GDB.
10341 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
10342 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
10343 Now enum constants, not macros, so they're visible to GDB.
10344 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
10345 more convenient now. All uses changed.
10346 (VALMASK) [USE_LSB_TAG]: Also define in this case.
10347 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
10348
10349 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
10350
10351 Explicitly free restriction data that are not needed anymore.
10352 * editfns.c (save_restriction_restore): Free restriction data.
10353
10354 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
10355
10356 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
10357 add argument, tune behavior, and adjust all callers.
10358
10359 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
10360
10361 Use typedef for EMACS_INT, EMACS_UINT.
10362 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
10363 than macros. This simplifies debugging in the usual case, since
10364 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
10365 and it allows expressions involving EMACS_INT casts.
10366 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
10367
10368 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
10369
10370 * nsterm.m (ns_read_socket): Return early if there is a modal
10371 window (Bug#12043).
10372
10373 2012-07-25 Martin Rudalics <rudalics@gmx.at>
10374
10375 * frame.c (Fredirect_frame_focus): In doc-string don't mention
10376 that FOCUS-FRAME can be omitted.
10377
10378 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
10379
10380 Adjust buffer text indirection counters at the end of Fkill_buffer.
10381 * buffer.c (Fkill_buffer): Adjust indirection counters when the
10382 buffer is definitely dead. This should really fix an issue reported
10383 by Christoph Scholtes again. (Bug#12007).
10384 (init_buffer_once): Initialize indirection counters of
10385 buffer_defaults and buffer_local_symbols (for sanity and safety).
10386
10387 2012-07-24 Eli Zaretskii <eliz@gnu.org>
10388
10389 * xdisp.c (init_iterator): Don't compute dimensions of truncation
10390 and continuation glyphs on tooltip frames, leave them at zero.
10391 Avoids continued lines in tooltips. (Bug#11832)
10392
10393 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
10394
10395 Simplify copy_overlay.
10396 * buffer.c (copy_overlay): Simplify. Use build_marker.
10397 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
10398
10399 2012-07-23 Eli Zaretskii <eliz@gnu.org>
10400
10401 * print.c (print_object): Don't crash when a frame's name is nil
10402 or invalid. (Bug#12025)
10403
10404 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
10405 it signals an error when a tooltip frame is being created.
10406
10407 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
10408
10409 Cleanup miscellaneous objects allocation and initialization.
10410 * alloc.c (allocate_misc): Change to static. Add argument to
10411 specify the subtype. Adjust comment and users.
10412 (build_overlay): New function.
10413 * buffer.c (copy_overlays, Fmake_overlay): Use it.
10414 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
10415 (allocate_misc): Remove prototype.
10416 (build_overlay): Add prototype.
10417
10418 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
10419
10420 Swap buffer text indirection counters in Fbuffer_swap_text.
10421 * buffer.c (Fbuffer_swap_text): Swap indirections too.
10422 This avoids crash reported by Christoph Scholtes at
10423 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
10424
10425 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
10426
10427 * nsmenu.m (Popdown_data): New struct.
10428 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
10429 free Popdown_data.
10430 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
10431 (initWithContentRect): Make imgView and contentView non-static
10432 and autorelease them. Also autorelease img and matrix (Bug#12005).
10433 (dealloc): Remove (Bug#12005).
10434
10435 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
10436
10437 Adjust consing_since_gc when objects are explicitly freed.
10438 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
10439 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
10440 (free_cons, free_misc): Subtract object size from consing_since_gc.
10441
10442 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
10443
10444 Simplify and cleanup markers positioning code.
10445 * marker.c (attach_marker): More useful eassert.
10446 (live_buffer, set_marker_internal): New function.
10447 (Fset_marker, set_marker_restricted): Use set_marker_internal.
10448 (set_marker_both, set_marker_restricted_both): Use live_buffer.
10449
10450 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
10451
10452 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
10453 as it's limited by the amount of memory, not by INT_MAX.
10454
10455 2012-07-21 Eli Zaretskii <eliz@gnu.org>
10456
10457 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
10458 in special-event-map. See the discussion at
10459 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
10460 for the reasons.
10461
10462 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
10463 info.dwItemData. Fixes crashes on 64-bit Windows.
10464 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
10465
10466 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
10467
10468 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
10469 (conversationIdentifier): Return value is NSInteger.
10470 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
10471
10472 2012-07-21 Chong Yidong <cyd@gnu.org>
10473
10474 * window.c (decode_any_window): Signal an error if the window is
10475 on a dead frame (Bug#11984).
10476
10477 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
10478
10479 Add indirection counting to speed up Fkill_buffer.
10480 * buffer.h (struct buffer): New member.
10481 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
10482 (Fmake_indirect_buffer): Set indirection counter to -1, increment
10483 base buffer indirection counter.
10484 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
10485 (Fkill_buffer): Adjust indirection counters as needed, don't walk
10486 through buffer list if indirection counter is 0.
10487
10488 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
10489
10490 Extend the value returned by Fgarbage_collect with heap statistics.
10491 * alloc.c (Qheap): New symbol.
10492 (syms_of_alloc): DEFSYM it.
10493 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
10494 (Fmemory_free): Remove.
10495 (syms_of_alloc): Don't defsubr it.
10496 * buffer.c (Fcompact_buffer): Remove.
10497 (syms_of_buffer): Don't defsubr it.
10498
10499 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
10500
10501 Make maybe_gc inline.
10502 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
10503 * lisp.h (consing_since_gc, gc_relative_threshold)
10504 (memory_full_cons_threshold): Revert declaration.
10505 (maybe_gc): Remove prototype, define as inline.
10506 * alloc.c: Remove old commented-out code.
10507 (consing_since_gc, gc_relative_threshold)
10508 (memory_full_cons_threshold): Revert to global.
10509 (maybe_gc): Remove.
10510
10511 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
10512
10513 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
10514 * lisp.h (build_unibyte_string): New function.
10515 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
10516 * sysdep.c, w32fns.c, xfns.c: Use it.
10517 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
10518 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
10519 Adjust users accordingly.
10520 * font.h (font_open_by_name): Adjust prototype.
10521
10522 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
10523
10524 Cleanup calls to Fgarbage_collect.
10525 * lisp.h (maybe_gc): New prototype.
10526 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
10527 Remove declarations.
10528 * alloc.c (maybe_gc): New function.
10529 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
10530 Make them static.
10531 * bytecode.c (MAYBE_GC): Use maybe_gc.
10532 * eval.c (eval_sub, Ffuncall): Likewise.
10533 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
10534 to avoid dependency from auto-save feature.
10535
10536 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
10537
10538 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
10539 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
10540 'for_each_per_buffer_object_at'.
10541 All uses changed. It's better to use upper-case for macros that
10542 cannot be implemented as functions, to give the reader a clue
10543 that they're special.
10544
10545 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
10546
10547 * alloc.c (Fgarbage_collect): Tweak docstring.
10548
10549 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
10550
10551 Tweak the value returned from Fgarbage_collect again.
10552 * alloc.c (Fgarbage_collect): New return value, as confirmed in
10553 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
10554 Adjust documentation.
10555 (total_vector_bytes): Rename to total_vector_slots, adjust
10556 accounting.
10557 (total_free_vector_bytes): Rename to total_free_vector_slots,
10558 adjust accounting.
10559 (Qstring_bytes, Qvector_slots): New symbols.
10560 (syms_of_alloc): DEFSYM them.
10561
10562 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
10563
10564 Buffer compaction primitive which may be used from Lisp.
10565 * buffer.c (compact_buffer, Fcompact_buffer): New function.
10566 (syms_of_buffer): Register Fcompact_buffer.
10567 * alloc.c (Fgarbage_collect): Use compact_buffer.
10568 * buffer.h (compact_buffer): New prototype.
10569 (struct buffer_text): New member.
10570
10571 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
10572
10573 New macro to iterate over all buffers, miscellaneous cleanups.
10574 * lisp.h (all_buffers): Remove declaration.
10575 * buffer.h (all_buffers): Add declaration, with comment.
10576 (for_each_buffer): New macro.
10577 * alloc.c (Fgarbage_collect, mark_object): Use it.
10578 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
10579 (init_buffer): Likewise.
10580 * data.c (Fset_default): Likewise.
10581 * coding.c (code_conversion_restore): Remove redundant check
10582 for dead buffer.
10583 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
10584
10585 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
10586
10587 Fix bug that created negative-length intervals.
10588 * intervals.c (merge_interval_right, merge_interval_left):
10589 Do not zero out this interval if it is absorbed by its children,
10590 as this interval's total length doesn't change in that case. See
10591 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
10592
10593 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
10594
10595 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
10596 when invoking (make-bool-vector N t) and N is a positive
10597 multiple of 8 -- the last 8 bits were mistakenly cleared.
10598
10599 Remove some struct layout assumptions in bool vectors.
10600 * alloc.c (bool_header_size): New constant.
10601 (header_size, word_size): Move earlier, as they're now used earlier.
10602 Use 'word_size' in a few more places, where it's appropriate.
10603 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
10604 padding before the data member of a bool vector.
10605 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
10606 than doing the check by hand with an abort ().
10607
10608 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
10609
10610 * eval.c (Fdefvar): Don't check constants since we only set the var if
10611 it's not yet defined anyway (bug#11904).
10612
10613 * lisp.h (last_undo_boundary): Declare new var.
10614 * keyboard.c (command_loop_1): Set it.
10615 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
10616 were auto-added by the command loop (bug#11774).
10617
10618 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
10619
10620 * w32font.c (Qsymbol): Remove local definition.
10621 (syms_of_w32font): Don't DEFSYM it.
10622
10623 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
10624
10625 Fix sweep_vectors to handle large bool vectors correctly.
10626 * alloc.c (sweep_vectors): Account total_vector_bytes for
10627 bool vectors larger than VBLOCK_BYTES_MAX.
10628
10629 2012-07-18 Chong Yidong <cyd@gnu.org>
10630
10631 * frame.c (x_set_frame_parameters): Revert bogus change introduced
10632 in 2012-05-25 commit by Paul Eggert (Bug#11738).
10633
10634 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
10635
10636 Return more descriptive data from Fgarbage_collect.
10637 Suggested by Stefan Monnier in
10638 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
10639 * alloc.c (bounded_number): New function.
10640 (total_buffers, total_vectors): New variable.
10641 (total_string_size): Rename to total_string_bytes, adjust users.
10642 (total_vector_size): Rename to total_vector_bytes, adjust users.
10643 (sweep_vectors): Account total_vectors and total_vector_bytes.
10644 (Fgarbage_collect): New return value. Adjust documentation.
10645 (gc_sweep): Account total_buffers.
10646 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
10647 (VECTOR_SIZE): Remove.
10648 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
10649 (Qinterval, Qmisc): New symbols.
10650 (syms_of_data): Initialize them.
10651 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
10652 (Qcons, Qbuffer): New declarations.
10653
10654 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
10655
10656 * alloc.c (Fmemory_free): Account for memory-free's own storage.
10657 Round up, not down. Improve doc.
10658
10659 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10660
10661 Restore old code in allocate_string_data to avoid Faset breakage.
10662 Reported by Julien Danjou <julien@danjou.info> in
10663 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
10664 * alloc.c (allocate_string_data): Restore old code with minor
10665 adjustments, fix comment to explain this subtle issue.
10666
10667 2012-07-17 Eli Zaretskii <eliz@gnu.org>
10668
10669 Remove FILE_SYSTEM_CASE.
10670 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
10671
10672 * fileio.c (FILE_SYSTEM_CASE): Don't define.
10673 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
10674 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
10675 call-process-region passes it through expand-file-name.
10676
10677 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
10678
10679 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
10680
10681 Fix crash when creating indirect buffer (Bug#11917)
10682 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
10683 Don't handle unbound variables specially if non-zero.
10684 (Fbuffer_local_variables): Pass zero.
10685 (clone_per_buffer_values): Pass non-zero.
10686
10687 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
10688
10689 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
10690 to make the loop interruptible.
10691
10692 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
10693
10694 * gnutls.c (emacs_gnutls_handshake): Only retry if
10695 GNUTLS_E_INTERRUPTED.
10696
10697 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10698
10699 Cleanup and convert miscellaneous checks to eassert.
10700 * alloc.c (mark_interval): Fix comment, partially rephrase
10701 old comment from intervals.h (see below).
10702 * intervals.c (find_interval, adjust_intervals_for_insertion)
10703 (delete_interval, adjust_intervals_for_deletion)
10704 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
10705 Convert to eassert.
10706 (adjust_intervals_for_insertion, make_new_interval):
10707 Remove obsolete and unused code.
10708 * intervals.h (struct interval): Remove obsolete comment.
10709 * textprotp.c (erase_properties): Remove unused code.
10710 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
10711 (Fremove_list_of_text_properties): Convert to eassert.
10712
10713 2012-07-17 Chong Yidong <cyd@gnu.org>
10714
10715 * editfns.c (Finsert_char): Doc fix.
10716
10717 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10718
10719 Fix previous change to make Fmemory_free always accurate.
10720 * alloc.c (make_interval): Update total_free_intervals.
10721 (make_float): Likewise for total_free_floats.
10722 (free_cons, Fcons): Likewise for total_free_conses.
10723 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
10724 Likewise for total_free_vector_bytes.
10725 (Fmake_symbol): Likewise for total_free_symbols.
10726 (bytes_free): Remove.
10727
10728 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10729
10730 Simple free memory accounting feature.
10731 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
10732 (sweep_vectors): Accumulate size of free vectors.
10733 (Fgarbage_collect): Setup bytes_free.
10734 (Fmemory_free): New function.
10735 (syms_of_alloc): Register it.
10736
10737 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
10738
10739 Cleanup overlays checking.
10740 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
10741 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
10742 eassert and OVERLAYP.
10743 (sort_overlays): Change to use OVERLAYP.
10744
10745 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
10746
10747 * editfns.c (Finsert_char): Make it interactive, and make the
10748 second arg optional. Copy interactive spec and docstring from
10749 ucs-insert.
10750
10751 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
10752
10753 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
10754 Unlike the other wrapped functions, fabs has an unspecified
10755 effect on errno.
10756
10757 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
10758
10759 * nsterm.m (keyDown): Interpret flags without left/right bits
10760 as the left key (Bug#11670).
10761
10762 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
10763
10764 Remove empty and useless init functions.
10765 * lisp.h (init_character_once, init_fns, init_image)
10766 (init_filelock, init_sound): Remove prototype.
10767 * character.c (init_character_once): Remove.
10768 * filelock.c (init_filelock): Likewise.
10769 * fns.c (init_fns): Likewise.
10770 * image.c (init_image): Likewise.
10771 * sound.c (init_sound): Likewise.
10772 * emacs.c (main): Adjust accordingly.
10773
10774 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
10775
10776 * gtkutil.h: Tiny cleanups.
10777 (use_old_gtk_file_dialog): Remove useless declaration.
10778 (xg_uses_old_file_dialog): Add suggested const attribute.
10779
10780 2012-07-15 Eli Zaretskii <eliz@gnu.org>
10781
10782 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
10783 (bidi_paragraph_init): Use it to limit search forward for a strong
10784 directional character in abnormally large paragraphs full of
10785 neutral or weak characters. (Bug#11943)
10786
10787 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
10788
10789 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
10790 the toolbar (Bug#9451).
10791 (xg_make_tool_item): Give the widget event box a transparent
10792 background.
10793
10794 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
10795
10796 Cleanup basic allocation variables and functions.
10797 * alloc.c (ignore_warnings, init_intervals, init_float)
10798 (init_cons, init_symbol, init_marker): Remove.
10799 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
10800 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
10801 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
10802 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
10803 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
10804 (staticidx, init_alloc_once, init_strings, free_ablock):
10805 Remove redundant initialization.
10806 * fns.c (init_weak_hash_tables): Remove.
10807 * lisp.h (init_weak_hash_tables): Remove prototype.
10808
10809 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
10810
10811 Use zero_vector where appropriate.
10812 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
10813 accordingly.
10814 * lisp.h (zero_vector): New declaration.
10815 * font.c (null_vector): Remove.
10816 (syms_of_font): Remove initialization and staticpro.
10817 (font_list_entities, font_find_for_lface): Change to use zero_vector.
10818 * keymap.c (Faccessible_keymaps): Likewise.
10819
10820 2012-07-15 Leo Liu <sdl.web@gmail.com>
10821
10822 * fringe.c: Fix typo in comments.
10823
10824 2012-07-14 Leo Liu <sdl.web@gmail.com>
10825
10826 * fringe.c: Add a new bitmap exclamation-mark.
10827
10828 2012-07-14 Eli Zaretskii <eliz@gnu.org>
10829
10830 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
10831
10832 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
10833 (HAVE_MENUS): Don't define, defined by editing config.in with
10834 msdos/sed2v2.inp.
10835 (GMALLOC_INHIBIT_VALLOC): Don't define.
10836 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
10837
10838 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
10839
10840 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
10841
10842 2012-07-14 Glenn Morris <rgm@gnu.org>
10843
10844 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
10845 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
10846 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
10847
10848 2012-07-13 Glenn Morris <rgm@gnu.org>
10849
10850 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
10851
10852 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
10853 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
10854
10855 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
10856
10857 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
10858 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
10859 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
10860 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
10861 where appropriate.
10862 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
10863 as boolean expression.
10864 (x_set_window_size): Remove unused variable toolbar.
10865 (ns_get_color_default, ns_mod_to_lisp): Remove.
10866 (ns_mouse_position): Remove unused variables xchar and ychar.
10867 (ns_compute_glyph_string_overhangs): Remove unused variable face.
10868 (ns_set_vertical_scroll_bar): Remove unused variable count.
10869 (ns_delete_terminal): Remove unused variable i.
10870 (ns_term_init): Remove unused variables r, g and b.
10871 (mouseDown): Remove unused variable window.
10872 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
10873 (initFrameFromEmacs): Remove unused variable vbextra.
10874 (mouseEntered): Remove unused variables p and dpyinfo.
10875 (mouseExited): Remove unused variables p and r.
10876 (ns_define_frame_cursor, ns_clear_frame_area)
10877 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
10878 (menuDown): Assign [sender tag] to variable and cast the variable.
10879
10880 * nsterm.h (menuDown): Add id as type to argument sender.
10881 (ns_display_info_for_name): Add Lisp_Object argument.
10882 (ns_term_init): Add Lisp_Object argument.
10883 (ns_map_event_to_object): Add void argument.
10884 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
10885 prototype with arguments and only declare if __OBJC__.
10886 (nxatoms_of_nsselect): Add void argument.
10887 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
10888 (ns_alloc_autorelease_pool): Add void argument.
10889 (ns_release_autorelease_pool): Add void* argument.
10890 (ns_get_defaults_value): Add const char* argument.
10891
10892 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
10893 (initFromContents): Use SSDATA where appropriate.
10894 (ns_update_menubar): Add braces to ambigous if-else.
10895 (initWithTitle): Put () around assignment in if statement.
10896 (ns_menu_show): Remove unused variables window and keymap.
10897 (update_frame_tool_bar): Remove unused variable selected_p.
10898 (initWithContentRect): Remove unused variable this_cmd_name.
10899
10900 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
10901 appropriate.
10902 (setXBMColor): Remove unused variable len.
10903 (setPixmapData): Put () around assignment in loop statement.
10904
10905 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
10906 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
10907 where appropriate.
10908 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
10909 around assignment in loop statement.
10910 (nsfont_open): Remove unused variable i.
10911 (nsfont_open): Remove unused variable len.
10912 (nsfont_draw): Remove unused variable cs.
10913
10914 * nsfns.m (x_set_icon_name, ns_set_name_internal)
10915 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
10916 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
10917 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
10918 (Fns_font_name, Fns_perform_service)
10919 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
10920 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
10921 (ns_set_name): Remove unused variable view.
10922 (x_set_menu_bar_lines): Remove unused variable olines.
10923 (x_set_tool_bar_lines): Remove unused variable root_window.
10924 (Fns_list_colors): Put () around assignment in while statement.
10925 (Fns_perform_service): Remove unused variable len.
10926 (Fns_display_usable_bounds): Remove unused variable top.
10927 (syms_of_nsfns): Remove unused variable i.
10928
10929 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
10930 memcpy (Bug#11907).
10931
10932 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
10933
10934 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
10935 and free it with DestroyExceptionInfo (Bug#11558).
10936
10937 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
10938
10939 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
10940 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
10941 Set here, not in nt/config.nt.
10942
10943 2012-07-13 Eli Zaretskii <eliz@gnu.org>
10944
10945 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
10946 cursor overflow into the last glyph on display line when the right
10947 fringe is off. (Bug#11832)
10948
10949 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
10950
10951 * xdisp.c (produce_special_glyphs): Now static.
10952 * dispextern.h (produce_special_glyphs): Remove decl.
10953
10954 2012-07-13 Glenn Morris <rgm@gnu.org>
10955
10956 * s/bsd-common.h, s/cygwin.h: Remove empty files.
10957 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
10958
10959 * s/usg5-4-common.h (USG, USG5):
10960 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
10961 * s/sol2-6.h (SOLARIS2):
10962 * s/irix6-5.h (IRIX6_5):
10963 * s/hpux10-20.h (USG, USG5, HPUX):
10964 * s/gnu-linux.h (USG, GNU_LINUX):
10965 * s/freebsd.h (BSD_SYSTEM):
10966 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
10967 * s/cygwin.h (CYGWIN):
10968 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
10969 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
10970
10971 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
10972
10973 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
10974
10975 2012-07-13 Glenn Morris <rgm@gnu.org>
10976
10977 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
10978
10979 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
10980
10981 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
10982 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
10983
10984 2012-07-12 Glenn Morris <rgm@gnu.org>
10985
10986 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
10987
10988 * process.c (init_process_emacs): Rename from init_process.
10989 The old name is also the name of a Mach system call.
10990 * lisp.h, emacs.c: Update for this name change.
10991 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
10992 longer needed.
10993
10994 2012-07-12 Eli Zaretskii <eliz@gnu.org>
10995
10996 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
10997 memmove call that removes glyphs covered by the left truncation
10998 glyph. Improve commentary.
10999 (display_line): Fix display of continuation glyphs on GUI frames
11000 when the right fringe is turned off and variable-size fonts are
11001 used in the window. Move the code that appends a stretch glyph to
11002 produce_special_glyphs, so that it could be used for truncation
11003 and continuation glyphs alike.
11004 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
11005 glyph of a suitably computed width, to align the special glyphs at
11006 the window margin. Code moved from display_line. (Bug#11832)
11007
11008 2012-07-12 Glenn Morris <rgm@gnu.org>
11009
11010 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
11011
11012 * s/gnu-linux.h, s/hpux10-20.h:
11013 Do not unconditionally define HAVE_XRMSETDATABASE.
11014
11015 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
11016
11017 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
11018
11019 Fix typos that broke OS X build.
11020 Reported by Randal L. Schwartz in
11021 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
11022 * nsterm.m (ns_timeout): Add missing local decl.
11023 (ns_get_color): snprintf -> sprintf, to fix typo.
11024
11025 2012-07-12 Glenn Morris <rgm@gnu.org>
11026
11027 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
11028 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
11029 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
11030 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
11031
11032 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
11033 Move PTY_OPEN to configure.
11034
11035 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11036 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
11037 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
11038
11039 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
11040
11041 Use empty_unibyte_string where applicable.
11042 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
11043 * lread.c (read1): Likewise.
11044 * xsettings.c (syms_of_xsettings): Likewise.
11045
11046 2012-07-12 Glenn Morris <rgm@gnu.org>
11047
11048 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
11049 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
11050 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
11051 * s/hpux10-20.h (RUN_TIME_REMAP):
11052 * s/bsd-common.h (TABDLY): Move to configure.
11053
11054 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
11055
11056 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
11057
11058 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
11059 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
11060
11061 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
11062
11063 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
11064 * s/template.h: Move NARROWPROTO to configure.
11065
11066 2012-07-11 Glenn Morris <rgm@gnu.org>
11067
11068 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
11069 unused since 2011-01-17 change to systty.h.
11070
11071 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
11072 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
11073 Move HAVE_PTYS and HAVE_SOCKETS to configure.
11074
11075 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
11076
11077 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
11078
11079 2012-07-11 Glenn Morris <rgm@gnu.org>
11080
11081 * s/darwin.h, s/gnu-linux.h, s/template.h:
11082 Move INTERRUPT_INPUT to configure.
11083
11084 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
11085
11086 Minor adjustments to interning code.
11087 * lisp.h (intern, intern_c_string): Redefine as static inline
11088 wrappers for intern_1 and intern_c_string_1, respectively.
11089 (intern_1, intern_c_string_1): Rename prototypes.
11090 * lread.c (intern_1, intern_c_string_1, oblookup):
11091 Simplify Vobarray checking.
11092 * font.c (font_intern_prop): Likewise. Adjust comment.
11093 * w32font.c (intern_font_name): Likewise.
11094
11095 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
11096
11097 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
11098
11099 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
11100 of Fcar/Fcdr if possible.
11101 * font.c (check_otf_features): Likewise.
11102 * fontset.c (Fnew_fontset): Likewise.
11103 * gnutls.c (Fgnutls_boot): Likewise.
11104 * minibuf.c (read_minibuf): Likewise.
11105 * msdos.c (IT_set_frame_parameters): Likewise.
11106 * xmenu.c (Fx_popup_dialog): Likewise.
11107 * w32menu.c (Fx_popup_dialog): Likewise.
11108
11109 2012-07-11 Glenn Morris <rgm@gnu.org>
11110
11111 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
11112 since nothing has defined it on these platforms.
11113
11114 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
11115 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
11116
11117 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11118 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
11119 Move CLASH_DETECTION to configure.
11120
11121 * s/gnu.h: Remove file, which is now empty.
11122
11123 * s/gnu.h, s/gnu-linux.h:
11124 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
11125
11126 2012-07-11 John Wiegley <johnw@newartisans.com>
11127
11128 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
11129 function attribute, so we only use it if it exists in the
11130 compiler.
11131
11132 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
11133
11134 Avoid call to strlen in fast_c_string_match_ignore_case.
11135 * search.c (fast_c_string_match_ignore_case): Change to use
11136 length argument. Adjust users accordingly.
11137 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
11138
11139 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
11140
11141 Assume mkdir, rmdir.
11142 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
11143 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
11144
11145 Assume rename.
11146 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
11147
11148 Assume perror.
11149 * s/hpux10-20.h (HAVE_PERROR): Remove.
11150 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
11151 Remove dummy definition, as this problem was obsolete long ago.
11152
11153 Assume strerror.
11154 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
11155
11156 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
11157
11158 Avoid calls to strlen in font processing functions.
11159 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
11160 (font_open_by_name): Change to use length argument.
11161 Adjust users accordingly.
11162 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
11163 Adjust prototypes.
11164 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
11165 Change to return ptrdiff_t.
11166 (xfont_list_pattern, xfont_match): Use length returned by
11167 xfont_decode_coding_xlfd.
11168 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
11169
11170 2012-07-11 Glenn Morris <rgm@gnu.org>
11171
11172 * s/darwin.h, s/freebsd.h, s/netbsd.h:
11173 Move DONT_REOPEN_PTY to configure.
11174
11175 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
11176 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
11177
11178 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
11179
11180 Remove "#define unix" that is no longer needed (Bug#11905).
11181 * s/aix4-2.h (unix): Remove; no longer needed.
11182
11183 EMACS_TIME simplification (Bug#11875).
11184 This replaces macros (which typically do not work in GDB)
11185 with functions, typedefs and enums, making the code easier to debug.
11186 The functional style also makes code easier to read and maintain.
11187 * systime.h: Include <sys/time.h> on all hosts, not just if
11188 WINDOWSNT, since 'struct timeval' is needed in general.
11189 (EMACS_TIME): Now a typedef, not a macro.
11190 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
11191 not macros.
11192 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
11193 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
11194 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
11195 (EMACS_TIME_LE): Now functions, not macros.
11196 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
11197 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
11198 which are not functions. All uses rewritten to use:
11199 (make_emacs_time): New function.
11200 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
11201 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
11202 not functions. All uses rewritten to use the following, respectively:
11203 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
11204 (add_emacs_time, sub_emacs_time): New functions.
11205 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
11206 * fileio.c (Fcopy_file):
11207 * xterm.c (XTflash): Get the current time closer to when it's used.
11208 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
11209
11210 * bytecode.c (targets): Suppress -Woverride-init warnings.
11211
11212 Simplify by avoiding confusing use of strncpy etc.
11213 * doc.c (Fsnarf_documentation):
11214 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
11215 * frame.c (Fmake_terminal_frame):
11216 * gtkutil.c (get_utf8_string):
11217 * lread.c (openp):
11218 * nsmenu.m (ns_update_menubar):
11219 * regex.c (regerror):
11220 Prefer memcpy to strncpy and strncat when either will do.
11221 * fileio.c (Fsubstitute_in_file_name):
11222 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
11223 (menu_separator_name_p):
11224 * nsmenu.m (ns_update_menubar):
11225 Prefer memcmp to strncmp when either will do.
11226 * nsterm.m: Include <ftoastr.h>.
11227 (ns_get_color):
11228 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
11229 Prefer snprintf to strncpy.
11230 * nsterm.m (ns_term_init):
11231 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
11232 * nsterm.m (ns_term_init):
11233 Avoid the need for strncpy, by using build_string or
11234 make_unibyte_string directly. Use dtoastr, not snprintf.
11235 * process.c (Fmake_network_process): Diagnose service names that
11236 are too long, rather than silently truncating them or creating
11237 non-null-terminated names.
11238 (Fnetwork_interface_info): Likewise, for interface names.
11239 * sysdep.c (system_process_attributes) [GNU_LINUX]:
11240 Prefer sprintf to strncat.
11241 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
11242 Prefer vsnprintf to vsprintf + strncpy.
11243
11244 2012-07-10 Glenn Morris <rgm@gnu.org>
11245
11246 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
11247 Clarify fallback case.
11248
11249 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
11250
11251 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
11252 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
11253 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
11254 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
11255 where argument type is known to be a Lisp_Cons.
11256
11257 2012-07-10 Tom Tromey <tromey@redhat.com>
11258
11259 * bytecode.c (BYTE_CODE_THREADED): New macro.
11260 (BYTE_CODES): New macro. Replaces all old byte-code defines.
11261 (enum byte_code_op): New type.
11262 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
11263 (exec_byte_code): Use them. Use token threading when applicable.
11264
11265 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
11266
11267 Optimize pure C strings initialization.
11268 * lisp.h (make_pure_string): Fix prototype.
11269 (build_pure_c_string): New function, defined as static inline. This
11270 provides a better opportunity to optimize away calls to strlen when
11271 the function is called with compile-time constant argument.
11272 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
11273 argument, adjust users accordingly. Use build_pure_c_string where
11274 appropriate.
11275 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
11276 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
11277 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
11278
11279 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
11280
11281 Avoid calls to strlen in miscellaneous functions.
11282 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
11283 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
11284 * lread.c (openp): Likewise.
11285
11286 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
11287
11288 Avoid calls to strlen in path processing functions.
11289 * fileio.c (file_name_as_directory): Add comment. Change to add
11290 srclen argument and return the length of result. Adjust users
11291 accordingly.
11292 (directory_file_name): Fix comment. Change to add srclen argument,
11293 swap 1st and 2nd arguments to obey the common convention.
11294 Adjust users accordingly.
11295 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
11296
11297 2012-07-10 Glenn Morris <rgm@gnu.org>
11298
11299 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
11300 Move PENDING_OUTPUT_COUNT definition to configure.
11301
11302 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
11303 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
11304 * s/gnu.h (DATA_START): Move definitions to configure.
11305
11306 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
11307 We include usg5-4-common.h, which defines them both.
11308
11309 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
11310 O_RDONLY already includes it).
11311
11312 Stop ns builds setting the EMACSLOADPATH environment variable.
11313 * nsterm.m (ns_load_path): Rename from ns_init_paths.
11314 Now it does not set EMACSLOADPATH, just returns the load-path string.
11315 * nsterm.h: Update accordingly.
11316 * lread.c [HAVE_NS]: Include nsterm.h.
11317 (init_lread) [HAVE_NS]: Use ns_load_path.
11318 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
11319
11320 2012-07-09 Glenn Morris <rgm@gnu.org>
11321
11322 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
11323 since the included bsd-common.h does so.
11324
11325 Stop ns builds setting the EMACSPATH environment variable.
11326 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
11327 (ns_init_paths): Do not set EMACSPATH.
11328 * nsterm.h (ns_exec_path): Add it.
11329 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
11330 Use ns_exec_path.
11331
11332 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
11333
11334 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
11335
11336 * process.c (wait_reading_process_output): 'waitchannels' was unset
11337 when read_kbd || !NILP (wait_for_cell); fix this.
11338
11339 Add GCC-style 'const' attribute to functions that can use it.
11340 * character.h (char_resolve_modifier_mask):
11341 * keyboard.h (make_ctrl_char):
11342 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
11343 (init_character_once, next_almost_prime, init_fns, init_image)
11344 (flush_pending_output, init_sound):
11345 * mem-limits.h (start_of_data):
11346 * menu.h (finish_menu_items):
11347 Add ATTRIBUTE_CONST.
11348 * emacs.c (DEFINE_DUMMY_FUNCTION):
11349 Declare the dummy function with ATTRIBUTE_CONST.
11350 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
11351 Add decls with ATTRIBUTE_CONST.
11352
11353 Minor improvements to make_formatted_string.
11354 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
11355 where int is good enough, as vsprintf returns an int.
11356 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
11357
11358 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
11359
11360 Use make_formatted_string to avoid double length calculation.
11361 * lisp.h (make_formatted_string): New prototype.
11362 * alloc.c (make_formatted_string): New function.
11363 * buffer.c (Fgenerate_new_buffer_name): Use it.
11364 * dbusbind.c (syms_of_dbusbind): Likewise.
11365 * editfns.c (Fcurrent_time_zone): Likewise.
11366 * filelock.c (get_boot_time): Likewise.
11367 * frame.c (make_terminal_frame, set_term_frame_name)
11368 (x_report_frame_params): Likewise.
11369 * image.c (gs_load): Likewise.
11370 * minibuf.c (get_minibuffer): Likewise.
11371 * msdos.c (dos_set_window_size): Likewise.
11372 * process.c (make_process): Likewise.
11373 * xdisp.c (ensure_echo_area_buffers): Likewise.
11374 * xsettings.c (apply_xft_settings): Likewise.
11375
11376 2012-07-09 Glenn Morris <rgm@gnu.org>
11377
11378 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
11379 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
11380 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
11381 * nsterm.h (ns_etc_directory): Add it.
11382 * callproc.c [HAVE_NS]: Include nsterm.h.
11383 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
11384
11385 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
11386
11387 Move marker debugging code under MARKER_DEBUG.
11388 * marker.c (MARKER_DEBUG): Move marker debugging code under
11389 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
11390 for bootstrap with --enable-checking (~3x slowdown reported
11391 by Juanma Barranquero <lekktu@gmail.com>).
11392 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
11393
11394 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
11395
11396 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
11397 See <http://bugs.gnu.org/11825#29>.
11398
11399 2012-07-08 Eli Zaretskii <eliz@gnu.org>
11400
11401 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
11402 has no font, use the frame's font. (Bug#11813)
11403 (display_line): Add commentary about displaying truncation glyphs
11404 on GUI frames.
11405 (produce_special_glyphs): Move here from term.c.
11406
11407 * term.c (produce_special_glyphs): Move to xdisp.c.
11408
11409 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
11410 section.
11411
11412 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
11413
11414 * xdisp.c (display_line): Avoid warning about implicit declaration
11415 of FRAME_FONT.
11416
11417 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
11418
11419 * lisp.h: Remove empty conditional.
11420
11421 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
11422
11423 * lread.c (load_path_check): Now static.
11424
11425 Fix some minor --with-ns problems found by static checking.
11426 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
11427 (x_set_font) [!HAVE_X_WINDOWS]:
11428 * image.c (xpm_load_image) [HAVE_NS]:
11429 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
11430 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
11431 Remove unused local.
11432 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
11433 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
11434 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
11435 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
11436 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
11437 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
11438 Fix pointer signedness problem.
11439 * xfaces.c (FRAME_X_FONT_TABLE):
11440 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
11441
11442 2012-07-07 Glenn Morris <rgm@gnu.org>
11443
11444 * lread.c (load_path_check): New function, split from init_lread.
11445 (init_lread): Reorganize. Motivation:
11446 If EMACSLOADPATH is set, check/warn about that rather than the
11447 defaults, which we are not going to use. Hence we can remove
11448 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
11449 Don't warn if site-lisp directories are missing.
11450 If not installed, start from a blank load-path, since
11451 PATH_LOADSEARCH refers to the eventual installation directories.
11452
11453 2012-07-07 Eli Zaretskii <eliz@gnu.org>
11454
11455 Support truncation and continuation glyphs on GUI frames, when
11456 fringes are disabled. (Bug#11832)
11457 * xdisp.c (init_iterator): Get dimensions of truncation and
11458 continuation glyphs even if on GUI frames.
11459 Adjust it->last_visible_x on GUI frames when the left or right fringes,
11460 or both, are absent.
11461 (start_display, move_it_in_display_line_to): Handle the case of a
11462 GUI frame without a fringe to display continuation or truncation
11463 glyphs.
11464 (insert_left_trunc_glyphs): Support GUI frames: make sure
11465 truncation glyphs overwrite enough glyphs from the current line to
11466 have sufficient space in pixels.
11467 (display_line): Support truncation and continuation glyphs on GUI
11468 frames. If some spare pixels are left on the line after inserting
11469 the truncation glyphs, fill that space with a stretch glyph of a
11470 suitably computed width.
11471
11472 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
11473 produce_glyphs, to support GUI sessions.
11474
11475 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
11476
11477 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
11478
11479 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
11480
11481 Do not require float-time's arg to fit in time_t (Bug#11825).
11482 This works better on hosts where time_t is unsigned, and where
11483 float-time is applied to the (negative) difference between two times.
11484 * editfns.c (decode_time_components): Last arg is now double *,
11485 not int *, and means to store all the result as a double, without
11486 worrying about whether the seconds part fits in time_t.
11487 All callers changed.
11488 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
11489 All callers changed.
11490 (Ffloat_time): Do not fail merely because the specified time falls
11491 outside of time_t range.
11492
11493 2012-07-07 Glenn Morris <rgm@gnu.org>
11494
11495 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
11496 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
11497 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
11498
11499 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
11500
11501 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
11502 Update dependencies.
11503
11504 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
11505
11506 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
11507
11508 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
11509 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
11510 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
11511 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
11512 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
11513 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
11514
11515 * xfont.c (compare_font_names): Redo to omit the need for casts.
11516
11517 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
11518
11519 * xfns.c (Fx_change_window_property): Doc fix.
11520 * w32fns.c (Fx_change_window_property): Doc fix.
11521
11522 * w32fns.c (Fx_window_property): Accept the same arguments as the
11523 X Windows version. Doc fix.
11524 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
11525
11526 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
11527 Eli Zaretskii <eliz@gnu.org>
11528
11529 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
11530 Windows-specific code from nt/config.nt moved here.
11531 Obsolete settings removed.
11532
11533 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
11534
11535 * process.c: Avoid unnecessary calls to gettime.
11536 (wait_reading_process_output): Don't get the time of day
11537 when gobbling data immediately and not waiting, as there's no need
11538 for it in that case. This removes a FIXME.
11539
11540 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
11541
11542 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
11543 is defined (Bug#11768).
11544
11545 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
11546
11547 Fix marker debugging code.
11548 * marker.c (byte_char_debug_check): Do not perform the check
11549 if buffer is not multibyte.
11550 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
11551 Call byte_char_debug_check with correct arguments.
11552
11553 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
11554
11555 Compile marker debugging code only if ENABLE_CHECKING is defined.
11556 * marker.c (byte_char_debug_check, count_markers):
11557 Use only if ENABLE_CHECKING is defined.
11558 (byte_debug_flag): Remove.
11559 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
11560 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
11561
11562 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
11563
11564 Avoid code repetition in marker-related functions.
11565 * marker.c (attach_marker): New function.
11566 (Fset_marker, set_marker_restricted, set_marker_both)
11567 (set_marker_restricted_both): Use it.
11568 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
11569 Consistently rename charno to charpos.
11570 (marker_position): Add eassert.
11571 (marker_byte_position): Convert to eassert.
11572
11573 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
11574
11575 Simplify list operations in unchain_overlay and unchain_marker.
11576 * buffer.c (unchain_overlay): Simplify. Add comment.
11577 * marker.c (unchain_marker): Simplify. Fix comments.
11578
11579 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
11580
11581 Introduce fast path for the widely used marker operation.
11582 * alloc.c (build_marker): New function.
11583 * lisp.h (build_marker): New prototype.
11584 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
11585 * composite.c (autocmp_chars): Likewise.
11586 * editfns.c (buildmark): Remove.
11587 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
11588 (save_restriction_save): Use build_marker.
11589 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
11590 * window.c (save_window_save): Likewise.
11591
11592 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
11593
11594 Do not use Fdelete_overlay in delete_all_overlays
11595 to avoid redundant calls to unchain_overlay.
11596 * buffer.c (drop_overlay): New function.
11597 (delete_all_overlays, Fdelete_overlay): Use it.
11598 * minibuf.c (get_minibuffer): Fix comment.
11599
11600 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
11601
11602 Port to OpenBSD 5.1 amd64.
11603 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
11604 This is needed for OpenBSD, and should be harmless on all BSD systems.
11605 Also, include <sys/sysctl.h>, as it should be available on all
11606 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
11607 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
11608 use p_pid member, not kp_proc.pid.
11609
11610 2012-07-06 Glenn Morris <rgm@gnu.org>
11611
11612 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
11613
11614 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
11615
11616 More xmalloc and related cleanup.
11617 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
11618 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
11619 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
11620 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
11621 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
11622 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
11623 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
11624 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
11625 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
11626 * xterm.c:
11627 Omit needless casts involving void * pointers and allocation.
11628 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
11629 as the former is more robust if P's type is changed.
11630 Prefer xzalloc to xmalloc + memset 0.
11631 Simplify malloc-or-realloc to realloc.
11632 Don't worry about xmalloc returning a null pointer.
11633 Prefer xstrdup to xmalloc + strcpy.
11634 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
11635 growing it.
11636 * keyboard.c (apply_modifiers_uncached): Prefer local array to
11637 alloca of a constant.
11638
11639 2012-07-05 Eli Zaretskii <eliz@gnu.org>
11640
11641 * xdisp.c (display_line): Fix horizontal pixel coordinates when
11642 hscroll is larger than the line width. Fixes long and futile
11643 looping inside extend_face_to_end_of_line (on a TTY) producing
11644 glyphs that are not needed and thrown away.
11645
11646 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
11647
11648 * marker.c (set_marker_restricted_both): Simplify by using
11649 clip_to_bounds.
11650
11651 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
11652
11653 * editfns.c (region_limit): Simplify by using clip_to_bounds.
11654
11655 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
11656
11657 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
11658 not defined (Bug#11768).
11659 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
11660 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
11661 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
11662 followed by gtk_box_set_homogeneous (Bug#11768).
11663 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
11664 (update_theme_scrollbar_width, xg_create_scroll_bar):
11665 Use gtk_scrollbar_new (Bug#11768).
11666 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
11667 (is_box_type): New function (Bug#11768).
11668 (xg_tool_item_stale_p): Call is_box_type.
11669 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
11670 with default display (Bug#11768).
11671
11672 2012-07-05 Eli Zaretskii <eliz@gnu.org>
11673
11674 * xdisp.c (window_hscroll_limited): New function.
11675 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
11676 coordinates when window's hscroll is set to insanely large
11677 values. (Bug#11857)
11678
11679 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
11680
11681 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
11682 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
11683
11684 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
11685
11686 Cleanup xmalloc.
11687 * lisp.h (xzalloc): New prototype. Omit needless casts.
11688 * alloc.c (xzalloc): New function. Omit needless casts.
11689 * charset.c: Omit needless casts. Convert all calls to
11690 xmalloc with following memset to xzalloc.
11691 * dispnew.c: Likewise.
11692 * fringe.c: Likewise.
11693 * image.c: Likewise.
11694 * sound.c: Likewise.
11695 * term.c: Likewise.
11696 * w32fns.c: Likewise.
11697 * w32font.c: Likewise.
11698 * w32term.c: Likewise.
11699 * xfaces.c: Likewise.
11700 * xfns.c: Likewise.
11701 * xterm.c: Likewise.
11702 * atimer.c: Omit needless casts.
11703 * buffer.c: Likewise.
11704 * callproc.c: Likewise.
11705 * ccl.c: Likewise.
11706 * coding.c: Likewise.
11707 * composite.c: Likewise.
11708 * doc.c: Likewise.
11709 * doprnt.c: Likewise.
11710 * editfns.c: Likewise.
11711 * emacs.c: Likewise.
11712 * eval.c: Likewise.
11713 * filelock.c: Likewise.
11714 * fns.c: Likewise.
11715 * gtkutil.c: Likewise.
11716 * keyboard.c: Likewise.
11717 * lisp.h: Likewise.
11718 * lread.c: Likewise.
11719 * minibuf.c: Likewise.
11720 * msdos.c: Likewise.
11721 * print.c: Likewise.
11722 * process.c: Likewise.
11723 * region-cache.c: Likewise.
11724 * search.c: Likewise.
11725 * sysdep.c: Likewise.
11726 * termcap.c: Likewise.
11727 * terminal.c: Likewise.
11728 * tparam.c: Likewise.
11729 * w16select.c: Likewise.
11730 * w32.c: Likewise.
11731 * w32reg.c: Likewise.
11732 * w32select.c: Likewise.
11733 * w32uniscribe.c: Likewise.
11734 * widget.c: Likewise.
11735 * xdisp.c: Likewise.
11736 * xmenu.c: Likewise.
11737 * xrdb.c: Likewise.
11738 * xselect.c: Likewise.
11739
11740 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
11741
11742 * fileio.c (time_error_value): Check the right error number.
11743 Problem reported by Troels Nielsen in
11744 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
11745
11746 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11747
11748 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
11749 This should be fixed in a better way; see Eli Zaretskii in
11750 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
11751 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
11752
11753 * fileio.c (time_error_value): Rename from special_mtime.
11754 The old name's problems were noted by Eli Zaretskii in
11755 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
11756
11757 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
11758 This variable's comment says Emacs needs at least one GDB-visible
11759 symbol of type enum pvec_type, to work around GDB problems.
11760 The symbol's value doesn't matter.
11761
11762 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
11763 that causes compilation to fail on pre-C99 compilers.
11764
11765 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
11766
11767 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
11768 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
11769
11770 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
11771
11772 * buffer.c (init_buffer_once): Fix initialization of
11773 headers for buffer_defaults and buffer_local_symbols.
11774 Reported by Juanma Barranquero <lekktu@gmail.com>.
11775
11776 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11777
11778 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
11779 * lisp.h (enum pvec_type): Use fewer bits.
11780 (PSEUDOVECTOR_SIZE_BITS): New constant.
11781 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
11782 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
11783 change in pvec_type.
11784 (PSEUDOVECTOR_TYPEP): New macro.
11785 (TYPED_PSEUDOVECTORP): Use it.
11786 * fns.c (internal_equal): Adapt code to extract pvectype.
11787 * emacs.c (gdb_pvec_type): Update type.
11788 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
11789 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
11790 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
11791 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
11792 (sweep_vectors): Use it. Use local var `total_bytes' instead of
11793 abusing vector->header.next.nbytes.
11794 (live_vector_p): Use PVEC_TYPE.
11795 (mark_object): Adapt code to extract pvectype. Use switch.
11796
11797 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11798
11799 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
11800 Tighten new eassert a bit.
11801
11802 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
11803
11804 Fix compilation with --enable-gcc-warnings and -O1
11805 optimization level.
11806 * doprnt.c (doprnt): Change type of tem to int, initialize
11807 to avoid compiler warning. Add eassert.
11808 * search.c (simple_search): Initialize match_byte to avoid
11809 compiler warning. Add eassert.
11810
11811 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11812
11813 Avoid weird behavior with large horizontal scrolls.
11814 Without this change, for example, large hscroll values would
11815 mess up Emacs's display on Fedora 15 x86, presumably due to
11816 overflows in int calculations in the display code.
11817 Also, if buffers had long lines, Emacs would freeze.
11818 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
11819 (set_window_hscroll): New function, containing the old guts of
11820 Fset_window_hscroll. Return the clipped value.
11821 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
11822 This avoids the need to check against PTRDIFF_MAX.
11823
11824 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
11825
11826 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
11827
11828 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
11829
11830 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
11831
11832 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
11833 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
11834 since GCC 4.4.6 issues a bogus warning for them.
11835
11836 Fix bugs in file timestamp newness comparisons.
11837 * fileio.c (Ffile_newer_than_file_p):
11838 * lread.c (Fload): Use full timestamp resolution of files,
11839 not just the 1-second resolution, so that files that are only
11840 slightly newer still count as newer.
11841 * fileio.c (Ffile_newer_than_file_p): Don't assume file
11842 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
11843
11844 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
11845
11846 * fileio.c: Improve handling of file time marker. (Bug#11852)
11847 (special_mtime): New function.
11848 (Finsert_file_contents, Fverify_visited_file_modtime):
11849 Use it to set special mtime values consistently.
11850
11851 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
11852
11853 * fileio.c (Finsert_file_contents): Properly handle st_mtime
11854 marker for non-existing file. (Bug#11852)
11855
11856 2012-07-03 Glenn Morris <rgm@gnu.org>
11857
11858 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
11859 and did not make it into globals.h).
11860
11861 2012-07-03 Tom Tromey <tromey@redhat.com>
11862
11863 * window.c (Fset_window_margins, Fset_window_fringes)
11864 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
11865 * textprop.c (Fprevious_property_change): No longer static.
11866 * syntax.c (Fsyntax_table_p): No longer static.
11867 * process.c (Fget_process, Fprocess_datagram_address): No longer
11868 static.
11869 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
11870 * keyboard.c (Fcommand_execute): No longer static.
11871 Remove EXFUN.
11872 * insdel.c (Fcombine_after_change_execute): No longer static.
11873 * image.c (Finit_image_library): No longer static.
11874 * fileio.c (Fmake_symbolic_link): No longer static.
11875 * eval.c (Ffetch_bytecode): No longer static.
11876 * editfns.c (Fuser_full_name): No longer static.
11877 * doc.c (Fdocumentation_property, Fsnarf_documentation):
11878 No longer static.
11879 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
11880 static.
11881 * dired.c (Ffile_attributes): No longer static.
11882 * composite.c (Fcomposition_get_gstring): No longer static.
11883 * callproc.c (Fgetenv_internal): No longer static.
11884
11885 * ccl.h: Remove EXFUNs.
11886 * buffer.h: Remove EXFUNs.
11887 * dispextern.h: Remove EXFUNs.
11888 * intervals.h: Remove EXFUNs.
11889 * fontset.h: Remove EXFUN.
11890 * font.h: Remove EXFUNs.
11891 * dosfns.c (system_process_attributes): Remove EXFUN.
11892 * keymap.h: Remove EXFUNs.
11893 * lisp.h: Remove EXFUNs.
11894 * w32term.h: Remove EXFUNs.
11895 * window.h: Remove EXFUNs.
11896 * xsettings.h: Remove EXFUN.
11897 * xterm.h: Remove EXFUN.
11898
11899 2012-07-03 Glenn Morris <rgm@gnu.org>
11900
11901 * lisp.h (Frandom): Make it visible to C.
11902 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
11903 buffer for invisible buffers. (Bug#1229)
11904
11905 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11906
11907 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
11908 values which aren't power of 2.
11909 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
11910 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
11911 accordingly.
11912
11913 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
11914
11915 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
11916
11917 * alloc.c (mark_object): Revert part of last patch to use `switch'.
11918
11919 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11920
11921 * alloc.c (allocate_vector_block): Remove redundant
11922 calls to mallopt if DOUG_LEA_MALLOC is defined.
11923 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
11924 avoid calls to mallopt if zero_vector is returned.
11925
11926 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11927
11928 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
11929 is enabled, avoid dereferencing NULL current_sblock if
11930 running undumped.
11931
11932 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
11933
11934 Cleanup basic buffer management.
11935 * buffer.h (struct buffer): Change layout to use generic vector
11936 marking code. Fix some comments. Change type of 'clip_changed'
11937 to bitfield. Remove unused #ifndef old.
11938 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
11939 (GET_OVERLAYS_AT): Fix indentation.
11940 (for_each_per_buffer_object_at): New macro.
11941 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
11942 (Fbuffer_local_variables): Use it.
11943 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
11944 * alloc.c (allocate_buffer): Adjust to match new layout of
11945 struct buffer. Fix comment.
11946 (mark_overlay): New function.
11947 (mark_buffer): Use it. Use mark_vectorlike to mark normal
11948 Lisp area of struct buffer.
11949 (mark_object): Use it. Adjust marking of misc objects
11950 and related comments.
11951
11952 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
11953
11954 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
11955 wrapper that is not needed because the wrapped code is a no-op (zero
11956 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
11957 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
11958
11959 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
11960
11961 * alloc.c (mark_buffer): Simplify. Remove prototype.
11962 (mark_object): Add comment. Reorganize marking of vector-like
11963 objects. Use CHECK_LIVE for all vector-like objects except buffers
11964 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
11965 Avoid redundant calls to mark_vectorlike for bool vectors.
11966
11967 2012-06-30 Glenn Morris <rgm@gnu.org>
11968
11969 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
11970
11971 * epaths.in (PATH_SITELOADSEARCH): New.
11972 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
11973 This is rather than relying on --enable-locallisppath elements
11974 having "site-lisp" in their names. (Bug#10208#25, 11658)
11975
11976 2012-06-30 Eli Zaretskii <eliz@gnu.org>
11977
11978 * w32proc.c (sys_select): Accept and ignore one more argument.
11979
11980 * w32.c (emacs_gnutls_pull): Call select with one more argument.
11981
11982 * sysselect.h [DOS_NT]: Don't include sys/select.h.
11983 (pselect) [!MS_DOS]: Redirect to sys_select.
11984
11985 * sysdep.c: Don't include dos.h and dosfns.h.
11986
11987 * process.c (sys_select):
11988 * msdos.c (sys_select): Accept one more argument and ignore it.
11989
11990 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
11991 adapt data types and code to that.
11992
11993 * dosfns.c:
11994 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
11995 which clashes with the gnulib function of the same name.
11996
11997 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
11998
11999 * font.c (font_style_to_value, font_style_symbolic)
12000 (font_prop_validate_style): Add type checks for values in
12001 font_style_table.
12002
12003 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
12004 argument.
12005 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
12006 uses.
12007
12008 2012-06-29 Eli Zaretskii <eliz@gnu.org>
12009
12010 * xdisp.c (try_window_id): Undo last change.
12011
12012 * w32.c (getwd): Adjust commentary about startup_dir.
12013 (init_environment): Always call sys_access, even in non-MSVC
12014 builds. Don't chdir to the directory of the Emacs executable.
12015 This undoes code from 1997 which was justified by the need to
12016 "avoid conflicts when removing and renaming directories". But its
12017 downside was that every relative file name was being interpreted
12018 relative to the directory of the Emacs executable, which can never
12019 be TRT. In particular, it broke sys_access when called with
12020 relative file names.
12021 (sys_access): Map GetLastError to errno.
12022
12023 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
12024
12025 * window.h (struct window): Change type of 'fringes_outside_margins'
12026 to bitfield. Fix comment. Adjust users accordingly.
12027 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
12028 Adjust comment.
12029 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
12030 to ptrdiff_t.
12031
12032 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
12033
12034 * gnutls.c (emacs_gnutls_handshake):
12035 Add QUIT to make the loop interruptible.
12036
12037 2012-06-29 Glenn Morris <rgm@gnu.org>
12038
12039 * charset.c (init_charset): Make lack of etc/charsets fatal.
12040
12041 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
12042
12043 * editfns.c (region_limit): Fix type mismatch.
12044
12045 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
12046
12047 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
12048 undefined. Convert from xassert to eassert.
12049 * nsmenu.m: Convert from xassert to eassert.
12050 * nsterm.m: Likewise.
12051
12052 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
12053
12054 * editfns.c (region_limit): Clip to narrowing (bug#11770).
12055
12056 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
12057
12058 Avoid integer overflow on scroll-left and scroll-right.
12059 * window.c (HSCROLL_MAX): New macro.
12060 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
12061 overflow when requested scroll falls outside ptrdiff_t range.
12062
12063 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
12064
12065 * window.h (struct window): Change type of 'hscroll',
12066 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
12067 'last_modified' and 'last_overlay_modified' to EMACS_INT.
12068 Adjust users accordingly.
12069 * xdisp.c (try_cursor_movement): Replace type check with eassert.
12070 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
12071 from EMACS_INT to ptrdiff_t.
12072 (make_window): Omit redundant initialization.
12073
12074 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
12075
12076 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
12077
12078 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
12079
12080 * window.h (struct window): Change type of 'use_time' and
12081 'sequence_number' from Lisp_Object to int.
12082 * frame.c (make_frame): Adjust users accordingly.
12083 * print.c (print_object): Likewise.
12084 * window.c (select_window, Fwindow_use_time, make_parent_window)
12085 (make_window): Likewise.
12086
12087 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
12088
12089 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
12090 enabled with --enable-checking=[all,glyphs] configure option.
12091 Fix GLYPH_DEBUG usage assuming that it may be undefined,
12092 adjust comments accordingly.
12093 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
12094 undefined, adjust comments accordingly.
12095 * image.c: Likewise.
12096 * scroll.c: Likewise.
12097 * w32fns.c: Likewise.
12098 * w32term.c: Likewise.
12099 * xdisp.c: Likewise.
12100 * xfaces.c: Likewise.
12101 * xfns.c: Likewise.
12102 * xterm.c: Likewise.
12103
12104 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
12105
12106 Generalize run-time debugging checks.
12107 * dispextern.h (XASSERTS): Remove.
12108 * fontset.c (xassert): Remove.
12109 Convert from xassert to eassert.
12110 * alloc.c: Convert from xassert to eassert.
12111 * bidi.c: Likewise.
12112 * dispnew.c: Likewise.
12113 * fns.c: Likewise.
12114 * fringe.c: Likewise.
12115 * ftfont.c: Likewise.
12116 * gtkutil.c: Likewise.
12117 * image.c: Likewise.
12118 * keyboard.c: Likewise.
12119 * menu.c: Likewise.
12120 * process.c: Likewise.
12121 * scroll.c: Likewise.
12122 * sound.c: Likewise.
12123 * term.c: Likewise.
12124 * w32console.c: Likewise.
12125 * w32fns.c: Likewise.
12126 * w32term.c: Likewise.
12127 * window.c: Likewise.
12128 * xdisp.c: Likewise.
12129 * xfaces.c: Likewise.
12130 * xfns.c: Likewise.
12131 * xselect.c: Likewise.
12132 * xterm.c: Likewise.
12133
12134 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12135
12136 * fns.c (maybe_resize_hash_table): Output message when growing the
12137 purify-hashtable.
12138
12139 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
12140
12141 * alloc.c (allocate_string_data): Remove dead code.
12142 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
12143 avoid GCC warning about unused macro.
12144
12145 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
12146
12147 * alloc.c (allocate_string): Omit intervals initialization.
12148 * alloc.c (make_uninit_multibyte_string): Initialize intervals
12149 as in make_pure_string and make_pure_c_string.
12150
12151 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
12152
12153 * alloc.c (allocate_string): Fix last change.
12154
12155 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
12156
12157 * alloc.c (allocate_string): Remove two redundant calls
12158 to memset, add explicit initialization where appropriate.
12159
12160 2012-06-27 Glenn Morris <rgm@gnu.org>
12161
12162 * lisp.mk (lisp): Remove paths.elc.
12163
12164 2012-06-27 Chong Yidong <cyd@gnu.org>
12165
12166 * doc.c (Fsubstitute_command_keys): Fix punctuation.
12167
12168 2012-06-26 John Wiegley <johnw@newartisans.com>
12169
12170 * unexmacosx.c (copy_data_segment): Add two section names used
12171 on Mac OS X Lion: __mod_init_func and __mod_term_func.
12172
12173 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
12174 when building with Clang.
12175
12176 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
12177
12178 * eval.c (Fapply): Allow calling it with a single argument.
12179
12180 2012-06-26 Eli Zaretskii <eliz@gnu.org>
12181
12182 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
12183 _stricmp and _strnicmp.
12184 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
12185
12186 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
12187
12188 * alloc.c (allocate_window): Zero out non-Lisp part of newly
12189 allocated window.
12190 (allocate_process): Likewise for new process.
12191 (allocate_terminal): Change to use offsetof.
12192 (allocate_frame): Likewise.
12193 * frame.c (make_frame): Omit redundant initialization.
12194 * window.c (make_parent_window): Use memset.
12195 (make_window): Omit redundant initialization.
12196 * process.c (make_process): Omit redundant initialization.
12197 * terminal.c (create_terminal): Likewise.
12198
12199 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
12200
12201 * term.c (delete_tty): Remove redundant call to memset.
12202
12203 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
12204
12205 * alloc.c: Remove build_string.
12206 * lisp.h: Define build_string as static inline. This provides
12207 a better opportunity to optimize away calls to strlen when the
12208 function is called with compile-time constant argument.
12209 * image.c (imagemagick_error): Convert to build_string.
12210 * w32proc.c (sys_spawnve): Likewise.
12211 * xterm.c (x_term_init): Likewise.
12212
12213 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
12214
12215 Use sprintf return value instead of invoking strlen on result.
12216 In the old days this wasn't portable, since some sprintf
12217 implementations returned char *. But they died out years ago and
12218 Emacs already assumes sprintf returns int.
12219 Similarly for float_to_string.
12220 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
12221 * ccl.c (ccl_driver):
12222 * character.c (string_escape_byte8):
12223 * data.c (Fnumber_to_string):
12224 * doprnt.c (doprnt):
12225 * print.c (print_object):
12226 * xdisp.c (message_dolog):
12227 * xfns.c (syms_of_xfns):
12228 Use sprintf or float_to_string result to avoid need to call strlen.
12229 * data.c (Fnumber_to_string):
12230 Use make_unibyte_string, since the string must be ASCII.
12231 * lisp.h, print.c (float_to_string): Now returns int length.
12232 * term.c (produce_glyphless_glyph):
12233 Use sprintf result rather than recomputing it.
12234
12235 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
12236 * Makefile.in (ALL_CFLAGS):
12237 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
12238 * gmalloc.c, regex.c: Include <config.h> unconditionally.
12239
12240 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
12241
12242 * dispextern.h (xstrcasecmp): Define to library function
12243 strcasecmp if available.
12244 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
12245
12246 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
12247
12248 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
12249 Avoid comma operator.
12250 * menu.c (push_submenu_start, push_submenu_end)
12251 (push_left_right_boundary, push_menu_pane): Likewise.
12252 * msdos.c (dos_rawgetc): Likewise.
12253
12254 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
12255
12256 * xfns.c (xic_create_fontsetname): Remove redundant calls
12257 to memset.
12258
12259 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
12260
12261 * gtkutil.c (get_utf8_string): Remove redundant assignment.
12262 sprintf already null-terminates its output.
12263
12264 * xfns.c (x_window): Remove redundant cast.
12265
12266 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
12267
12268 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
12269 `const char *' to `char *' to avoid compiler warning.
12270
12271 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
12272
12273 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
12274 instead of truncating it to 63 (admittedly a generous limit).
12275
12276 * process.c: Fix spelling and caps in comments.
12277
12278 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
12279
12280 * emacs.c (setpgrp): Remove definition, unused.
12281 * sysdep.c (setpgrp): Remove definition, not used in this file.
12282
12283 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
12284
12285 * makefile.w32-in: Update dependencies.
12286
12287 2012-06-24 Eli Zaretskii <eliz@gnu.org>
12288
12289 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
12290 (SYSTIME_H): Add nt/inc/sys/time.h.
12291
12292 * systime.h [WINDOWSNT]: Include sys/time.h.
12293
12294 * s/ms-w32.h (struct timespec): Definition moved from
12295 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
12296
12297 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
12298
12299 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
12300 * buffer.h (buffer_slot_type_mismatch):
12301 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
12302 * eval.c (unwind_to_catch):
12303 * image.c (my_png_error, my_error_exit):
12304 * keyboard.c (quit_throw_to_read_char, user_error)
12305 (Fexit_recursive_edit, Fabort_recursive_edit):
12306 * lisp.h (die, args_out_of_range, args_out_of_range_3)
12307 (wrong_type_argument, buffer_overflow, __executable_start)
12308 (memory_full, buffer_memory_full, string_overflow, Fthrow)
12309 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
12310 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
12311 (fatal):
12312 (child_setup) [!DOS_NT]:
12313 * lread.c (end_of_file_error, invalid_syntax):
12314 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
12315 * puresize.h (pure_write_error):
12316 * search.c (matcher_overflow):
12317 * sound.c (sound_perror, alsa_sound_perror):
12318 * sysdep.c, syssignal.h (croak):
12319 * term.c (maybe_fatal, vfatal):
12320 * textprop.c (text_read_only):
12321 * undo.c (user_error):
12322 * unexmacosx.c (unexec_error):
12323 * xterm.c (x_ins_del_lines, x_delete_glyphs):
12324 Use _Noreturn rather than NO_RETURN.
12325 No need for separate decl merely because of _Noreturn.
12326 * sound.c (sound_warning, parse_sound):
12327 Remove unnecessary forward decls.
12328
12329 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
12330
12331 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
12332 * lisp.h (WAIT_READING_MAX): New macro.
12333 * dispnew.c (Fsleep_for, sit_for):
12334 * keyboard.c (kbd_buffer_get_event):
12335 * process.c (Faccept_process_output):
12336 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
12337 This improves on the previous patch, which introduced a bug
12338 when time_t is unsigned and as wide as intmax_t.
12339 See <http://bugs.gnu.org/9000#51>.
12340
12341 2012-06-23 Eli Zaretskii <eliz@gnu.org>
12342
12343 * dispnew.c (sit_for, Fsleep_for):
12344 * keyboard.c (kbd_buffer_get_event):
12345 * process.c (Faccept_process_output): Avoid compiler warnings when
12346 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
12347
12348 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
12349
12350 * makefile.w32-in: Update dependencies.
12351
12352 * w32.c (ltime): Add return type and declare static.
12353 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
12354
12355 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
12356
12357 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
12358 Privately reported by Herbert J. Skuhra.
12359 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
12360 All uses changed.
12361 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
12362 not make_lisp_timeval, when the argument is of type EMACS_TIME.
12363
12364 2012-06-23 Eli Zaretskii <eliz@gnu.org>
12365
12366 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
12367 last argument of make_unibyte_string.
12368
12369 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
12370 language ID in the event parameters.
12371
12372 * w32term.c (w32_read_socket): Put the new keyboard codepage into
12373 event.code, not the obscure "character set ID".
12374
12375 2012-06-23 Chong Yidong <cyd@gnu.org>
12376
12377 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
12378
12379 2012-06-23 Eli Zaretskii <eliz@gnu.org>
12380
12381 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
12382 * w32.c (fdutimens): New function.
12383
12384 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
12385
12386 * s/ms-w32.h (pselect): Redirect to sys_select.
12387
12388 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
12389
12390 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
12391 in the logic of incrementing and decrementing the value of
12392 use_relocatable_buffers.
12393
12394 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
12395
12396 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
12397 Privately reported by Herbert J. Skuhra.
12398 [__FreeBSD__]: Remove "*/" typo after "#include".
12399 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
12400 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
12401 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
12402 Don't assume EMACS_TIME and struct timeval are the same type.
12403
12404 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
12405
12406 Support higher-resolution time stamps (Bug#9000).
12407 The time stamps are only nanosecond-resolution at the C level,
12408 since that's the best that any real-world system supports now.
12409 But they are picosecond-resolution at the Lisp level, as that's
12410 easy, and leaves room for future OS improvements.
12411
12412 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
12413 (LIBES): Use it.
12414
12415 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
12416 Don't get current time unless it's needed.
12417
12418 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
12419 now provides it if it's absent.
12420 (start_atimer): Port to higher-res time stamps.
12421 Check for time stamp overflow. Don't get current time more
12422 often than is needed.
12423
12424 * buffer.h (struct buffer): Buffer modtime now has high resolution.
12425 Include systime.h, not time.h.
12426 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
12427
12428 * dired.c: Include stat-time.h.
12429 (Ffile-attributes): File times now have higher resolution.
12430
12431 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
12432 (struct image): Timestamp now has higher resolution.
12433
12434 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
12435 has at least microseconds now. All uses removed.
12436 (update_frame, update_single_window, update_window, update_frame_1)
12437 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
12438 (duration_to_sec_usec): Remove; no longer needed.
12439
12440 * editfns.c (time_overflow): Now extern.
12441 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
12442 (float-time, Fformat_time_string, Fcurrent_time_string)
12443 (Fcurrent_time_zone): Accept and generate higher-resolution
12444 time stamps.
12445 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
12446 (decode_time_components, lisp_seconds_argument): New functions.
12447 (make_time): Now static.
12448 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
12449 Report an error if the time is invalid, rather than having the caller
12450 do that.
12451
12452 * fileio.c: Include <stat-time.h>
12453 (Fcopy_file): Copy higher-resolution time stamps.
12454 Prefer to set the time stamp via a file descriptor if that works.
12455 (Fset_file_times, Finsert_file_contents, Fwrite_region)
12456 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
12457 (Fvisited_file_modtime, Fset_visited_file_modtime):
12458 Support higher-resolution time stamps.
12459
12460 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
12461
12462 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
12463
12464 * image.c (prepare_image_for_display, clear_image_cache)
12465 (lookup_image): Port to higer-resolution time stamps.
12466
12467 * keyboard.c (start_polling, bind_polling_period):
12468 Check for time stamp overflow.
12469 (read_char, kbd_buffer_get_event, timer_start_idle)
12470 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
12471 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
12472 Port to higher-resolution time stamps. Do not assume time_t is signed.
12473 (decode_timer): New function. Timers are now vectors of length 9,
12474 not 8, to accommodate the picosecond component.
12475 (timer_check_2): Use it.
12476
12477 * nsterm.m (select_timeout, timeval_subtract): Remove.
12478 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
12479 as they're a bit more accurate and handle overflow better.
12480 (ns_select): Change prototype to be compatible with pselect.
12481 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
12482 * nsterm.h (ns_select): Adjust prototype.
12483
12484 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
12485 us-resolution time stamps.
12486 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
12487
12488 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
12489
12490 * lisp.h (time_overflow): New decl.
12491 (wait_reading_process_output): First arg is now intmax_t, not int,
12492 to accommodate larger waits.
12493
12494 * process.h (struct Lisp_Process.read_output_delay):
12495 Now counts nanoseconds, not microseconds.
12496 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
12497 EMACS_HAS_USECS.
12498 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
12499 (wait_reading_process_output):
12500 Port to ns-resolution time stamps.
12501 (Faccept_process_output, wait_reading_process_output):
12502 Check for time stamp overflow. Do not assume time_t is signed.
12503 (select_wrapper): Remove; we now use pselect.
12504 (Fprocess_attributes): Now generates ns-resolution time stamps.
12505
12506 * sysdep.c: Include utimens.h. Don't include utime.h
12507 or worry about struct utimbuf; gnulib does that for us now.
12508 (gettimeofday): Remove; gnulib provides a substitute.
12509 (make_timeval): New function.
12510 (set_file_times): Now sets ns-resolution time stamps.
12511 New arg FD; all uses changed.
12512 (time_from_jiffies, ltime_from_jiffies, get_up_time)
12513 (system_process_attributes):
12514 Now returns ns-resolution time stamp. All uses changed.
12515 Check for time stamp overflow.
12516
12517 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
12518 provides a substitute now.
12519
12520 * systime.h: Include timespec.h rather than sys/time.h and time.h,
12521 since it guarantees struct timespec.
12522 (EMACS_TIME): Now struct timespec, so that we can support
12523 ns-resolution time stamps.
12524 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
12525 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
12526 (EMACS_USECS): Remove.
12527 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
12528 so multiply the arg by 1000 before storing it.
12529 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
12530 New macros.
12531 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
12532 Port to ns-resolution time stamps.
12533 (EMACS_TIME_NEG_P): Remove; replaced by....
12534 (EMACS_TIME_SIGN): New macro.
12535 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
12536 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
12537 (set_file_times, make_time, lisp_time_argument): Adjust signature.
12538 (make_timeval, make_lisp_time, decode_time_components): New decls.
12539 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
12540 that it mishandled time_t overflow. You can't compare by subtracting!
12541 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
12542 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
12543
12544 * term.c: Include <sys/time.h>.
12545 (timeval_to_Time): New function, for proper overflow wraparound.
12546 (term_mouse_position, term_mouse_click): Use it.
12547
12548 * undo.c (record_first_change): Support higher-resolution time stamps
12549 in the undo buffer.
12550 (Fprimitive_undo): Use them when restoring time stamps.
12551
12552 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
12553 (w32_get_internal_run_time):
12554 Port to higher-resolution Emacs time stamps.
12555 (ltime): Now accepts single 64-bit integer, as that's more convenient
12556 for callers.
12557
12558 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
12559
12560 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
12561 for compatibility with pselect. Support ns-resolution time stamps.
12562
12563 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
12564
12565 * xselect.c (wait_for_property_change, x_get_foreign_selection):
12566 Check for time stamp overflow, and support ns-resolution time stamps.
12567
12568 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
12569 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
12570 (timeval_subtract): Remove; no longer needed.
12571 (XTflash, XTring_bell, x_wait_for_event):
12572 Port to ns-resolution time stamps. Don't assume time_t is signed.
12573
12574 2012-06-22 Chong Yidong <cyd@gnu.org>
12575
12576 * xdisp.c (x_consider_frame_title): Revert last change.
12577
12578 2012-06-22 Eli Zaretskii <eliz@gnu.org>
12579
12580 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
12581 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
12582 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
12583 staticidx goes up to 1597 out of 1600 = 0x640.)
12584
12585 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
12586
12587 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
12588 Otherwise, the umask might be mistakenly 0 while handling input signals.
12589
12590 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
12591
12592 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
12593
12594 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
12595
12596 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
12597 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
12598 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
12599 access to `contents' member of Lisp_Vector objects with AREF and ASET
12600 where appropriate.
12601
12602 2012-06-19 Chong Yidong <cyd@gnu.org>
12603
12604 * frame.c (delete_frame): When selecting a frame on a different
12605 text terminal, do not alter the terminal's top-frame.
12606
12607 * xdisp.c (format_mode_line_unwind_data): Record the target
12608 frame's selected window and its terminal's top-frame.
12609 (unwind_format_mode_line): Restore them.
12610 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
12611 Callers changed.
12612 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
12613 since tty frames can be explicitly named.
12614 (prepare_menu_bars): Likewise.
12615
12616 * term.c (Ftty_top_frame): New function.
12617
12618 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
12619
12620 Port byte-code-meter to modern targets.
12621 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
12622 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
12623 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
12624 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
12625 (METER_1, METER_2): Simplify.
12626
12627 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
12628
12629 * data.c (Fdefalias): Return `symbol' (bug#11686).
12630
12631 2012-06-18 Martin Rudalics <rudalics@gmx.at>
12632
12633 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
12634 gets killed during executing of this function (Bug#11665).
12635 Try to always return Qt when the buffer has been actually killed.
12636 (Vkill_buffer_query_functions): In doc-string say that functions
12637 run by this hook should not change the current buffer.
12638
12639 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
12640
12641 Fix recently-introduced process.c problems found by static checking.
12642 * process.c (write_queue_push, write_queue_pop, send_process):
12643 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
12644 (write_queue_pop): Fix pointer signedness problem.
12645 (send_process): Remove unused local.
12646
12647 2012-06-17 Chong Yidong <cyd@gnu.org>
12648
12649 * xdisp.c (redisplay_internal): No need to redisplay terminal
12650 frames that are not on top.
12651
12652 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
12653
12654 * process.c (make_process): Initialize write_queue.
12655 (write_queue_push, write_queue_pop): New functions.
12656 (send_process): Use them to maintain correct ordering of process
12657 writes (Bug#10815).
12658
12659 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
12660
12661 * lisp.h (eassert): Assume C89 or later.
12662 This removes the need for CHECK.
12663 (CHECK): Remove. Its comments about always evaluating its
12664 argument were confusing, as 'eassert' typically does not evaluate
12665 its argument.
12666
12667 * coding.c (produce_chars): Use ptrdiff_t, not int.
12668
12669 * xterm.c (x_draw_underwave): Check for integer overflow.
12670 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
12671
12672 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
12673
12674 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
12675 referenced (Bug#11583).
12676
12677 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
12678
12679 Implement wave-style variant of underlining.
12680 * dispextern.h (face_underline_type): New enum.
12681 (face): Add field for underline type.
12682 * nsterm.m (ns_draw_underwave): New function.
12683 (ns_draw_text_decoration): Use it.
12684 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
12685 New functions.
12686 (x_draw_glyph_string): Use them.
12687 * xfaces.c (Qline, Qwave): New Lisp objects.
12688 (check_lface_attrs, merge_face_ref)
12689 (Finternal_set_lisp_face_attribute, realize_x_face):
12690 Handle wave-style underline face attributes.
12691 * xterm.c (x_draw_underwave): New function.
12692 (x_draw_glyph_string): Use it.
12693
12694 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
12695
12696 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
12697 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
12698 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
12699 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
12700 ($(BLD)/w32select.$(O)): Update dependencies.
12701
12702 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
12703
12704 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
12705 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
12706 * character.c (_fetch_multibyte_char_p): Remove.
12707 * alloc.c: Include "character.h" before "buffer.h".
12708 * bidi.c: Likewise.
12709 * buffer.c: Likewise.
12710 * bytecode.c: Likewise.
12711 * callint.c: Likewise.
12712 * callproc.c: Likewise.
12713 * casefiddle.c: Likewise.
12714 * casetab.c: Likewise.
12715 * category.c: Likewise.
12716 * cmds.c: Likewise.
12717 * coding.c: Likewise.
12718 * composite.c: Likewise.
12719 * dired.c: Likewise.
12720 * dispnew.c: Likewise.
12721 * doc.c: Likewise.
12722 * dosfns.c: Likewise.
12723 * editfns.c: Likewise.
12724 * emacs.c: Likewise.
12725 * fileio.c: Likewise.
12726 * filelock.c: Likewise.
12727 * font.c: Likewise.
12728 * fontset.c: Likewise.
12729 * fringe.c: Likewise.
12730 * indent.c: Likewise.
12731 * insdel.c: Likewise.
12732 * intervals.c: Likewise.
12733 * keyboard.c: Likewise.
12734 * keymap.c: Likewise.
12735 * lread.c: Likewise.
12736 * macros.c: Likewise.
12737 * marker.c: Likewise.
12738 * minibuf.c: Likewise.
12739 * nsfns.m: Likewise.
12740 * nsmenu.m: Likewise.
12741 * print.c: Likewise.
12742 * process.c: Likewise.
12743 * regex.c: Likewise.
12744 * region-cache.c: Likewise.
12745 * search.c: Likewise.
12746 * syntax.c: Likewise.
12747 * term.c: Likewise.
12748 * textprop.c: Likewise.
12749 * undo.c: Likewise.
12750 * unexsol.c: Likewise.
12751 * w16select.c: Likewise.
12752 * w32fns.c: Likewise.
12753 * w32menu.c: Likewise.
12754 * window.c: Likewise.
12755 * xdisp.c: Likewise.
12756 * xfns.c: Likewise.
12757 * xmenu.c: Likewise.
12758 * xml.c: Likewise.
12759 * xselect.c: Likewise.
12760
12761 2012-06-16 Eli Zaretskii <eliz@gnu.org>
12762
12763 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
12764 If all the glyphs of the glyph row came from strings, and we have no
12765 cursor positioning clues, put the cursor on the first glyph of the
12766 row.
12767 (handle_face_prop): Use chunk-relative overlay string index when
12768 indexing into it->string_overlays array. (Bug#11653)
12769 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
12770 the rightmost. (Bug#11720)
12771
12772 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
12773
12774 * category.h (CHAR_HAS_CATEGORY): Define as inline.
12775 (CATEGORY_MEMBER): Enforce 1/0 value.
12776 * category.c (_temp_category_set): Remove.
12777
12778 2012-06-16 Eli Zaretskii <eliz@gnu.org>
12779
12780 * window.c (Fdelete_other_windows_internal)
12781 (Fdelete_window_internal): Don't access frame's mouse highlight
12782 info of the initial frame. (Bug#11677)
12783
12784 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
12785
12786 * .gdbinit (xgetint): Fix recently-introduced paren typo.
12787 Assume USE_2_TAGS_FOR_INTS.
12788 (xreload): Adjust $tagmask width to match recent lisp.h change.
12789
12790 Simplify lisp.h in minor ways that should not affect code.
12791 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
12792 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
12793 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
12794 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
12795 (INTTYPEBITS): New macro, for clarity.
12796 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
12797 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
12798 Simplify now that USE_LSB_TAG is always defined.
12799 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
12800 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
12801
12802 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
12803
12804 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
12805
12806 2012-06-13 Glenn Morris <rgm@gnu.org>
12807
12808 * s/bsd-common.h (BSD4_3):
12809 * s/usg5-4-common.h (USG5_4): No longer define; unused.
12810
12811 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
12812
12813 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
12814 instead of union.
12815 (XLI, XIL): Define.
12816 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
12817 Use them.
12818 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
12819 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
12820 * alloc.c (widen_to_Lisp_Object): Remove.
12821 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
12822 * frame.c (delete_frame): Remove outdated comment.
12823 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
12824 USE_LISP_UNION_TYPE.
12825 (Fw32_unregister_hot_key): Likewise.
12826 (Fw32_toggle_lock_key): Likewise.
12827 * w32menu.c (add_menu_item): Likewise.
12828 (w32_menu_display_help): Use XIL instead of checking
12829 USE_LISP_UNION_TYPE.
12830 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
12831 (init_heap): Likewise.
12832 * w32term.c (w32_read_socket): Update comment.
12833
12834 2012-06-13 Glenn Morris <rgm@gnu.org>
12835
12836 * s/usg5-4-common.h, src/s/unixware.h:
12837 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
12838
12839 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
12840
12841 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
12842
12843 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
12844 * alloc.c (make_number) [!defined make_number]:
12845 Remove, as lisp.h always defines this now.
12846 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
12847 (roundup_size): Verify that it is a power of 2.
12848 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
12849 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
12850 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
12851 -DUSE_LSB_TAG=0, to override the automatically-selected default.
12852 USE_LSB_TAG now is always defined to be either 0 or 1.
12853 All uses changed.
12854 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
12855 code works fine either way, and efficiency is not a concern here,
12856 as the union type is for debugging, not for production.
12857 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
12858 Use an inline function on all platforms when using the union type,
12859 since this is simpler and 'static inline' can be used portably
12860 within Emacs now.
12861 (LISP_INITIALLY_ZERO): New macro.
12862 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
12863 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
12864
12865 2012-06-12 Glenn Morris <rgm@gnu.org>
12866
12867 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
12868
12869 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
12870
12871 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
12872 Move BROKEN_SIGIO to configure.
12873
12874 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
12875 Move NO_TERMIO to configure.
12876
12877 2012-06-12 Chong Yidong <cyd@gnu.org>
12878
12879 * image.c (imagemagick_load_image): Use MagickFlattenImage if
12880 MagickMergeImageLayers is undefined. Use pixel pusher loop if
12881 MagickExportImagePixels is undefined.
12882
12883 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
12884
12885 * image.c (imagemagick_load_image): Remove unused label.
12886
12887 2012-06-11 Glenn Morris <rgm@gnu.org>
12888
12889 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
12890 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
12891 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
12892 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
12893
12894 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
12895
12896 * alloc.c (make_byte_code): New function.
12897 (Fmake_byte_code): Use it. Don't purify here.
12898 * lread.c (read1): Use it as well to avoid extra allocation.
12899
12900 2012-06-11 Chong Yidong <cyd@gnu.org>
12901
12902 * image.c (imagemagick_load_image): Implement transparency.
12903
12904 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
12905
12906 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
12907 account for preceding backslashes. (Bug#11663)
12908
12909 2012-06-09 Chong Yidong <cyd@gnu.org>
12910
12911 * term.c: Support italics in capable terminals (Bug#9652).
12912 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
12913 (turn_on_face): Output using TS_enter_italic_mode if available.
12914 Don't handle unused blinking and alt-charset cases.
12915 (turn_off_face): Handle italic case; discard unused tty_blinking_p
12916 and tty_alt_charset_p cases.
12917 (tty_capable_p, init_tty): Support italics.
12918
12919 * termchar.h (struct tty_display_info): Add field for italics.
12920 Remove unused blink field.
12921
12922 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
12923 Handle slant.
12924
12925 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
12926 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
12927 tty_alt_charset_p. Add tty_italic_p.
12928
12929 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
12930
12931 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
12932 dbus_type_is_basic if available.
12933 (xd_extract_signed, xd_extract_unsigned): Rename from
12934 extract_signed and extract_unsigned, respectively. Adapt callers.
12935
12936 2012-06-09 Chong Yidong <cyd@gnu.org>
12937
12938 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
12939
12940 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
12941 case (Bug#9752).
12942
12943 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
12944
12945 * xdisp.c (vmessage): Treat frame message as multibyte.
12946 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
12947 would generate the diagnostic "Making \302\247 buffer-local while
12948 let-bound!".
12949
12950 2012-06-08 Eli Zaretskii <eliz@gnu.org>
12951
12952 * dispnew.c (showing_window_margins_p): Undo last change, which
12953 was done due to an inadvertent commit.
12954 (adjust_frame_glyphs_for_frame_redisplay): Do call
12955 showing_window_margins_p.
12956
12957 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
12958
12959 * eval.c (Fmake_var_non_special): New primitive.
12960 (syms_of_eval): Defsubr it.
12961 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
12962
12963 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
12964
12965 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
12966 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
12967
12968 2012-06-08 Eli Zaretskii <eliz@gnu.org>
12969
12970 * alloc.c (allocate_vectorlike): Fix last change.
12971
12972 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
12973
12974 Block-based vector allocation of small vectors.
12975 * lisp.h (struct vectorlike_header): New field `nbytes',
12976 adjust comment accordingly.
12977 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
12978 to denote vector blocks. Adjust users (live_vector_p,
12979 mark_maybe_pointer, valid_lisp_object_p) accordingly.
12980 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
12981 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES)
12982 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX)
12983 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST)
12984 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
12985 (roundup_size): New constant.
12986 (struct vector_block): New data type.
12987 (vector_blocks, vector_free_lists, zero_vector): New variables.
12988 (all_vectors): Rename to `large_vectors'.
12989 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
12990 (sweep_vectors): New functions.
12991 (allocate_vectorlike): Return `zero_vector' as the only vector of
12992 0 items. Allocate new vector from block if vector size is less than
12993 or equal to VBLOCK_BYTES_MAX.
12994 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
12995 (init_alloc_once): Add call to init_vectors.
12996
12997 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
12998
12999 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
13000
13001 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
13002
13003 * doprnt.c (doprnt): Truncate multibyte char correctly.
13004 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
13005 would mishandle a string argument "Xc" if X was a multibyte
13006 character of length 2: it would truncate after X's first byte
13007 rather than including all of X.
13008
13009 2012-06-06 Chong Yidong <cyd@gnu.org>
13010
13011 * buffer.c (word_wrap): Doc fix.
13012
13013 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
13014
13015 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
13016
13017 2012-06-03 Glenn Morris <rgm@gnu.org>
13018
13019 * xdisp.c (tool-bar-style): Doc fix.
13020
13021 2012-06-03 Ulrich Müller <ulm@gentoo.org>
13022
13023 * Makefile.in (PAXCTL): Define.
13024 (temacs$(EXEEXT)): Disable memory randomization for the temacs
13025 binary via PaX flags if the paxctl utility is available.
13026 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
13027 Restore PaX flags to their default. (Bug#11398)
13028
13029 2012-06-03 Chong Yidong <cyd@gnu.org>
13030
13031 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
13032 buffer (Bug#11226).
13033
13034 2012-06-03 Chong Yidong <cyd@gnu.org>
13035
13036 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
13037 (note_mode_line_or_margin_highlight): If there is no help echo,
13038 use mode-line-default-help-echo. Handle the case where the mouse
13039 position is past the end of the mode line string.
13040
13041 * buffer.c (buffer_local_value_1): New function, split from
13042 Fbuffer_local_value; can return Qunbound.
13043 (Fbuffer_local_value): Use it.
13044 (Vmode_line_format): Docstring tweaks.
13045
13046 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
13047
13048 * sysdep.c (system_process_attributes): Improve comment.
13049
13050 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13051
13052 * keyboard.c: Export real-this-command to Elisp.
13053 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
13054 and DEFVAR it. Update all users.
13055
13056 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
13057
13058 * minibuf.c (Fassoc_string): Remove duplicate declaration.
13059
13060 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
13061 Convert pctcpu and pctmem to Lisp float properly.
13062 Let the compiler fold better, as 100.0/0x8000 is exact.
13063
13064 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
13065
13066 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
13067 cons_block.
13068
13069 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
13070
13071 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
13072
13073 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
13074
13075 For a 'struct window', replace some Lisp_Object fields to
13076 bitfields where appropriate, remove unused fields.
13077 * window.h (struct window): Remove unused 'last_mark_x' and
13078 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
13079 change its type from Lisp_Object to bitfield.
13080 Change type of 'force_start', 'optional_new_start',
13081 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
13082 fields from Lisp_Object to bitfield. Adjust users accordingly.
13083
13084 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
13085
13086 Pacify gcc -Wdouble-precision when using Xaw.
13087 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
13088 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
13089 Use 'float' consistently, rather than 'float' in most places
13090 and 'double' in a couple of places.
13091
13092 2012-05-31 Eli Zaretskii <eliz@gnu.org>
13093
13094 * xdisp.c (handle_stop): Detect whether we have overlay strings
13095 loaded by testing it->current.overlay_string_index to be
13096 non-negative, instead of checking whether n_overlay_strings is
13097 positive. (Bug#11587)
13098
13099 2012-05-31 Chong Yidong <cyd@gnu.org>
13100
13101 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
13102
13103 * doc.c (Fsubstitute_command_keys): Doc fix.
13104
13105 2012-05-31 Eli Zaretskii <eliz@gnu.org>
13106
13107 * search.c (search_buffer): Remove calls to
13108 r_alloc_inhibit_buffer_relocation, as it is now called by
13109 maybe_unify_char, which was the cause of relocation of buffer text
13110 in bug#11519.
13111
13112 2012-05-31 Eli Zaretskii <eliz@gnu.org>
13113
13114 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
13115 for the duration of call to load_charset, to avoid problems with
13116 callers of maybe_unify_char that access buffer text through C
13117 pointers.
13118
13119 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
13120 decrement the inhibition flag, instead of just setting or
13121 resetting it.
13122
13123 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
13124
13125 Remove obsolete '#define static' cruft.
13126 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
13127 This #undef was "temporary" in 2000; it is no longer needed
13128 now that '#define static' has gone away.
13129 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
13130 (gray_bitmap_bits): Remove; no longer needed.
13131 All uses replaced with definiens.
13132 * xterm.c: Include "bitmaps/gray.xbm".
13133
13134 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
13135
13136 Clean up __executable_start, monstartup when --enable-profiling.
13137 The following changes affect the code only when profiling.
13138 * dispnew.c (__executable_start): Rename from safe_bcopy.
13139 Define only on platforms that need it.
13140 * emacs.c: Include <sys/gmon.h> when profiling.
13141 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
13142 (__executable_start): Remove decl, since lisp.h does it now.
13143 (safe_bcopy): Remove decl; no longer has that name.
13144 (main): Coalesce #if into single bit of code, for simplicity.
13145 Cast pointers to uintptr_t, since standard libraries want integers
13146 and not pointers.
13147 * lisp.h (__executable_start): New decl.
13148
13149 2012-05-31 Glenn Morris <rgm@gnu.org>
13150
13151 * image.c (Fimagemagick_types): Doc fix.
13152
13153 2012-05-30 Jim Meyering <meyering@redhat.com>
13154
13155 * callproc.c (Fcall_process_region): Include directory component
13156 in mkstemp error message (Bug#11586).
13157
13158 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
13159
13160 * alloc.c, lisp.h (make_pure_vector): Now static.
13161
13162 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13163
13164 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
13165 Move to byte-run.el.
13166 (Fautoload): Do the hash-doc more carefully.
13167 * data.c (Fdefalias): Purify definition, except for keymaps.
13168 (Qdefun): Move from eval.c.
13169 * lisp.h (Qdefun): Remove.
13170 * lread.c (read1): Tiny simplification.
13171
13172 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
13173
13174 Do not create empty overlays with the evaporate property (Bug#9642).
13175 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
13176 Bug#9642, but explicitly check that the buffer the overlay would
13177 be moved to is live and rearrange lines to make sure that errors
13178 will not put the overlay in an inconsistent state.
13179 (Fdelete_overlay): Cosmetics.
13180
13181 2012-05-28 Eli Zaretskii <eliz@gnu.org>
13182
13183 * w32term.c (my_bring_window_to_top): New function.
13184 (x_raise_frame): Use handle returned by DeferWindowPos, which
13185 could be different from the original one.
13186 Call my_bring_window_to_top instead of my_set_foreground_window.
13187 (Bug#11513)
13188
13189 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
13190 by calling BringWindowToTop.
13191
13192 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
13193 (WM_EMACS_END): Increase by one.
13194
13195 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
13196
13197 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
13198 This avoids undefined behavior that might cause the eassert
13199 to not catch an out-of-range value.
13200
13201 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
13202
13203 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
13204 Update dependencies.
13205
13206 2012-05-27 Eli Zaretskii <eliz@gnu.org>
13207
13208 * bidi.c (bidi_mirror_char): Fix last change.
13209
13210 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
13211
13212 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
13213 when referring to sectname field in printf format.
13214
13215 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
13216
13217 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
13218 Only r_alloc_inhibit_buffer_relocation needed to be added;
13219 the others were already declared.
13220
13221 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
13222 before checking whether it's out of range. Put the check inside
13223 eassert. See
13224 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
13225
13226 2012-05-27 Ken Brown <kbrown@cornell.edu>
13227
13228 * callproc.c (Fcall_process): Restore a line that was accidentally
13229 commented out in the 2011-02-13 change (bug#11547).
13230
13231 2012-05-27 Eli Zaretskii <eliz@gnu.org>
13232
13233 * lisp.h [REL_ALLOC]: Add prototypes for external functions
13234 defined on ralloc.c.
13235
13236 * buffer.c [REL_ALLOC]: Remove prototypes of
13237 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
13238 they are now on lisp.h.
13239
13240 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
13241
13242 * search.c (search_buffer): Use it to inhibit relocation of buffer
13243 text while re_search_2 is doing its job, because re_search_2 is
13244 passed C pointers to buffer text. (Bug#11519)
13245
13246 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
13247 Update value to 24.
13248
13249 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
13250 state after an additional call to move_it_in_display_line_to, keep
13251 the values of it->max_ascent and it->max_descent found for the
13252 entire line.
13253 (pos_visible_p): Revert the comparison against bottom_y to what it
13254 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
13255 (Bug#11464)
13256
13257 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
13258
13259 Fix coding-related core dumps with gcc -ftrapv.
13260 The code was computing A - B, where A and B are pointers, and B is
13261 random garbage. This can lead to core dumps on platforms that
13262 have special pointer registers, and it also leads to core dumps on
13263 x86-64 when compiled with gcc -ftrapv. The fix is to compute
13264 A - B only when B is initialized properly.
13265 * coding.c (coding_set_source, coding_set_destination): Return void.
13266 (coding_change_source, coding_change_destinations): New functions,
13267 with the old behaviors of coding_set_source and coding_set_destination.
13268 All callers that need an offset changed to use these new functions.
13269
13270 2012-05-26 Glenn Morris <rgm@gnu.org>
13271
13272 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
13273
13274 2012-05-26 Eli Zaretskii <eliz@gnu.org>
13275
13276 Extend mouse support on W32 text-mode console.
13277 * xdisp.c (draw_row_with_mouse_face):
13278 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
13279
13280 * w32console.c: Include window.h.
13281 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
13282 New functions.
13283 (initialize_w32_display): Initialize mouse-highlight data.
13284
13285 * w32inevt.c: Include termchar.h and window.h.
13286 (do_mouse_event): Support mouse-autoselect-window. When the mouse
13287 moves, call note_mouse_highlight. If help_echo changed, call
13288 gen_help_event to produce help-echo message in the echo area.
13289 Call clear_mouse_face if mouse_face_hidden is set in the mouse
13290 highlight info.
13291
13292 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
13293
13294 * lread.c (read1): Simplify slightly to avoid an overflow warning
13295 with GCC 4.7.0 on x86-64.
13296
13297 2012-05-26 Eli Zaretskii <eliz@gnu.org>
13298
13299 * bidi.c (bidi_mirror_char): Revert last change: an int is
13300 definitely wide enough here.
13301
13302 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
13303
13304 Fix integer width and related bugs (Bug#9874).
13305 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
13306 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
13307 (string_bytes, check_sblock, allocate_string_data):
13308 (compact_small_strings, Fmake_bool_vector, make_string)
13309 (make_unibyte_string, make_multibyte_string)
13310 (make_string_from_bytes, make_specified_string)
13311 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
13312 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
13313 (mark_vectorlike):
13314 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13315 (allocate_pseudovector):
13316 Use int, not EMACS_INT, where int is wide enough.
13317 (inhibit_garbage_collection, Fgarbage_collect):
13318 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13319 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
13320 int might not be wide enough.
13321 (bidi_cache_search, bidi_cache_find, bidi_init_it)
13322 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
13323 (bidi_at_paragraph_end, bidi_find_paragraph_start)
13324 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
13325 (bidi_level_of_next_char, bidi_move_to_visually_next):
13326 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13327 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
13328 (Fkill_buffer, Fset_buffer_major_mode)
13329 (advance_to_char_boundary, Fbuffer_swap_text)
13330 (Fset_buffer_multibyte, overlays_at, overlays_in)
13331 (overlay_touches_p, struct sortvec, record_overlay_string)
13332 (overlay_strings, recenter_overlay_lists)
13333 (adjust_overlays_for_insert, adjust_overlays_for_delete)
13334 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
13335 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
13336 (Foverlay_recenter, last_overlay_modification_hooks_used)
13337 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
13338 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13339 (validate_region): Omit unnecessary test for b <= e,
13340 since that's guaranteed by the previous test.
13341 (adjust_overlays_for_delete): Avoid pos + length overflow.
13342 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
13343 (report_overlay_modification):
13344 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13345 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
13346 Omit pointer cast, which isn't needed anyway, and doesn't work
13347 after the EMACS_INT -> ptrdiff_t change.
13348 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
13349 * buffer.h: Adjust decls to match defn changes elsewhere.
13350 (struct buffer_text, struct buffer):
13351 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13352 Use EMACS_INT, not int, where int might not be wide enough.
13353 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
13354 not int, to avoid needless 32-bit limit on 64-bit hosts.
13355 (exec_byte_code): Use tighter memory-full test, one that checks
13356 for alloca overflow. Don't compute the address of the object just
13357 before an array, as that's not portable. Use EMACS_INT, not
13358 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
13359 * callint.c (Fcall_interactively):
13360 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13361 * callproc.c (call_process_kill, Fcall_process):
13362 Don't assume pid_t fits into an Emacs fixnum.
13363 (call_process_cleanup, Fcall_process, child_setup):
13364 Don't assume pid_t fits into int.
13365 (call_process_cleanup, Fcall_process, delete_temp_file)
13366 (Fcall_process_region):
13367 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13368 (Fcall_process): Simplify handling of volatile integers.
13369 Use int, not EMACS_INT, where int will do.
13370 * casefiddle.c (casify_object, casify_region, operate_on_word)
13371 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
13372 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13373 (casify_object): Avoid integer overflow when overallocating buffer.
13374 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
13375 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
13376 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
13377 * category.h (CATEGORYP): Don't assume arg is nonnegative.
13378 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
13379 integers are now checked earlier. All uses replaced with XINT.
13380 (ccl_driver):
13381 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13382 For CCL_MapSingle, check that content and value are in int range.
13383 (ccl_driver, Fregister_code_conversion_map):
13384 Check that Vcode_version_map_vector is a vector.
13385 (resolve_symbol_ccl_program): Check that vector header is in range.
13386 Always copy the vector, so that we can check its contents reliably
13387 now rather than having to recheck each instruction as it's being
13388 executed. Check that vector words fit in 'int'.
13389 (ccl_get_compiled_code, Fregister_ccl_program)
13390 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
13391 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
13392 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
13393 contents are in range.
13394 (Fccl_execute_on_string): Check that status is in range.
13395 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
13396 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
13397 Accept and return EMACS_INT, not int, because callers can pass values
13398 out of 'int' range.
13399 (c_string_width, strwidth, lisp_string_width, chars_in_text)
13400 (multibyte_chars_in_text, parse_str_as_multibyte)
13401 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
13402 (str_as_unibyte, str_to_unibyte, string_count_byte8)
13403 (string_escape_byte8, Fget_byte):
13404 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13405 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
13406 avoid mishandling large integers.
13407 * character.h: Adjust decls to match defn changes elsewhere.
13408 * charset.c (load_charset_map_from_file, find_charsets_in_text)
13409 (Ffind_charset_region):
13410 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13411 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
13412 (load_charset_map_from_vector, Fdefine_charset_internal):
13413 Don't assume fixnum fits in int.
13414 (load_charset_map_from_vector, Fmap_charset_chars):
13415 Remove now-unnecessary CHECK_NATNUMs.
13416 (Fdefine_charset_internal): Check ranges here, more carefully.
13417 Don't rely on undefined behavior with signed left shift overflow.
13418 Don't assume unsigned int fits into fixnum, or that fixnum fits
13419 into unsigned int. Don't require max_code to be a valid fixnum;
13420 that's not true for gb10830 4-byte on a 32-bit host. Allow
13421 invalid_code to be a cons, for the same reason. Require code_offset
13422 to be a character. Avoid int overflow if max_char is close
13423 to INT_MAX.
13424 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
13425 this is intended anyway and avoids some undefined behavior.
13426 (load_charset_map): Pass unsigned, not int, as 2nd arg of
13427 INDEX_TO_CODE_POINT, as that's what it expects.
13428 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
13429 * charset.h (DECODE_CHAR): Return int, not unsigned;
13430 this is what was intended anyway, and it avoids undefined behavior.
13431 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
13432 integer-overflow issues.
13433 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
13434 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
13435 where the argument is EMACS_INT, and this behavior is not intended.
13436 * chartab.c (Fmake_char_table, Fset_char_table_range)
13437 (uniprop_get_decoder, uniprop_get_encoder):
13438 Don't assume fixnum fits in int.
13439 * cmds.c (move_point): New function, that does the gist of
13440 Fforward_char and Fbackward_char, but does so while checking
13441 for integer overflow more accurately.
13442 (Fforward_char, Fbackward_char): Use it.
13443 (Fforward_line, Fend_of_line, internal_self_insert)
13444 (internal_self_insert):
13445 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13446 Fix a FIXME, by checking for integer overflow when calculating
13447 target_clm and actual_clm.
13448 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
13449 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
13450 (ASSURE_DESTINATION, coding_alloc_by_realloc)
13451 (coding_alloc_by_making_gap, alloc_destination)
13452 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
13453 (encode_coding_utf_16, detect_coding_emacs_mule)
13454 (decode_coding_emacs_mule, encode_coding_emacs_mule)
13455 (detect_coding_iso_2022, decode_coding_iso_2022)
13456 (encode_invocation_designation, encode_designation_at_bol)
13457 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
13458 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
13459 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
13460 (encode_coding_ccl, encode_coding_raw_text)
13461 (detect_coding_charset, decode_coding_charset)
13462 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
13463 (produce_composition, produce_charset, produce_annotation)
13464 (decode_coding, handle_composition_annotation)
13465 (handle_charset_annotation, consume_chars, decode_coding_gap)
13466 (decode_coding_object, encode_coding_object, detect_coding_system)
13467 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
13468 (code_convert_region, code_convert_string)
13469 (Fdefine_coding_system_internal)
13470 (coding_set_source, coding_set_destination):
13471 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13472 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
13473 (Fdefine_coding_system_internal):
13474 Don't assume fixnums fit in int.
13475 (decode_coding_gap, decode_coding_object, encode_coding_object)
13476 (Fread_coding_system, Fdetect_coding_region)
13477 (Funencodable_char_position, Fcheck_coding_systems_region)
13478 (get_translation, handle_composition_annotation, consume_chars):
13479 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13480 (consume_chars): Rewrite to not calculate an address outside buffer.
13481 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
13482 Don't access memory outside of the args array.
13483 (Fdefine_coding_system_internal): Check for charset-id overflow.
13484 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
13485 result of ENCODE_CHAR.
13486 * coding.h: Adjust decls to match defn changes elsewhere.
13487 (struct coding_system):
13488 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13489 * composite.c (get_composition_id, find_composition)
13490 (run_composition_function, update_compositions)
13491 (compose_text, composition_gstring_put_cache)
13492 (composition_gstring_p, composition_gstring_width)
13493 (fill_gstring_header, fill_gstring_body, autocmp_chars)
13494 (composition_compute_stop_pos, composition_reseat_it)
13495 (composition_update_it, struct position_record)
13496 (find_automatic_composition, composition_adjust_point)
13497 (Fcomposition_get_gstring, Ffind_composition_internal):
13498 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13499 (update_compositions):
13500 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13501 * composite.h: Adjust decls to match defn changes elsewhere.
13502 (struct composition):
13503 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13504 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
13505 Do not attempt to compute the address of the object just before a
13506 buffer; this is not portable.
13507 (Faref, Faset):
13508 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13509 (Faset): Use int, not EMACS_INT, where int is wide enough.
13510 (Fstring_to_number): Don't assume fixnums fit in int.
13511 (Frem): Don't assume arg is nonnegative.
13512 * dbusbind.c (xd_append_arg): Check for integers out of range.
13513 (Fdbus_call_method): Don't overflow the timeout int.
13514 (extract_signed, extract_unsigned): New functions.
13515 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
13516 (xd_get_connection_references): Return ptrdiff_t, not int.
13517 All uses changed.
13518 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
13519 (xd_read_message_1):
13520 Use int, not unsigned, where the dbus API uses int.
13521 (Fdbus_message_internal): Don't overflow mtype.
13522 (syms_of_dbusbind): Allocate right-sized buffer for integers.
13523 * dired.c (directory_files_internal, file_name_completion, scmp)
13524 (file_name_completion_stat):
13525 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13526 (file_name_completion): Don't overflow matchcount.
13527 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
13528 * dispextern.h: Adjust decls to match defn changes elsewhere.
13529 (struct text_pos, struct glyph, struct bidi_saved_info)
13530 (struct bidi_string_data, struct bidi_it, struct composition_it)
13531 (struct it):
13532 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13533 (struct display_pos, struct composition_it, struct it):
13534 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13535 * dispnew.c (increment_matrix_positions)
13536 (increment_row_positions, mode_line_string)
13537 (marginal_area_string):
13538 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13539 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
13540 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13541 (duration_to_sec_usec): New function, to check for overflow better.
13542 (Fsleep_for, sit_for): Use it.
13543 * doc.c (get_doc_string, store_function_docstring):
13544 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13545 (get_doc_string, Fsnarf_documentation):
13546 Use int, not EMACS_INT, where int is wide enough.
13547 (get_doc_string):
13548 Use SAFE_ALLOCA, not alloca.
13549 Check for overflow when converting EMACS_INT to off_t.
13550 * doprnt.c (doprnt):
13551 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13552 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
13553 Don't assume uid_t fits into fixnum.
13554 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
13555 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
13556 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
13557 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
13558 (general_insert_function)
13559 (Finsert_char, make_buffer_string, make_buffer_string_both)
13560 (update_buffer_properties, Fbuffer_substring)
13561 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
13562 (Fsubst_char_in_region, check_translation)
13563 (Ftranslate_region_internal, save_restriction_restore, Fformat)
13564 (transpose_markers, Ftranspose_regions):
13565 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13566 (clip_to_bounds): Move to lisp.h as an inline function).
13567 (Fconstrain_to_field): Don't assume integers are nonnegative.
13568 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
13569 (Fsubst_char_in_region, Fsave_restriction):
13570 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13571 (Femacs_pid): Don't assume pid_t fits into fixnum.
13572 (lo_time): Use int, not EMACS_INT, when int suffices.
13573 (lisp_time_argument): Check for usec out of range.
13574 (Fencode_time): Don't assume fixnum fits in int.
13575 (Fuser_login_name, Fuser_full_name): Signal an error
13576 if a uid argument is out of range, rather than relying on
13577 undefined behavior.
13578 (Fformat_time_string): Remove now-unnecessary check.
13579 lisp_time_argument checks for out-of-range usec now.
13580 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
13581 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
13582 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
13583 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
13584 (init_cmdargs, Fdump_emacs):
13585 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13586 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
13587 the bottom (typically) 32 bits of the fixnum.
13588 * eval.c (specpdl_size, call_debugger):
13589 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13590 (when_entered_debugger, Fbacktrace_debug):
13591 Don't assume fixnum can fit in int.
13592 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
13593 the object just before a buffer; this is not portable.
13594 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
13595 (grow_specpdl, unbind_to):
13596 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13597 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
13598 (grow_specpdl): Simplify allocation by using xpalloc.
13599 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
13600 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
13601 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
13602 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13603 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
13604 (a_write, e_write):
13605 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13606 (Fcopy_file, non_regular_nbytes, read_non_regular)
13607 (Finsert_file_contents):
13608 Use int, not EMACS_INT, where int is wide enough.
13609 (READ_BUF_SIZE): Verify that it fits in int.
13610 (Finsert_file_contents): Check that counts are in proper range,
13611 rather than assuming fixnums fit into ptrdiff_t etc.
13612 Don't assume fixnums fit into int.
13613 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
13614 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
13615 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
13616 (string_char_to_byte, string_byte_to_char)
13617 (string_make_multibyte, string_to_multibyte)
13618 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
13619 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
13620 (substring_both, Fdelete, internal_equal, Ffillarray)
13621 (Fclear_string, mapcar1)
13622 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
13623 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
13624 (larger_vector, make_hash_table, maybe_resize_hash_table)
13625 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
13626 (Fmaphash, secure_hash):
13627 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13628 (concat): Check for string index and length overflow.
13629 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
13630 (Frequire):
13631 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13632 (larger_vector): New API (vec, incr_min, size_max) replaces old
13633 one (vec, new_size, init). This catches size overflow.
13634 INIT was removed because it was always Qnil.
13635 All callers changed.
13636 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
13637 the upper bound on a hash table index size.
13638 (make_hash_table, maybe_resize_hash_table): Use it.
13639 (secure_hash): Computer start_byte and end_byte only after
13640 they're known to be in ptrdiff_t range.
13641 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
13642 (Ffont_get_glyphs, Ffont_at):
13643 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13644 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
13645 (Flist_fonts, Fopen_font):
13646 Don't assume fixnum can fit in int.
13647 (check_gstring): Don't assume index can fit in int.
13648 (font_match_p): Check that fixnum is a character, not a nonnegative
13649 fixnum, since the later code needs to stuff it into an int.
13650 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
13651 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
13652 conversion overflow issues.
13653 (Fopen_font): Check for integer out of range.
13654 (Ffont_get_glyphs): Don't assume index can fit in int.
13655 * font.h: Adjust decls to match defn changes elsewhere.
13656 * fontset.c (reorder_font_vector): Redo score calculation to avoid
13657 integer overflow.
13658 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
13659 printmax_t, where ptrdiff_t is wide enough.
13660 (Finternal_char_font):
13661 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13662 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
13663 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
13664 (Fset_frame_position, x_set_frame_parameters)
13665 (x_set_line_spacing, x_set_border_width)
13666 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
13667 Check that fixnums are in proper range for system types.
13668 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
13669 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13670 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
13671 Use SAFE_ALLOCA_LISP, not alloca.
13672 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
13673 intptr_t is wide enough.
13674 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
13675 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
13676 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
13677 Check for fixnum out of range.
13678 * ftfont.c (ftfont_list): Don't assume index fits in int.
13679 Check that fixnums are in proper range for system types.
13680 (ftfont_shape_by_flt):
13681 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13682 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
13683 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13684 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
13685 Check that fixnums are in proper range for system types.
13686 * gnutls.h: Adjust decls to match defn changes elsewhere.
13687 * gtkutil.c (xg_dialog_run):
13688 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13689 (update_frame_tool_bar):
13690 Check that fixnums are in proper range for system types.
13691 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
13692 (lookup_image): Check that fixnums are in range for system types.
13693 * indent.c (last_known_column, last_known_column_point):
13694 (current_column_bol_cache):
13695 (skip_invisible, current_column, check_display_width):
13696 (check_display_width, scan_for_column, current_column_1)
13697 (Findent_to, Fcurrent_indentation, position_indentation)
13698 (indented_beyond_p, Fmove_to_column, compute_motion):
13699 (Fcompute_motion, Fvertical_motion):
13700 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13701 (last_known_column_modified): Use EMACS_INT, not int.
13702 (check_display_width):
13703 (Fcompute_motion):
13704 Check that fixnums and floats are in proper range for system types.
13705 (compute_motion): Don't assume index or fixnum fits in int.
13706 (compute_motion, Fcompute_motion):
13707 Use int, not EMACS_INT, when it is wide enough.
13708 (vmotion): Omit local var start_hpos that is always 0; that way
13709 we don't need to worry about overflow in expressions involving it.
13710 * indent.h: Adjust decls to match defn changes elsewhere.
13711 (struct position):
13712 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13713 Use int, not EMACS_INT, where int is wide enough.
13714 Remove unused members ovstring_chars_done and tab_offset;
13715 all uses removed.
13716 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
13717 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
13718 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
13719 (make_gap, copy_text, insert, insert_and_inherit)
13720 (insert_before_markers, insert_before_markers_and_inherit)
13721 (insert_1, count_combining_before, count_combining_after)
13722 (insert_1_both, insert_from_string)
13723 (insert_from_string_before_markers, insert_from_string_1)
13724 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
13725 (adjust_after_replace, adjust_after_insert, replace_range)
13726 (replace_range_2, del_range, del_range_1, del_range_byte)
13727 (del_range_both, del_range_2, modify_region)
13728 (prepare_to_modify_buffer, signal_before_change)
13729 (signal_after_change, Fcombine_after_change_execute):
13730 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13731 * intervals.c (traverse_intervals, rotate_right, rotate_left)
13732 (balance_an_interval, split_interval_right, split_interval_left)
13733 (find_interval, next_interval, update_interval)
13734 (adjust_intervals_for_insertion, delete_node, delete_interval)
13735 (interval_deletion_adjustment, adjust_intervals_for_deletion)
13736 (static_offset_intervals, offset_intervals)
13737 (merge_interval_right, merge_interval_left, make_new_interval)
13738 (graft_intervals_into_buffer, temp_set_point_both)
13739 (temp_set_point, set_point, adjust_for_invis_intang)
13740 (set_point_both, move_if_not_intangible, get_property_and_range)
13741 (get_local_map, copy_intervals, copy_intervals_to_string)
13742 (compare_string_intervals, set_intervals_multibyte_1):
13743 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13744 * intervals.h: Adjust decls to match defn changes elsewhere.
13745 (struct interval):
13746 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13747 * keyboard.c (this_command_key_count, this_single_command_key_start)
13748 (before_command_key_count, before_command_echo_length, echo_now)
13749 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
13750 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
13751 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
13752 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
13753 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13754 (last_non_minibuf_size, last_point_position, echo_truncate)
13755 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
13756 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
13757 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
13758 (stuff_buffered_input):
13759 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13760 (last_auto_save, command_loop_1, read_char):
13761 Use EMACS_INT, not int, to avoid integer overflow.
13762 (record_char): Avoid overflow in total_keys computation.
13763 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
13764 * keyboard.h: Adjust decls to match defn changes elsewhere.
13765 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
13766 (Fkey_description, Fdescribe_vector, Flookup_key):
13767 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13768 (click_position): New function, to check that positions are in range.
13769 (Fcurrent_active_maps):
13770 (describe_command):
13771 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13772 (Faccessible_keymaps, Fkey_description):
13773 (preferred_sequence_p):
13774 Don't assume fixnum can fit into int.
13775 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
13776 Check for integer overflow in size calculations.
13777 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
13778 avoid mishandling large integers.
13779 * lisp.h: Adjust decls to match defn changes elsewhere.
13780 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
13781 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
13782 (struct Lisp_Marker):
13783 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13784 (clip_to_bounds): Now an inline function, moved here from editfns.c.
13785 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
13786 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
13787 All callers changed.
13788 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
13789 Assume the arg has valid form, since it always does.
13790 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
13791 unsigned integer system type.
13792 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
13793 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
13794 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13795 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
13796 (duration_to_sec_usec): New decl.
13797 * lread.c (read_from_string_index, read_from_string_index_byte)
13798 (read_from_string_limit, readchar, unreadchar, openp)
13799 (read_internal_start, read1, oblookup):
13800 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13801 (Fload, readevalloop, Feval_buffer, Feval_region):
13802 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13803 (openp): Check for out-of-range argument to 'access'.
13804 (read1): Use int, not EMACS_INT, where int is wide enough.
13805 Don't assume fixnum fits into int.
13806 Fix off-by-one error that can read outside a buffer.
13807 (read_filtered_event): Use duration_to_sec_usec
13808 to do proper overflow checking on durations.
13809 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
13810 in size calculation.
13811 (Fexecute_kbd_macro):
13812 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13813 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
13814 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
13815 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
13816 (set_marker_both, set_marker_restricted_both, marker_position)
13817 (marker_byte_position, Fbuffer_has_markers_at):
13818 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13819 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
13820 * menu.c (ensure_menu_items): Rename from grow_menu_items.
13821 It now merely ensures that the menu is large enough, without
13822 necessarily growing it, as this avoids some integer overflow issues.
13823 All callers changed.
13824 (keymap_panes, parse_single_submenu, Fx_popup_menu):
13825 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13826 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
13827 Use SAFE_ALLOCA_LISP, not alloca.
13828 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
13829 to EMACS_INT. Check that fixnums are in proper range for system types.
13830 * minibuf.c (minibuf_prompt_width, string_to_object)
13831 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
13832 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
13833 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13834 (get_minibuffer, read_minibuf_unwind):
13835 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13836 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
13837 this simplifies overflow checking. All callers changed.
13838 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
13839 (Ftest_completion):
13840 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13841 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
13842 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
13843 Check that fixnums are in proper range for system types.
13844 (Fx_create_frame, Fx_show_tip):
13845 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13846 * nsfont.m (ns_findfonts, nsfont_list_family):
13847 Don't assume fixnum fits in long.
13848 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
13849 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13850 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
13851 wide enough.
13852 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
13853 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13854 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
13855 (PRINTDECLARE, PRINTPREPARE):
13856 (strout, print_string):
13857 (print, print_preprocess, print_check_string_charset_prop)
13858 (print_object):
13859 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13860 (PRINTDECLARE):
13861 (temp_output_buffer_setup, Fprin1_to_string, print_object):
13862 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13863 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
13864 (printchar, strout): Use xpalloc to catch size calculation overflow.
13865 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
13866 (print_error_message): Use SAFE_ALLOCA, not alloca.
13867 (print_object): Use int, not EMACS_INT, where int is wide enough.
13868 (print_depth, new_backquote_output, print_number_index):
13869 Use ptrdiff_t, not int, where int might not be wide enough.
13870 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
13871 (Fset_process_window_size, Fformat_network_address)
13872 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
13873 (sigchld_handler):
13874 Check that fixnums are in proper range for system types.
13875 (Fsignal_process): Simplify by avoiding a goto.
13876 Check for process-ids out of pid_t range rather than relying on
13877 undefined behavior.
13878 (process_tick, update_tick): Use EMACS_INT, not int.
13879 (Fformat_network_address, read_process_output, send_process)
13880 (Fprocess_send_region, status_notify):
13881 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13882 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
13883 (wait_reading_process_output, read_process_output, exec_sentinel):
13884 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13885 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
13886 (Faccept_process_output): Use duration_to_sec_usec to do proper
13887 overflow checking on durations.
13888 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
13889 Don't assume pid_t fits in int.
13890 * process.h (struct Lisp_Process): Members tick and update_tick
13891 are now of type EMACS_INT, not int.
13892 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
13893 configured --with-wide-int.
13894 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
13895 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
13896 * search.c (looking_at_1, string_match_1):
13897 (fast_string_match, fast_c_string_match_ignore_case)
13898 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
13899 (scan_newline, find_before_next_newline, search_command)
13900 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
13901 (set_search_regs, wordify):
13902 (Freplace_match):
13903 (Fmatch_data):
13904 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13905 (string_match_1, search_buffer, set_search_regs):
13906 (Fmatch_data):
13907 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13908 (wordify): Check for overflow in size calculation.
13909 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
13910 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
13911 Check that fixnums are in proper range for system types.
13912 * sound.c (struct sound_device)
13913 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
13914 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13915 (Fplay_sound_internal):
13916 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13917 * syntax.c (struct lisp_parse_state, find_start_modiff)
13918 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
13919 (Fparse_partial_sexp):
13920 Don't assume fixnums can fit in int.
13921 (struct lisp_parse_state, find_start_pos, find_start_value)
13922 (find_start_value_byte, find_start_begv)
13923 (update_syntax_table, char_quoted, dec_bytepos)
13924 (find_defun_start, prev_char_comend_first, back_comment):
13925 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
13926 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
13927 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13928 (Finternal_describe_syntax_value): Check that match_lisp is a
13929 character, not an integer, since the code stuffs it into int.
13930 (scan_words, scan_sexps_forward):
13931 Check that fixnums are in proper range for system types.
13932 (Fforward_word):
13933 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13934 (scan_sexps_forward):
13935 Use CHARACTERP, not INTEGERP, since the value must fit into int.
13936 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
13937 * syntax.h: Adjust decls to match defn changes elsewhere.
13938 (struct gl_state_s):
13939 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13940 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
13941 MOST_POSITIVE_FIXNUM.
13942 * sysdep.c (wait_for_termination_1, wait_for_termination)
13943 (interruptible_wait_for_termination, mkdir):
13944 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
13945 (emacs_read, emacs_write):
13946 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13947 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
13948 and double all fit in int.
13949 * term.c (set_tty_color_mode):
13950 Check that fixnums are in proper range for system types.
13951 * termhooks.h (struct input_event):
13952 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13953 * textprop.c (validate_interval_range, interval_of)
13954 (Fadd_text_properties, set_text_properties_1)
13955 (Fremove_text_properties, Fremove_list_of_text_properties)
13956 (Ftext_property_any, Ftext_property_not_all)
13957 (copy_text_properties, text_property_list, extend_property_ranges)
13958 (verify_interval_modification):
13959 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13960 (Fnext_single_char_property_change)
13961 (Fprevious_single_char_property_change):
13962 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13963 (copy_text_properties):
13964 Check for integer overflow in index calculation.
13965 * undo.c (last_boundary_position, record_point, record_insert)
13966 (record_delete, record_marker_adjustment, record_change)
13967 (record_property_change):
13968 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13969 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
13970 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13971 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
13972 (Fx_hide_tip, Fx_file_dialog):
13973 * w32menu.c (set_frame_menubar):
13974 Use ptrdiff_t, not int, for consistency with rest of code.
13975 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
13976 (select_window, Fdelete_other_windows_internal)
13977 (window_scroll_pixel_based, window_scroll_line_based)
13978 (Frecenter, Fset_window_configuration):
13979 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13980 (Fset_window_hscroll, run_window_configuration_change_hook)
13981 (set_window_buffer, temp_output_buffer_show, scroll_command)
13982 (Fscroll_other_window, Frecenter):
13983 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13984 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
13985 Don't assume fixnum fits in int.
13986 (Fset_window_scroll_bars):
13987 Check that fixnums are in proper range for system types.
13988 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
13989 (string_pos, c_string_pos, number_of_chars, init_iterator)
13990 (in_ellipses_for_invisible_text_p, init_from_display_pos)
13991 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
13992 (compute_display_string_end, handle_face_prop)
13993 (face_before_or_after_it_pos, handle_invisible_prop)
13994 (handle_display_prop, handle_display_spec, handle_single_display_spec)
13995 (display_prop_intangible_p, string_buffer_position_lim)
13996 (string_buffer_position, handle_composition_prop, load_overlay_strings)
13997 (get_overlay_strings_1, get_overlay_strings)
13998 (iterate_out_of_display_property, forward_to_next_line_start)
13999 (back_to_previous_visible_line_start, reseat, reseat_to_string)
14000 (get_next_display_element, set_iterator_to_next)
14001 (get_visually_first_element, compute_stop_pos_backwards)
14002 (handle_stop_backwards, next_element_from_buffer)
14003 (move_it_in_display_line_to, move_it_in_display_line)
14004 (move_it_to, move_it_vertically_backward, move_it_by_lines)
14005 (add_to_log, message_dolog, message_log_check_duplicate)
14006 (message2, message2_nolog, message3, message3_nolog
14007 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
14008 (current_message_1, truncate_echo_area, truncate_message_1)
14009 (set_message, set_message_1, store_mode_line_noprop)
14010 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
14011 (text_outside_line_unchanged_p, check_point_in_composition)
14012 (reconsider_clip_changes)
14013 (redisplay_internal, set_cursor_from_row, try_scrolling)
14014 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
14015 (redisplay_window, find_last_unchanged_at_beg_row)
14016 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
14017 (trailing_whitespace_p, find_row_edges, display_line)
14018 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
14019 (display_mode_element, store_mode_line_string)
14020 (pint2str, pint2hrstr, decode_mode_spec)
14021 (display_count_lines, display_string, draw_glyphs)
14022 (x_produce_glyphs, x_insert_glyphs)
14023 (rows_from_pos_range, mouse_face_from_buffer_pos)
14024 (fast_find_string_pos, mouse_face_from_string_pos)
14025 (note_mode_line_or_margin_highlight, note_mouse_highlight):
14026 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
14027 (safe_call, init_from_display_pos, handle_fontified_prop)
14028 (handle_single_display_spec, load_overlay_strings)
14029 (with_echo_area_buffer, setup_echo_area_for_printing)
14030 (display_echo_area, echo_area_display)
14031 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
14032 (update_tool_bar, hscroll_window_tree, redisplay_internal)
14033 (redisplay_window, dump_glyph_row, display_mode_line)
14034 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
14035 (handle_display_spec, display_prop_string_p):
14036 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14037 (handle_single_display_spec, build_desired_tool_bar_string)
14038 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
14039 (get_specified_cursor_type):
14040 Check that fixnums are in proper range for system types.
14041 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
14042 (Flookup_image_map):
14043 Don't assume fixnums fit in int.
14044 (compare_overlay_entries):
14045 Avoid mishandling comparisons due to subtraction overflow.
14046 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
14047 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
14048 (handle_tool_bar_click):
14049 Use int, not unsigned, since we prefer signed and the signedness
14050 doesn't matter here.
14051 (get_next_display_element, next_element_from_display_vector):
14052 Use int, not EMACS_INT, when int is wide enough.
14053 (start_hourglass): Use duration_to_sec_usec to do proper
14054 overflow checking on durations.
14055 * xfaces.c (Fbitmap_spec_p):
14056 Check that fixnums are in proper range for system types.
14057 (compare_fonts_by_sort_order):
14058 Avoid mishandling comparisons due to subtraction overflow.
14059 (Fx_family_fonts, realize_basic_faces):
14060 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14061 (Fx_family_fonts):
14062 Don't assume fixnum fits in int.
14063 Use SAFE_ALLOCA_LISP, not alloca.
14064 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
14065 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
14066 (face_at_buffer_position, face_for_overlay_string)
14067 (face_at_string_position):
14068 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
14069 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
14070 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
14071 (Fx_show_tip):
14072 Check that fixnums are in proper range for system types.
14073 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
14074 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
14075 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14076 (Fx_change_window_property): Don't assume fixnums fit in int.
14077 * xfont.c (xfont_chars_supported):
14078 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14079 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
14080 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
14081 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14082 * xml.c (parse_region):
14083 * xrdb.c (magic_file_p):
14084 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
14085 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
14086 (x_get_local_selection, x_reply_selection_request)
14087 (x_handle_selection_request, wait_for_property_change):
14088 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14089 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
14090 short is wide enough.
14091 (x_send_client_event): Don't assume fixnum fits in int.
14092 * xterm.c (x_x_to_emacs_modifiers):
14093 Don't assume EMACS_INT overflows nicely into int.
14094 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
14095 may come from Lisp.
14096 (handle_one_xevent): NATNUMP can eval its arg twice.
14097 (x_connection_closed):
14098 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14099 * xterm.h: Adjust decls to match defn changes elsewhere.
14100 (struct scroll_bar): Use struct vectorlike_header
14101 rather than rolling our own approximation.
14102 (SCROLL_BAR_VEC_SIZE): Remove; not used.
14103
14104 2012-05-25 Glenn Morris <rgm@gnu.org>
14105
14106 * lisp.mk (lisp): Update for more files being compiled now.
14107
14108 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
14109
14110 * lread.c: Remove `read_pure' which makes no difference.
14111 (read_pure): Remove var.
14112 (unreadpure): Remove function.
14113 (readevalloop): Don't call read_list with -1 flag.
14114 (read1, read_vector): Don't test read_pure any more.
14115 (read_list): Simplify.
14116
14117 * fileio.c, character.h: Minor style tweaks.
14118
14119 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
14120
14121 * window.h (clip_changed): Remove useless declaration.
14122
14123 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
14124
14125 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
14126 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
14127
14128 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
14129
14130 Remove src/m/*.
14131 This directory predates autoconf and is no longer needed nowadays.
14132 Move its few remaining bits of functionality to where they're needed.
14133 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
14134 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
14135 * m/template.h: Remove.
14136 * Makefile.in (M_FILE): Remove. All uses removed.
14137 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
14138 * lisp.h (USE_LSB_TAG):
14139 * mem-limits.h (EXCEEDS_LISP_PTR):
14140 Use VAL_MAX, not VALBITS, in #if.
14141 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
14142 (EMACS_UINT): Define unconditionally now.
14143 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
14144 (BITS_PER_EMACS_INT): New constants, replacing
14145 what used to be in config.h, but not useful in #if.
14146 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
14147 define them any more.
14148 (VAL_MAX): New macro.
14149 (VALMASK): Use it.
14150 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
14151 BITS_PER_EMACS_INT, in #if.
14152 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
14153 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
14154 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
14155 * s/ms-w32.h (DATA_START):
14156 Move here from removed file m/intel386.h.
14157 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
14158 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
14159
14160 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
14161
14162 Assume C89 or later.
14163 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
14164 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
14165 (xrealloc):
14166 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
14167 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
14168 * textprop.c, tparam.c (NULL): Remove.
14169 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
14170 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
14171 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
14172 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
14173 * xterm.c (input_signal_count): Assume volatile works.
14174
14175 2012-05-21 Ken Brown <kbrown@cornell.edu>
14176
14177 * xgselect.c (xg_select): Fix first argument in call to 'select'
14178 (bug#11508).
14179
14180 2012-05-20 Ken Brown <kbrown@cornell.edu>
14181
14182 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
14183 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
14184
14185 2012-05-19 Ken Brown <kbrown@cornell.edu>
14186
14187 * xfns.c (x_in_use): Remove `static' qualifier.
14188 * xterm.h (x_in_use): Declare.
14189 * xgselect.c: Include xterm.h.
14190 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
14191 and `display_arg' (bug#9754).
14192
14193 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
14194
14195 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
14196
14197 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
14198 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
14199
14200 2012-05-18 Eli Zaretskii <eliz@gnu.org>
14201
14202 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
14203
14204 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
14205 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
14206
14207 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
14208 reference to image_cache->refcount.
14209 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
14210
14211 2012-05-17 Juri Linkov <juri@jurta.org>
14212
14213 * search.c (Fword_search_regexp, Fword_search_backward)
14214 (Fword_search_forward, Fword_search_backward_lax)
14215 (Fword_search_forward_lax): Move functions to isearch.el
14216 (bug#10145, bug#11381).
14217
14218 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
14219
14220 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
14221
14222 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
14223
14224 * lread.c (init_obarray): Declare Qt and Qnil as special.
14225
14226 2012-05-14 Glenn Morris <rgm@gnu.org>
14227
14228 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
14229 Put "libexec" before "bin", for the sake of init_callproc_1.
14230
14231 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
14232
14233 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
14234
14235 * unexaix.c: Port to more-recent AIX compilers.
14236 (report_error, report_error_1, make_hdr, copy_sym)
14237 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
14238 Make arguments const char *, not char *, to avoid violations of C
14239 standard and to fix some AIX warnings reported by Gilles Pion.
14240
14241 2012-05-14 Eli Zaretskii <eliz@gnu.org>
14242
14243 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
14244 already have overlays loaded.
14245 (handle_single_display_spec): Before returning without displaying
14246 fringe bitmap, synchronize the bidi iterator with the main display
14247 iterator, by calling iterate_out_of_display_property.
14248 (iterate_out_of_display_property): Detect buffer iteration by
14249 testing that it->string is a Lisp string.
14250 (get_next_display_element): When the current object is exhausted,
14251 and there's something on it->stack, call set_iterator_to_next to
14252 proceed with what's on the stack, instead of returning zero.
14253 (set_iterator_to_next): If called at the end of a Lisp string,
14254 proceed to consider_string_end without incrementing string
14255 position. Don't increment display vector index past the end of
14256 the display vector. (Bug#11417)
14257 (pos_visible_p): Don't report a position visible when move_it_to
14258 stopped at the last line of window, which happens to be scanned
14259 backwards by the bidi iteration. (Bug#11464)
14260
14261 2012-05-14 Eli Zaretskii <eliz@gnu.org>
14262
14263 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
14264 and right-margin display specs even if the spec is invalid or we
14265 are on a TTY, and thus unable to display on the fringes.
14266 That's because the text with the property will not be displayed anyway,
14267 so we need to signal to the caller that this is a "replacing"
14268 display spec. This fixes display when the spec is invalid or we
14269 are on a TTY.
14270
14271 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
14272
14273 * unexaix.c (make_hdr): Fix typo in prototype.
14274 This bug broke the build on AIX. Problem reported by Gilles Pion.
14275
14276 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
14277
14278 * keyboard.c (kbd_buffer_get_event): Read special events also in
14279 batch mode. (Bug#11415)
14280
14281 2012-05-12 Glenn Morris <rgm@gnu.org>
14282
14283 * ns.mk: Update for ns_appbindir no longer having trailing "/".
14284
14285 2012-05-12 Eli Zaretskii <eliz@gnu.org>
14286
14287 * lisp.mk (lisp): Add newcomment.elc.
14288
14289 2012-05-12 Glenn Morris <rgm@gnu.org>
14290
14291 * Makefile.in (MKDIR_P): New, set by configure.
14292 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
14293
14294 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
14295
14296 Remove unused function hourglass_started.
14297 * dispextern.h (hourglass_started):
14298 * w32fns.c (hourglass_started):
14299 * xdisp.c (hourglass_started): Remove.
14300
14301 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
14302
14303 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
14304 Update dependencies.
14305
14306 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
14307
14308 * xgselect.c (xg_select): Put maxfds+1 into a var.
14309 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
14310
14311 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
14312
14313 2012-05-10 Dave Abrahams <dave@boostpro.com>
14314
14315 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
14316 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
14317
14318 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
14319
14320 * dbusbind.c (xd_registered_buses): New internal Lisp object.
14321 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
14322 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
14323 Initialize xd_registered_buses.
14324
14325 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
14326
14327 Untag more efficiently if USE_LSB_TAG.
14328 This is based on a proposal by YAMAMOTO Mitsuharu in
14329 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
14330 For an admittedly artificial (nth 8000 longlist) benchmark on
14331 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
14332 Emacs's overall text size by 1%.
14333 * lisp.h (XUNTAG): New macro.
14334 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
14335 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
14336 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
14337 * eval.c (Fautoload):
14338 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
14339 * frame.h (XFRAME): Use XUNTAG.
14340
14341 Port recent dbusbind.c changes to 32-bit --with-wide-int.
14342 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
14343 Remove unportable assumptions about print widths of types like
14344 dbus_uint32_t.
14345 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
14346 intptr_t when converting between pointer and integer, to avoid GCC
14347 warnings about wrong width.
14348
14349 2012-05-09 Eli Zaretskii <eliz@gnu.org>
14350
14351 * w32proc.c (new_child): Force Windows to reserve only 64KB of
14352 stack for each reader_thread, instead of defaulting to 8MB
14353 determined by the linker. This avoids failures in creating
14354 subprocesses on Windows 7, see the discussion in this thread:
14355 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
14356
14357 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
14358
14359 Fix up display of the *Minibuf-0* buffer in the mini window.
14360 * keyboard.c (read_char): Don't clear the echo area if there's no
14361 message to clear.
14362 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
14363 contents of *Minibuf-0*) if there's no message displayed in its stead.
14364
14365 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
14366
14367 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
14368 batch mode.
14369
14370 2012-05-06 Chong Yidong <cyd@gnu.org>
14371
14372 * lisp.mk (lisp): Update.
14373
14374 2012-05-05 Jim Meyering <meyering@redhat.com>
14375
14376 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
14377
14378 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14379
14380 * data.c (PUT_ERROR): New macro.
14381 (syms_of_data): Use it. Add new error type `user-error'.
14382 * undo.c (user_error): New function.
14383 (Fprimitive_undo): Use it.
14384 * print.c (print_error_message): Adjust print style for `user-error'.
14385 * keyboard.c (user_error): New function.
14386 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
14387
14388 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
14389
14390 Do not limit current-time-string to years 1000..9999.
14391 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
14392 (Fcurrent_time_string): Support any year that is supported by the
14393 underlying localtime representation. Don't use asctime, as it
14394 has undefined behavior for years outside the range -999..9999.
14395
14396 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
14397
14398 Fix race conditions involving setenv, gmtime, localtime, asctime.
14399 Without this fix, interrupts could mess up code that uses these
14400 nonreentrant functions, since setting TZ invalidates existing
14401 tm_zone or tzname values, and since most of these functions return
14402 pointers to static storage.
14403 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
14404 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
14405 Grow the critical sections to include not just invoking
14406 localtime/gmtime, but also accessing these functions' results
14407 including their tm_zone values if any, and any related TZ setting.
14408 (format_time_string): Last arg is now struct tm *, not struct tm **,
14409 so that the struct tm is saved in the critical section.
14410 All callers changed. Simplify allocation of initial buffer, partly
14411 motivated by the fact that memory allocation needs to be outside
14412 the critical section.
14413
14414 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
14415
14416 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
14417 with RESET_INTERVAL.
14418
14419 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
14420 Remove duplicated buffer name initialization.
14421
14422 2012-05-02 Jim Meyering <jim@meyering.net>
14423
14424 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
14425
14426 * xfns.c (x_window): Use xstrdup (Bug#11375).
14427
14428 2012-05-02 Eli Zaretskii <eliz@gnu.org>
14429
14430 * xdisp.c (pos_visible_p): If already at a newline from the
14431 display string before the 'while' loop, don't walk back the glyphs
14432 from it3.glyph_row. Solves assertion violation when the display
14433 string begins with a newline (egg.el). (Bug#11367)
14434
14435 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
14436
14437 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
14438 Move to simple.el.
14439
14440 2012-05-01 Glenn Morris <rgm@gnu.org>
14441
14442 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
14443 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
14444 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
14445 All were removed before 23.1.
14446
14447 * dispnew.c: Remove HAVE_LIBNCURSES test;
14448 it is always true on relevant platforms.
14449
14450 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
14451 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
14452
14453 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
14454
14455 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
14456
14457 * .gdbinit (xpr): Remove checks for no longer existing misc types.
14458 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
14459 Remove.
14460
14461 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
14462
14463 Do not avoid creating empty evaporating overlays (Bug#9642).
14464 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
14465 That is, do not delete an evaporating overlay if it becomes
14466 empty after its bounds are adjusted to fit within its buffer.
14467 This fix caused other problems, and I'm reverting it until we get
14468 to the bottom of them.
14469
14470 2012-04-27 Chong Yidong <cyd@gnu.org>
14471
14472 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
14473
14474 2012-04-27 Eli Zaretskii <eliz@gnu.org>
14475
14476 * xdisp.c (pos_visible_p): If the window start position is beyond
14477 ZV, start the display from buffer beginning. Prevents assertion
14478 violation in init_iterator when the minibuffer window is scrolled
14479 via the scroll bar.
14480
14481 * window.c (window_scroll_pixel_based): Likewise.
14482
14483 2012-04-27 Chong Yidong <cyd@gnu.org>
14484
14485 * keymap.c (where_is_internal): Doc fix (Bug#10872).
14486
14487 2012-04-27 Glenn Morris <rgm@gnu.org>
14488
14489 * fileio.c (Fcopy_file, Fset_file_selinux_context):
14490 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
14491
14492 2012-04-27 Eli Zaretskii <eliz@gnu.org>
14493
14494 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
14495 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
14496
14497 2012-04-26 Eli Zaretskii <eliz@gnu.org>
14498
14499 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
14500 display element, check also the underlying string or buffer
14501 character. (Bug#11341)
14502
14503 * w32menu.c: Include w32heap.h.
14504 (add_menu_item): If the call to AppendMenuW (via
14505 unicode_append_menu) fails, disable Unicode menus only if we are
14506 running on Windows 9X/Me.
14507
14508 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
14509
14510 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
14511 (xgetint): Add missing shift for LSB tags.
14512
14513 2012-04-24 Martin Rudalics <rudalics@gmx.at>
14514
14515 * keyboard.c (read_char): Don't wipe echo area for select window
14516 events: These might get delayed via `mouse-autoselect-window'
14517 (Bug#11304).
14518
14519 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
14520
14521 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
14522 manipulation of :loaded-from data.
14523
14524 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
14525
14526 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
14527 now a cons (bug#11311).
14528
14529 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
14530
14531 Do not create empty overlays with the evaporate property (Bug#9642).
14532 * buffer.c (Fmove_overlay): Delete an evaporating overlay
14533 if it becomes empty after its bounds are adjusted to fit within
14534 its buffer. Without this fix, in a nonempty buffer (let ((o
14535 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
14536 yields an empty overlay that has the evaporate property, which is
14537 not supposed to happen.
14538
14539 Fix minor GTK3 problems found by static checking.
14540 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
14541 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
14542 (struct _EmacsFixedClass, emacs_fixed_get_type):
14543 Move decls here from emacsgtkfixed.h, since they needn't be public.
14544 (emacs_fixed_get_type): Now static.
14545 (emacs_fixed_class_init): Omit unused local.
14546 (emacs_fixed_child_type): Remove; unused.
14547 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
14548 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
14549 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
14550 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
14551 (EMACS_FIXED_GET_CLASS): Remove; unused.
14552 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
14553
14554 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
14555 Problem reported by Juanma Barranquero for Windows -Wunused-function.
14556
14557 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
14558
14559 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
14560 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
14561 (__malloc_size_t, __malloc_ptrdiff_t):
14562 Remove. All uses removed, replaced by the definiens if needed,
14563 since we can assume C89 or better now.
14564 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
14565 (protect_malloc_state, align, get_contiguous_space)
14566 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
14567 (malloc_atfork_handler_child, malloc_enable_thread)
14568 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
14569 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
14570 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
14571 (special_realloc, _realloc_internal_nolock, _realloc_internal)
14572 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
14573 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
14574 Define using prototypes, not old style.
14575 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
14576 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
14577 (align): Don't assume that signed integer overflow wraps around.
14578 Omit unused local var.
14579 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
14580 (_free_internal_nolock, memalign, mallochook, reallochook):
14581 Omit no-longer-needed casts.
14582 (valloc): Use getpagesize, not __getpagesize.
14583 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
14584 (struct hdr): The 'magic' member is now size_t, not unsigned long.
14585
14586 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
14587
14588 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
14589
14590 Move functions from C to Lisp. Make non-blocking method calls
14591 the default. Implement further D-Bus standard interfaces.
14592
14593 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
14594 (QCdbus_request_name_allow_replacement)
14595 (QCdbus_request_name_replace_existing)
14596 (QCdbus_request_name_do_not_queue)
14597 (QCdbus_request_name_reply_primary_owner)
14598 (QCdbus_request_name_reply_in_queue)
14599 (QCdbus_request_name_reply_exists)
14600 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
14601 (QCdbus_registered_serial, QCdbus_registered_method)
14602 (QCdbus_registered_signal): New Lisp objects.
14603 (XD_DEBUG_MESSAGE): Use sizeof.
14604 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
14605 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
14606 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
14607 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
14608 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
14609 (xd_signature, xd_append_arg): Allow float for integer types.
14610 (xd_get_connection_references): New function.
14611 (xd_get_connection_address): Rename from xd_initialize.
14612 Return cached address.
14613 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
14614 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
14615 level.
14616 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
14617 Return number of refcounts.
14618 (Fdbus_get_unique_name): Make stronger parameter check.
14619 (Fdbus_message_internal): New defun.
14620 (Fdbus_call_method, Fdbus_call_method_asynchronously)
14621 (Fdbus_method_return_internal, Fdbus_method_error_internal)
14622 (Fdbus_send_signal, Fdbus_register_service)
14623 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
14624 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
14625 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
14626 (Vdbus_compiled_version, Vdbus_runtime_version)
14627 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
14628 (Vdbus_message_type_method_return, Vdbus_message_type_error)
14629 (Vdbus_message_type_signal): New defvars.
14630 (Vdbus_registered_buses, Vdbus_registered_objects_table):
14631 Adapt docstring.
14632
14633 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
14634
14635 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
14636 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
14637 Do not assume ptrdiff_t is the same width as 'int'.
14638
14639 * alloc.c: Handle unusual debugging option combinations.
14640 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
14641 since the two debugging options are incompatible.
14642 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
14643 is defined.
14644 (mem_init, mem_insert, mem_insert_fixup):
14645 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
14646 (NEED_MEM_INSERT): Remove; no longer needed.
14647
14648 2012-04-22 Leo Liu <sdl.web@gmail.com>
14649
14650 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
14651
14652 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
14653
14654 * sysdep.c [__FreeBSD__]: Minor cleanups.
14655 (list_system_processes, system_process_attributes) [__FreeBSD__]:
14656 Use Emacs indenting style more consistently. Avoid some casts.
14657 Use 'double' consistently rather than mixing 'float' and 'double'.
14658
14659 2012-04-21 Eduard Wiebe <usenet@pusto.de>
14660
14661 * sysdep.c (list_system_processes, system_process_attributes):
14662 Add implementation for FreeBSD (Bug#5243).
14663
14664 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
14665
14666 * lisp.mk (lisp): Update.
14667
14668 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
14669
14670 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
14671 It is never used otherwise.
14672
14673 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14674
14675 * print.c (print_preprocess): Only check print_depth if print-circle
14676 is nil.
14677 (print_object): Check for cycles even when print-circle is nil and
14678 print-gensym is t, but only check print_depth if print-circle is nil.
14679
14680 2012-04-20 Chong Yidong <cyd@gnu.org>
14681
14682 * process.c (wait_reading_process_output): If EIO occurs on a pty,
14683 set the status to "failed" and ensure that sentinel is run.
14684
14685 2012-04-20 Glenn Morris <rgm@gnu.org>
14686
14687 * process.c (Fset_process_inherit_coding_system_flag)
14688 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
14689 (Fmake_network_process, Fmake_serial_process): Doc fix.
14690
14691 2012-04-20 Eli Zaretskii <eliz@gnu.org>
14692
14693 * xdisp.c (string_buffer_position_lim): Limit starting position to
14694 BEGV.
14695 (set_cursor_from_row): If called for a mode-line or header-line
14696 row, return zero immediately.
14697 (try_cursor_movement): If inside continuation line, don't back up
14698 farther than the first row after the header line, if any.
14699 Don't consider the header-line row as "partially visible", even if
14700 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
14701
14702 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
14703
14704 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
14705 (bug#11238).
14706
14707 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
14708 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
14709
14710 configure: new option --enable-gcc-warnings (Bug#11207)
14711 * Makefile.in (C_WARNINGS_SWITCH): Remove.
14712 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
14713 (ALL_CFLAGS): Use new macros rather than old.
14714 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
14715 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
14716 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
14717 -Wunused-result, -Wunused-variable. This should go away once
14718 the Emacs and Gnulib regex code is merged.
14719 (xmalloc, xrealloc): Now static.
14720
14721 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
14722
14723 * dired.c (Fsystem_groups): Remove unused local.
14724
14725 2012-04-17 Glenn Morris <rgm@gnu.org>
14726
14727 * dired.c (Fsystem_users): Doc fix.
14728
14729 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
14730
14731 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
14732 (syms_of_dired): Add them.
14733
14734 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
14735
14736 Fix minor alloc.c problems found by static checking.
14737 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
14738 New extern decls, to avoid calling undeclared functions.
14739 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
14740 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
14741 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
14742 (NEED_MEM_INSERT): New macro.
14743 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
14744 Remove one incorrect comment and fix another.
14745
14746 Fix minor ralloc.c problems found by static checking.
14747 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
14748 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
14749 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
14750 (r_alloc_sbrk): Now static.
14751
14752 Improve ralloc.c interface checking.
14753 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
14754 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
14755 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
14756 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
14757 [REL_ALLOC]: ... to here, to check interface.
14758 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
14759 Remove decls. This fixes an "It stinks!".
14760
14761 * alloc.c (which_symbols): Fix alignment issue / type clash.
14762
14763 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
14764
14765 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
14766 (struct Lisp_Misc_Any): Likewise.
14767 (struct Lisp_Free): Likewise.
14768 * alloc.c (union aligned_Lisp_Symbol): Define.
14769 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
14770 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
14771 (union aligned_Lisp_Misc): Define.
14772 (MARKER_BLOCK_SIZE, struct marker_block): Use union
14773 aligned_Lisp_Misc instead of union Lisp_Misc.
14774 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
14775
14776 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
14777
14778 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
14779 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
14780 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
14781 * s/netbsd.h, s/sol2-6.h:
14782 Remove definition of GC_MARK_STACK, since the default now works.
14783 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
14784 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
14785 no longer the default.
14786 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
14787
14788 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
14789
14790 * lread.c (lisp_file_lexically_bound_p):
14791 Fix hang at ";-*-\n" (bug#11238).
14792
14793 2012-04-14 Eli Zaretskii <eliz@gnu.org>
14794
14795 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
14796 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
14797
14798 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
14799
14800 * nsterm.m (constrainFrameRect): Always constrain when there is only
14801 one screen (Bug#10962).
14802
14803 2012-04-13 Ken Brown <kbrown@cornell.edu>
14804
14805 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
14806
14807 2012-04-13 Reuben Thomas <rrt@sc3d.org>
14808
14809 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
14810
14811 2012-04-11 Daniel Colascione <dancol@dancol.org>
14812
14813 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
14814 against is gone. It's better to use vfork now so that when Cygwin
14815 gains a new, working vfork, we use it automatically (bug#10398).
14816
14817 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14818
14819 * window.c (save_window_save): Obey window-point-insertion-type.
14820
14821 2012-04-11 Glenn Morris <rgm@gnu.org>
14822
14823 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
14824
14825 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
14826
14827 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
14828
14829 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
14830
14831 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
14832 (force_quit_count): New var.
14833 (handle_interrupt): Use it.
14834
14835 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
14836
14837 * w32.c (w32_delayed_load): Record the full path of the library
14838 being loaded (bug#10424).
14839
14840 2012-04-09 Glenn Morris <rgm@gnu.org>
14841
14842 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
14843 not just in the obarray, before snarfing them. (Bug#11036)
14844
14845 * Makefile.in ($(leimdir)/leim-list.el):
14846 Pass EMACS rather than BUILT_EMACS.
14847
14848 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
14849
14850 * process.c (make_process):
14851 * process.h: Add integer `gnutls_handshakes_tried' member to
14852 process struct.
14853
14854 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
14855 Add convenience `GNUTLS_LOG2i' macro.
14856
14857 * gnutls.c (gnutls_log_function2i): Convenience log function.
14858 (emacs_gnutls_read): Use new log functions,
14859 `gnutls_handshakes_tried' process member, and
14860 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
14861 attempts per process (connection).
14862
14863 2012-04-09 Chong Yidong <cyd@gnu.org>
14864
14865 * eval.c (Fuser_variable_p, user_variable_p_eh)
14866 (lisp_indirect_variable): Functions deleted.
14867 (Fdefvar): Caller changed.
14868
14869 * callint.c (Finteractive, Fcall_interactively):
14870 * minibuf.c (Fread_variable): Callers changed.
14871
14872 2012-04-09 Eli Zaretskii <eliz@gnu.org>
14873
14874 * xdisp.c (set_cursor_from_row): If the display string appears in
14875 the buffer at position that is closer to point than the position
14876 after the display string, display the cursor on the first glyph of
14877 the display string. Fixes cursor display when a 'display' text
14878 property immediately follows invisible text. (Bug#11094)
14879
14880 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
14881
14882 composite.c: use 'double' consistently
14883 * composite.c (get_composition_id): Use 'double' consistently
14884 instead of converting 'float' to 'double' and vice versa; this is
14885 easier to understand and avoids a GCC warning.
14886
14887 2012-04-09 Glenn Morris <rgm@gnu.org>
14888
14889 * Makefile.in: Generate leim-list with bootstrap-emacs, in
14890 preparation for dumping it with emacs. (Bug#4789)
14891 (leimdir): New variable.
14892 ($(leimdir)/leim-list.el): New rule.
14893 (emacs$(EXEEXT)): Depend on leim-list.el.
14894
14895 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
14896 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
14897 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
14898
14899 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
14900
14901 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
14902 proper alignment.
14903
14904 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
14905
14906 * xml.c (init_libxml2_functions) [WINDOWSNT]:
14907 Remove unused local variable.
14908
14909 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
14910
14911 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
14912 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
14913 (mark_memory): Mark Lisp_Objects only if pointers might hide in
14914 objects, as mark_maybe_pointer will catch them otherwise.
14915 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
14916 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
14917
14918 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
14919
14920 Fix typo that broke non-Windows builds.
14921 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
14922
14923 2012-04-07 Eli Zaretskii <eliz@gnu.org>
14924
14925 Support building on MS-Windows with libxml2.
14926
14927 * makefile.w32-in (OBJ2): Add xml.$(O).
14928 (GLOBAL_SOURCES): Add xml.c.
14929 ($(BLD)/xml.$(O)): New dependency list.
14930
14931 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
14932 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
14933 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
14934 [!WINDOWSNT]: New macros.
14935 (init_libxml2_functions, libxml2_loaded_p): New functions.
14936 (parse_region): Call fn_xmlCheckVersion instead of using the macro
14937 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
14938 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
14939 Calls xmlCleanupParser only if libxml2 was loaded (or statically
14940 linked in).
14941 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
14942 Call init_libxml2_functions before calling libxml2 functions.
14943 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
14944
14945 * emacs.c: Don't include libxml/parser.h.
14946 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
14947 xmlCleanupParser directly.
14948
14949 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
14950
14951 2012-04-07 Eli Zaretskii <eliz@gnu.org>
14952
14953 * indent.c (Fvertical_motion): If there is a display string at
14954 point, use it.vpos to compute how many lines to backtrack after
14955 move_it_to point. (Bug#11133)
14956
14957 2012-04-06 Eli Zaretskii <eliz@gnu.org>
14958
14959 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
14960 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
14961 about subtle differences between FETCH_CHAR* and STRING_CHAR*
14962 macros related to unification of CJK characters. For the details,
14963 see the discussion following the message here:
14964 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
14965
14966 2012-04-04 Chong Yidong <cyd@gnu.org>
14967
14968 * keyboard.c (Vdelayed_warnings_list): Doc fix.
14969
14970 2012-04-01 Eli Zaretskii <eliz@gnu.org>
14971
14972 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
14973 instead of alloca. (Bug#11138)
14974
14975 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
14976
14977 * w32menu.c (is_simple_dialog): Properly check lisp types.
14978 (Bug#11141)
14979
14980 2012-03-31 Eli Zaretskii <eliz@gnu.org>
14981
14982 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
14983 position we get to after a call to move_it_to fails the
14984 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
14985 only if we wind up in a string from display property. (Bug#11063)
14986
14987 * window.c (Fdelete_other_windows_internal): Invalidate the row
14988 and column information about mouse highlight, so that redisplay
14989 restores it after reallocating the glyph matrices. (Bug#7464)
14990
14991 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
14992 string comes from a `display' text property, use the buffer
14993 position of that property as if we actually saw that position in
14994 the row's glyphs.
14995 (move_it_by_lines): Remove the assertion that
14996 "it->current_x == 0 && it->hpos == 0" which can be legitimately
14997 violated when there's a before-string at the beginning of a line.
14998 (Bug#11063)
14999
15000 2012-03-30 Eli Zaretskii <eliz@gnu.org>
15001
15002 * xdisp.c (append_space_for_newline): If the default face was
15003 remapped, use the remapped face for the appended newline.
15004 (extend_face_to_end_of_line): Use the remapped default face for
15005 extending the face to the end of the line.
15006 (display_line): Call extend_face_to_end_of_line when the default
15007 face was remapped. (Bug#11068)
15008
15009 2012-03-29 Eli Zaretskii <eliz@gnu.org>
15010
15011 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
15012
15013 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
15014
15015 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
15016
15017 2012-03-27 Glenn Morris <rgm@gnu.org>
15018
15019 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
15020 Doc fixes.
15021
15022 2012-03-26 Kenichi Handa <handa@m17n.org>
15023
15024 * dispextern.h (struct glyph): Fix previous change. Change the
15025 bit length of glyphless.ch to 25 (Bug#11082).
15026
15027 2012-03-26 Chong Yidong <cyd@gnu.org>
15028
15029 * keyboard.c (Vselection_inhibit_update_commands): New variable.
15030 (command_loop_1): Use it; inhibit selection update for
15031 handle-select-window too (Bug#8996).
15032
15033 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
15034
15035 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
15036
15037 2012-03-25 Kenichi Handa <handa@m17n.org>
15038
15039 * dispextern.h (struct glyph): Change the bit length of
15040 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
15041
15042 2012-03-24 Eli Zaretskii <eliz@gnu.org>
15043
15044 * s/ms-w32.h (tzname): Include time.h before redirecting to
15045 _tzname. Fixes the MSVC build. (Bug#9960)
15046
15047 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
15048
15049 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
15050 characters.
15051
15052 * xterm.c (XTread_socket): Only modify handling_signal if
15053 !SYNC_INPUT. (Bug#11080)
15054
15055 2012-03-23 Eli Zaretskii <eliz@gnu.org>
15056
15057 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
15058 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
15059 when fetching a multibyte character consumes more bytes than
15060 CHAR_BYTES returns, due to unification of CJK characters in
15061 string_char. (Bug#11073)
15062
15063 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
15064
15065 * process.c (wait_reading_process_output): Handle pty disconnect
15066 by refraining from sending oneself a SIGCHLD (bug#10933).
15067
15068 2012-03-22 Chong Yidong <cyd@gnu.org>
15069
15070 * dispextern.h (struct it): New member string_from_prefix_prop_p.
15071
15072 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
15073 Mark string as coming from a prefix property.
15074 (handle_face_prop): Use default face for prefix strings (Bug#4281).
15075 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
15076
15077 2012-03-21 Chong Yidong <cyd@gnu.org>
15078
15079 * xfaces.c (Vface_remapping_alist): Doc fix.
15080
15081 2012-03-20 Eli Zaretskii <eliz@gnu.org>
15082
15083 * w32proc.c (Fw32_set_console_codepage)
15084 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
15085 Doc fixes.
15086
15087 2012-03-20 Chong Yidong <cyd@gnu.org>
15088
15089 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
15090 to reflect default non-nil value of redisplay-dont-pause.
15091
15092 2012-03-19 Kenichi Handa <handa@m17n.org>
15093
15094 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
15095 it fit in a valid range (Bug#11003).
15096
15097 2012-03-18 Eli Zaretskii <eliz@gnu.org>
15098
15099 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
15100 that is not from display property, accept the row as a "cursor
15101 row" if one of the string's character has a non-nil `cursor'
15102 property. Fixes cursor positioning when there are newlines in
15103 overlay strings, e.g. in icomplete.el. (Bug#11035)
15104
15105 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
15106
15107 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
15108
15109 2012-03-12 Chong Yidong <cyd@gnu.org>
15110
15111 * eval.c (inhibit_lisp_code): Rename from
15112 inhibit_window_configuration_change_hook; move from window.c.
15113
15114 * xfns.c (unwind_create_frame_1, Fx_create_frame):
15115 * window.c (run_window_configuration_change_hook)
15116 (syms_of_window): Callers changed.
15117
15118 2012-03-11 Chong Yidong <cyd@gnu.org>
15119
15120 * keymap.c (Fkey_description): Doc fix (Bug#9700).
15121
15122 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
15123
15124 2012-03-10 Chong Yidong <cyd@gnu.org>
15125
15126 * frame.c (other_visible_frames): Don't assume the selected frame
15127 is visible (Bug#10955).
15128
15129 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
15130
15131 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
15132
15133 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
15134
15135 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
15136 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
15137 zero (Bug#10954).
15138
15139 2012-03-03 Glenn Morris <rgm@gnu.org>
15140
15141 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
15142
15143 2012-03-02 Eli Zaretskii <eliz@gnu.org>
15144
15145 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
15146 position past the first glyph_row that ends at ZV. (Bug#10902)
15147 (redisplay_window, next_element_from_string): Fix typos in
15148 comments.
15149 (redisplay_window): Pass to move_it_vertically the margin in
15150 pixels, not in screen lines.
15151
15152 2012-03-02 Glenn Morris <rgm@gnu.org>
15153
15154 * buffer.c (buffer-list-update-hook): Doc fix.
15155
15156 2012-02-29 Eli Zaretskii <eliz@gnu.org>
15157
15158 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
15159 push_it before setting up the iterator for the first overlay
15160 string, even if we have an empty string loaded.
15161 (next_overlay_string): If there's an empty string on the iterator
15162 stack, pop the stack. (Bug#10903)
15163
15164 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
15165
15166 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
15167 Suggested by Stefan Monnier in
15168 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
15169 * alloc.c (widen_to_Lisp_Object): New static function.
15170 (mark_memory): Also mark Lisp_Objects by fetching pointer words
15171 and widening them to Lisp_Objects. This would work even if
15172 USE_LSB_TAG is defined and wide integers are used, which might
15173 happen in a future version of Emacs.
15174
15175 2012-02-25 Chong Yidong <cyd@gnu.org>
15176
15177 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
15178 Doc fix.
15179
15180 * xselect.c (Fx_selection_exists_p): Doc fix.
15181 (x_clipboard_manager_save_all): Print an informative message
15182 before saving to clipboard manager.
15183
15184 2012-02-24 Chong Yidong <cyd@gnu.org>
15185
15186 * keyboard.c (process_special_events): Handle all X selection
15187 requests in kbd_buffer, not just the next one (Bug#8869).
15188
15189 2012-02-23 Chong Yidong <cyd@gnu.org>
15190
15191 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
15192 call when setting menu-bar-lines and tool-bar-lines parameters.
15193 (unwind_create_frame_1): New helper function.
15194
15195 * window.c (inhibit_window_configuration_change_hook): New var.
15196 (run_window_configuration_change_hook): Obey it.
15197 (syms_of_window): Initialize it.
15198
15199 2012-02-22 Chong Yidong <cyd@gnu.org>
15200
15201 * xterm.c (x_draw_image_relief): Add missing type check for
15202 Vtool_bar_button_margin (Bug#10743).
15203
15204 2012-02-21 Chong Yidong <cyd@gnu.org>
15205
15206 * fileio.c (Vfile_name_handler_alist): Doc fix.
15207
15208 * buffer.c (Fget_file_buffer): Protect against invalid file
15209 handler return value.
15210
15211 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
15212
15213 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
15214 when computing $valmask.
15215
15216 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
15217 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
15218 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
15219 It's useless in that case, and it can cause problems on hosts
15220 that allocate halves of EMACS_INT values separately.
15221 Reported by Dan Horák. Diagnosed by Andreas Schwab in
15222 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
15223 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
15224 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
15225 it avoids undefined behavior on hosts where shifting right by more
15226 than the word width has undefined behavior.
15227
15228 2012-02-19 Chong Yidong <cyd@gnu.org>
15229
15230 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
15231 (Funhandled_file_name_directory, Ffile_name_as_directory)
15232 (Fdirectory_file_name, Fexpand_file_name)
15233 (Fsubstitute_in_file_name): Protect against invalid file handler
15234 return values (Bug#10845).
15235
15236 2012-02-18 Eli Zaretskii <eliz@gnu.org>
15237
15238 * .gdbinit (pitx): Fix incorrect references to fields of the
15239 iterator stack.
15240
15241 2012-02-17 Chong Yidong <cyd@gnu.org>
15242
15243 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
15244
15245 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
15246
15247 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
15248 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
15249
15250 2012-02-15 Chong Yidong <cyd@gnu.org>
15251
15252 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
15253 marked as special. Also, starting docstrings with * is obsolete.
15254
15255 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
15256
15257 * gnutls.c (emacs_gnutls_write): Fix last change.
15258
15259 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
15260
15261 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
15262 send_process.
15263
15264 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
15265
15266 * keymap.c (Fsingle_key_description): Handle char ranges.
15267
15268 2012-02-12 Chong Yidong <cyd@gnu.org>
15269
15270 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
15271 as that creates a dangerous corner case.
15272
15273 * window.c (Fdelete_window_internal): Invalidate the mouse
15274 highlight (Bug#9904).
15275
15276 2012-02-12 Glenn Morris <rgm@gnu.org>
15277
15278 * xselect.c (Fx_own_selection_internal)
15279 (Fx_get_selection_internal, Fx_disown_selection_internal)
15280 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
15281 * nsselect.m (Fx_own_selection_internal)
15282 (Fx_disown_selection_internal, Fx_selection_exists_p)
15283 (Fx_selection_owner_p, Fx_get_selection_internal):
15284 Sync docs and argument specs with the xselect.c versions.
15285
15286 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
15287
15288 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
15289
15290 2012-02-11 Eli Zaretskii <eliz@gnu.org>
15291
15292 * w32select.c (Fx_selection_exists_p): Sync doc string and
15293 argument list with xselect.c. (Bug#10783)
15294
15295 * w16select.c (Fx_selection_exists_p): Sync doc string and
15296 argument list with xselect.c. (Bug#10783)
15297
15298 2012-02-10 Glenn Morris <rgm@gnu.org>
15299
15300 * fns.c (Fsecure_hash): Doc fix.
15301
15302 2012-02-09 Kenichi Handa <handa@m17n.org>
15303
15304 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
15305
15306 2012-02-07 Chong Yidong <cyd@gnu.org>
15307
15308 * buffer.c (Fbuffer_local_variables)
15309 (buffer_lisp_local_variables): Handle unbound vars correctly;
15310 don't let Qunbound leak into Lisp.
15311
15312 2012-02-07 Glenn Morris <rgm@gnu.org>
15313
15314 * image.c (Fimagemagick_types): Doc fix.
15315
15316 * image.c (imagemagick-render-type): Change it from a lisp object
15317 to an integer. Move the doc here from the lisp manual.
15318 Treat all values not equal to 0 the same.
15319
15320 2012-02-06 Chong Yidong <cyd@gnu.org>
15321
15322 * doc.c (store_function_docstring): Avoid applying docstring of
15323 alias to base function (Bug#2603).
15324
15325 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
15326
15327 * .gdbinit (pp1, pv1): Remove redundant defines.
15328 (pr): Use pp.
15329
15330 2012-02-04 Chong Yidong <cyd@gnu.org>
15331
15332 * nsterm.m: Declare a global (Bug#10694).
15333
15334 2012-02-04 Eli Zaretskii <eliz@gnu.org>
15335
15336 * w32.c (get_emacs_configuration_options):
15337 Include --enable-checking, if specified, in the return value.
15338
15339 2012-02-04 Martin Rudalics <rudalics@gmx.at>
15340
15341 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
15342 after rounding frame sizes. (Bug#9723)
15343
15344 2012-02-04 Eli Zaretskii <eliz@gnu.org>
15345
15346 * keyboard.c (adjust_point_for_property): Don't position point
15347 before BEGV. (Bug#10696)
15348
15349 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
15350
15351 Handle overflow when computing char display width (Bug#9496).
15352 * character.c (char_width): Return EMACS_INT, not int.
15353 (char_width, c_string_width): Check for overflow when
15354 computing the width; this is possible now that individual
15355 characters can have unbounded width. Problem introduced
15356 by merge from Emacs 23 on 2012-01-19.
15357
15358 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
15359
15360 * dbusbind.c (Fdbus_register_method): Mention the return value
15361 :ignore in the docstring.
15362
15363 2012-02-02 Glenn Morris <rgm@gnu.org>
15364
15365 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
15366
15367 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
15368 Unconditionally set to t. (Bug#10673)
15369 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
15370 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
15371 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
15372
15373 2012-02-02 Kenichi Handa <handa@m17n.org>
15374
15375 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
15376 0, do not call append_composite_glyph.
15377
15378 2012-02-02 Kenichi Handa <handa@m17n.org>
15379
15380 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
15381 NULL (Bug#6988).
15382 (x_produce_glyphs): If the component of a composition is a null
15383 string, set it->pixel_width to 1 to avoid zero-width glyph.
15384
15385 2012-02-01 Eli Zaretskii <eliz@gnu.org>
15386
15387 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
15388 first 2 arguments are identical. This makes inserting large
15389 output from a subprocess an order of magnitude faster on
15390 MS-Windows, where all sbrk'ed memory is always contiguous.
15391
15392 2012-01-31 Glenn Morris <rgm@gnu.org>
15393
15394 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
15395 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
15396 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
15397
15398 2012-01-29 Glenn Morris <rgm@gnu.org>
15399
15400 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
15401
15402 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
15403
15404 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
15405
15406 2012-01-28 Chong Yidong <cyd@gnu.org>
15407
15408 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
15409
15410 2012-01-26 Chong Yidong <cyd@gnu.org>
15411
15412 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
15413
15414 * search.c (Fsearch_forward, Fsearch_backward): Document negative
15415 repeat counts (Bug#10507).
15416
15417 2012-01-26 Glenn Morris <rgm@gnu.org>
15418
15419 * lread.c (syms_of_lread): Doc fix.
15420
15421 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
15422
15423 * coding.c (encode_designation_at_bol): Change return value to
15424 EMACS_INT.
15425
15426 2012-01-25 Chong Yidong <cyd@gnu.org>
15427
15428 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
15429
15430 2012-01-21 Chong Yidong <cyd@gnu.org>
15431
15432 * floatfns.c (Fcopysign): Make the second argument non-optional,
15433 since nil is not allowed anyway.
15434
15435 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
15436
15437 * process.c (read_process_output): Use p instead of XPROCESS (proc).
15438 (send_process): Likewise.
15439
15440 2012-01-19 Martin Rudalics <rudalics@gmx.at>
15441
15442 * window.c (save_window_save, Fcurrent_window_configuration)
15443 (Vwindow_persistent_parameters): Do not use Qstate.
15444 Rewrite doc-strings.
15445
15446 2012-01-19 Kenichi Handa <handa@m17n.org>
15447
15448 * character.c (char_width): New function.
15449 (Fchar_width, c_string_width, lisp_string_width):
15450 Use char_width (Bug#9496).
15451
15452 2012-01-16 Martin Rudalics <rudalics@gmx.at>
15453
15454 * window.c (Vwindow_persistent_parameters): New variable.
15455 (Fset_window_configuration, save_window_save): Handle persistent
15456 window parameters.
15457
15458 2012-01-14 Eli Zaretskii <eliz@gnu.org>
15459
15460 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
15461 thrashing the stack of the thread. (Bug#9087)
15462
15463 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
15464
15465 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
15466
15467 2012-01-11 Eli Zaretskii <eliz@gnu.org>
15468
15469 * xdisp.c (rows_from_pos_range): Handle the case where the
15470 highlight ends on a newline. (Bug#10464)
15471 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
15472 he end column for display of highlight that ends on a newline
15473 before a R2L line.
15474
15475 2012-01-11 Glenn Morris <rgm@gnu.org>
15476
15477 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
15478 from load-path also when installation-directory is nil. (Bug#10208)
15479
15480 2012-01-10 Glenn Morris <rgm@gnu.org>
15481
15482 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
15483
15484 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
15485 Update template values to be closer to their typical values these days.
15486
15487 2012-01-09 Eli Zaretskii <eliz@gnu.org>
15488
15489 * xdisp.c (rows_from_pos_range): Accept additional argument
15490 DISP_STRING, and accept any glyph in a row whose object is that
15491 string as eligible for mouse highlight. Fixes mouse highlight of
15492 display strings from overlays. (Bug#10464)
15493
15494 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
15495
15496 emacs: fix an auto-save permissions race condition (Bug#10400)
15497 * fileio.c (auto_saving_dir_umask): New static var.
15498 (Fmake_directory_internal): Use it.
15499 (do_auto_save_make_dir): Set it, instead of invoking chmod after
15500 creating the directory. The old code temporarily assigns
15501 too-generous permissions to the directory.
15502 (do_auto_save_eh): Clear it.
15503 (Fdo_auto_save): Catch all errors, not just file errors, so
15504 that the var is always cleared.
15505
15506 2012-01-07 Eli Zaretskii <eliz@gnu.org>
15507
15508 * search.c (scan_buffer): Pass character positions to
15509 know_region_cache, not byte positions. (Bug#6540)
15510
15511 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
15512
15513 * w32.c (sys_rename): Report EXDEV when rename of a directory
15514 fails because the target is on another logical disk. (Bug#10284)
15515
15516 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
15517
15518 * xterm.c (x_embed_request_focus): New function.
15519
15520 * xterm.h: Add prototype.
15521
15522 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
15523
15524 2012-01-05 Glenn Morris <rgm@gnu.org>
15525
15526 * emacs.c (emacs_copyright): Update short copyright year to 2012.
15527
15528 2012-01-01 Eli Zaretskii <eliz@gnu.org>
15529
15530 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
15531 Load gnutls_transport_set_lowat only if GnuTLS version is below
15532 2.11.1.
15533 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
15534 GnuTLS versions below 2.11.1.
15535
15536 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
15537
15538 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
15539 to the doc string advising against its use for altering the way
15540 windows are scrolled.
15541
15542 2011-12-28 Kenichi Handa <handa@m17n.org>
15543
15544 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
15545 coding-system ASCII compatible only when it does not produce BOM
15546 on encoding (Bug#10383).
15547
15548 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
15549
15550 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
15551 can scroll.
15552 (create_and_show_popup_menu): Always use menu_position_func for
15553 Gtk3 (Bug#10361).
15554
15555 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
15556
15557 * callint.c (Fcall_interactively): Don't truncate prompt string.
15558
15559 2011-12-23 Eli Zaretskii <eliz@gnu.org>
15560
15561 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
15562 property that ends at ZV, so that the bidi iteration could be
15563 resumed from there (after widening). (Bug#10360)
15564
15565 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
15566
15567 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
15568
15569 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
15570
15571 * nsterm.m (x_free_frame_resources):
15572 Release f->output_data.ns->miniimage.
15573 (ns_index_color): Fix indentation. Do not retain
15574 color_table->colors[i].
15575
15576 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
15577 before returning.
15578
15579 * nsfns.m (x_set_background_color): Assign return value from
15580 ns_index_color to face-background instead of NSColor*.
15581 (ns_implicitly_set_icon_type): Fix indentation.
15582 Change assignment in for loop to comparison.
15583
15584 * emacs.c (ns_pool): New variable.
15585 (main): Assign ns_pool.
15586 (Fkill_emacs): Call ns_release_autorelease_pool.
15587
15588 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
15589 autorelease fdesc, release fdAttrs and tdict.
15590 (ns_get_covering_families): Release charset.
15591 (ns_findfonts): Release NSFontDescriptor created with new.
15592 (ns_uni_to_glyphs): Fix indentation.
15593 (setString): Release attrStr before assigning new value.
15594
15595 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
15596
15597 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
15598 and NS_IMPL_COCOA.
15599 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
15600 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
15601
15602 2011-12-18 David Reitter <reitter@cmu.edu>
15603
15604 * nsterm.m (ns_term_init): Subscribe for notifications
15605 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
15606 to method trackingNotification in EmacsMenu.
15607
15608 * nsmenu.m (trackingMenu): New variable.
15609 (trackingNotification): New method (from Aquamacs).
15610 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
15611 from Aquamacs (Bug#7030).
15612
15613 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
15614
15615 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
15616 (symbol_to_nsstring): Fix indentation.
15617 (ns_symbol_to_pb): New function.
15618 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
15619 (Fns_rotate_cut_buffers_internal): Remove.
15620 (Fns_store_selection_internal): Rename from
15621 Fns_store_cut_buffer_internal.
15622 (ns_get_foreign_selection, Fx_own_selection_internal)
15623 (Fx_disown_selection_internal, Fx_selection_exists_p)
15624 (Fns_get_selection_internal, Fns_store_selection_internal):
15625 Use ns_symbol_to_pb and check if return value is nil.
15626 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
15627 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
15628 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
15629 renamed to Sns_store_selection_internal.
15630 (ns_handle_selection_request): Move code to Fx_own_selection_internal
15631 and remove this function.
15632 (ns_handle_selection_clear): Remove, never used.
15633 (Fx_own_selection_internal): Move code from ns_handle_selection_request
15634 here.
15635
15636 2011-12-17 Ken Brown <kbrown@cornell.edu>
15637
15638 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
15639 GID is unknown (Bug#10257).
15640
15641 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
15642
15643 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
15644 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
15645 which caused a build failure on GNU/Linux IA-64. This problem was
15646 introduced by my 2011-10-07 patch.
15647
15648 2011-12-15 Juri Linkov <juri@jurta.org>
15649
15650 * image.c (imagemagick_error): New function. (Bug#10112)
15651 (imagemagick_load_image): Comment out `MagickSetResolution' call.
15652 Use `imagemagick_error' where ImageMagick functions return
15653 `MagickFalse'.
15654 (Fimagemagick_types): Add `Fnreverse' to return the list in the
15655 proper order.
15656
15657 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15658
15659 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
15660 fill background (Bug#8992).
15661
15662 2011-12-13 Martin Rudalics <rudalics@gmx.at>
15663
15664 * window.c (Vwindow_combination_resize)
15665 (Vwindow_combination_limit): Use t instead of non-nil in
15666 doc-strings.
15667 (Vrecenter_redisplay): Add first sentence of doc-string on
15668 separate line.
15669 (Frecenter): Fix doc-string typo.
15670
15671 2011-12-11 Kenichi Handa <handa@m17n.org>
15672
15673 * coding.c (Funencodable_char_position): Pay attention to the
15674 buffer text relocation (Bug#9389).
15675
15676 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
15677
15678 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
15679 gtk_init (Bug#10100).
15680
15681 2011-12-10 Eli Zaretskii <eliz@gnu.org>
15682
15683 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
15684 IT->string is nil. (Bug#10263)
15685
15686 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
15687
15688 * nsterm.h (x_free_frame_resources): Declare.
15689
15690 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
15691 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
15692
15693 * nsterm.h (ns_get_defaults_value): Declare.
15694
15695 * nsterm.m (ns_default): Call ns_get_defaults_value.
15696
15697 2011-12-09 Eli Zaretskii <eliz@gnu.org>
15698
15699 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
15700 (Bug#10170)
15701
15702 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15703
15704 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
15705 that where the value of an _OBJC_* symbol points to is in the .bss
15706 section (Bug#10240).
15707
15708 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15709
15710 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
15711 after the loop to call ccl_driver at least once (Bug#8619).
15712
15713 2011-12-08 Kenichi Handa <handa@m17n.org>
15714
15715 * ftfont.c (get_adstyle_property): Fix previous change
15716 (Bug#10233).
15717
15718 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
15719
15720 * w32.c (init_environment): If no_site_lisp, remove site-lisp
15721 dirs from the default value of EMACSLOADPATH (bug#10208).
15722
15723 2011-12-07 Glenn Morris <rgm@gnu.org>
15724
15725 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
15726 installation and source directories as well. (Bug#10208)
15727
15728 2011-12-06 Chong Yidong <cyd@gnu.org>
15729
15730 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
15731
15732 2011-12-06 Glenn Morris <rgm@gnu.org>
15733
15734 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
15735 as an error, not just -1. (Bug#10217)
15736
15737 2011-12-05 Chong Yidong <cyd@gnu.org>
15738
15739 * keyboard.c (process_special_events): New function.
15740 (swallow_events, Finput_pending_p): Use it (Bug#10195).
15741
15742 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
15743
15744 * coding.c (encode_designation_at_bol): Don't use uninitialized
15745 local variable (Bug#9318).
15746
15747 2011-12-05 Kenichi Handa <handa@m17n.org>
15748
15749 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
15750 return Qnil (Bug#8046, Bug#10193).
15751
15752 2011-12-05 Kenichi Handa <handa@m17n.org>
15753
15754 * coding.c (encode_designation_at_bol): New args charbuf_end and
15755 dst. Return the number of produced bytes. Callers changed.
15756 (coding_set_source): Return how many bytes coding->source was
15757 relocated.
15758 (coding_set_destination): Return how many bytes
15759 coding->destination was relocated.
15760 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
15761 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
15762
15763 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
15764
15765 * coding.c (CODING_CHAR_CHARSET_P): New macro.
15766 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
15767 macro (Bug#9318).
15768
15769 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
15770
15771 The following changes are to fix Bug#9318.
15772
15773 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
15774 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
15775 (encode_coding_iso_2022, encode_coding_sjis)
15776 (encode_coding_big5, encode_coding_charset): Use the above macros.
15777
15778 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
15779
15780 * lisp.h (process_quit_flag): Fix external declaration.
15781
15782 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
15783
15784 Don't macro-inline non-performance-critical code.
15785 * eval.c (process_quit_flag): New function.
15786 * lisp.h (QUIT): Use it.
15787
15788 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
15789
15790 * nsfns.m (get_geometry_from_preferences): New function.
15791 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
15792
15793 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
15794
15795 * emacs.c (Qkill_emacs): Define.
15796 (syms_of_emacs): Initialize it.
15797 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
15798 Qquit_flag to `kill-emacs' instead.
15799 (quit_throw_to_read_char): Add parameter `from_signal'.
15800 All callers changed. Call Fkill_emacs if requested and safe.
15801 * lisp.h (QUIT): Call Fkill_emacs if requested.
15802
15803 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
15804
15805 * widget.c (update_wm_hints): Return if wmshell is null.
15806 (widget_update_wm_size_hints): New function.
15807
15808 * widget.h (widget_update_wm_size_hints): Declare.
15809
15810 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
15811 widget_update_wm_size_hints (Bug#10104).
15812
15813 2011-12-03 Eli Zaretskii <eliz@gnu.org>
15814
15815 * xdisp.c (handle_invisible_prop): If the invisible text ends just
15816 before a newline, prepare the bidi iterator for consuming the
15817 newline, and keep the current paragraph direction. (Bug#10183)
15818 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
15819
15820 2011-12-02 Juri Linkov <juri@jurta.org>
15821
15822 * search.c (Fword_search_regexp): New Lisp function created from
15823 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
15824 (Fword_search_backward, Fword_search_forward)
15825 (Fword_search_backward_lax, Fword_search_forward_lax):
15826 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
15827 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
15828
15829 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
15830
15831 * fileio.c (Finsert_file_contents): Move after-change-function call
15832 to before the "handled:" label, since all "goto handled" appear in
15833 cases where the *-change-functions have already been properly called
15834 (bug#10117).
15835
15836 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
15837
15838 * keyboard.c (interrupt_signal): Don't call kill-emacs when
15839 waiting for input. (Bug#10169)
15840
15841 2011-11-30 Eli Zaretskii <eliz@gnu.org>
15842
15843 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
15844 verifies glyph row's hash code--we have just reallocated the
15845 glyphs, so their contents can be complete garbage. (Bug#10164)
15846
15847 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
15848
15849 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
15850
15851 2011-11-30 Eli Zaretskii <eliz@gnu.org>
15852
15853 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
15854 attributes are tested _before_ calling verify_row_hash, to protect
15855 against GCC re-ordering of the tests. (Bug#10164)
15856
15857 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
15858
15859 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
15860
15861 * xterm.c (handle_one_xevent): Only set async_visible and friends
15862 if net_wm_state_hidden_seen is non-zero (Bug#10002)
15863 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
15864 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
15865
15866 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
15867
15868 Remove GCPRO-related macros that exist only to avoid shadowing locals.
15869 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
15870 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
15871 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
15872 All uses changed to use GCPRO1 etc.
15873 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
15874 Revert to old implementation (i.e., before 2011-03-11).
15875
15876 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15877
15878 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
15879 of scroll runs so as to avoid assigning disabled bogus rows and
15880 unnecessary graphics copy operations.
15881
15882 2011-11-27 Eli Zaretskii <eliz@gnu.org>
15883
15884 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
15885 (snprintf) [_MSC_VER]: Redirect to _snprintf.
15886 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
15887 (malloc, free, realloc, calloc): Redirect to e_* only when
15888 compiling Emacs.
15889
15890 * lisp.h (GCTYPEBITS): Move before first use.
15891 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
15892 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
15893 this macro definition.
15894
15895 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
15896 _MSC_VER.
15897
15898 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
15899
15900 * gtkutil.c (xg_create_frame_widgets):
15901 Call gtk_window_set_has_resize_grip (FALSE) if that function is
15902 present with Gtk+ 2.0.
15903
15904 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
15905
15906 * fileio.c (Finsert_file_contents): Undo previous change; see
15907 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
15908
15909 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
15910
15911 Rename locals to avoid shadowing.
15912 * fileio.c (Finsert_file_contents):
15913 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
15914 * process.c (wait_reading_process_output):
15915 Rename inner 'proc' to 'p' to avoid shadowing.
15916 Indent for consistency with usual Emacs style.
15917
15918 2011-11-25 Eli Zaretskii <eliz@gnu.org>
15919
15920 * xdisp.c (redisplay_window): If cursor row is not fully visible
15921 after recentering, and scroll-conservatively is set to a large
15922 number, scroll window by a few more lines to make the cursor fully
15923 visible and out of scroll-margin. (Bug#10105)
15924 (start_display): Don't move to the next line if the display should
15925 start at a newline that is part of a display vector or an overlay
15926 string. (Bug#10119)
15927
15928 2011-11-24 Juri Linkov <juri@jurta.org>
15929
15930 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
15931 after the `MagickPingImage' call. (Bug#10112)
15932
15933 2011-11-23 Chong Yidong <cyd@gnu.org>
15934
15935 * window.c (Fcoordinates_in_window_p): Accept only live windows.
15936
15937 2011-11-23 Martin Rudalics <rudalics@gmx.at>
15938
15939 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
15940 making another buffer current. (Bug#10114)
15941
15942 2011-11-23 Glenn Morris <rgm@gnu.org>
15943
15944 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
15945
15946 2011-11-23 Chong Yidong <cyd@gnu.org>
15947
15948 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
15949 using it (Bug#5984).
15950
15951 2011-11-22 Eli Zaretskii <eliz@gnu.org>
15952
15953 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
15954 and header-lines, as they don't have one computed for them.
15955 (Bug#10098)
15956
15957 * .gdbinit (prow): Make displayed values more self-explaining.
15958 Add row's hash code.
15959
15960 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
15961
15962 * process.c (wait_reading_process_output): Fix asynchrounous
15963 GnuTLS socket handling on some versions of the GnuTLS library.
15964 (wait_reading_process_output): Add comment and URL.
15965
15966 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
15967
15968 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
15969
15970 2011-11-21 Chong Yidong <cyd@gnu.org>
15971
15972 * window.c (Fnext_window, Fprevious_window): Doc fix.
15973
15974 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15975
15976 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
15977
15978 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15979
15980 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
15981
15982 2011-11-20 Martin Rudalics <rudalics@gmx.at>
15983
15984 * window.c (Fset_window_combination_limit): Rename argument
15985 STATUS to LIMIT.
15986 (Vwindow_combination_limit): Remove "status" from doc-string.
15987
15988 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
15989
15990 * m/ibms390.h: Remove.
15991 * m/ibms390x.h: Don't include "ibms390.h".
15992
15993 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15994
15995 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
15996 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
15997
15998 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15999
16000 * casetab.c (Fset_case_table):
16001 * charset.c (Fcharset_after): Fix typos.
16002
16003 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
16004
16005 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
16006 Otherwise, valgrind does not work on some platforms.
16007 Problem reported by Andreas Schwab in
16008 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
16009 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
16010 is set, removing the need for VIRT_ADDRESS_VARIES.
16011 (PURE_P): Use a more-efficient implementation that needs just one
16012 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
16013 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
16014 to 4 (xorl, subq, cmpq, setbe).
16015 * alloc.c (pure): Always extern now, since that's the
16016 VIRT_ADDR_VARIES behavior.
16017 (PURE_POINTER_P): Use a single comparison, not two, for
16018 consistency with the new puresize.h.
16019 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
16020 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
16021 Remove VIRT_ADDR_VARIES no longer needed.
16022
16023 2011-11-19 Eli Zaretskii <eliz@gnu.org>
16024
16025 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
16026 (erase_phys_cursor, update_window_cursor, show_mouse_face)
16027 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
16028 behave as if the cursor position were at the window margin.
16029
16030 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
16031 and the cursor position is out of bounds, behave as if the cursor
16032 position were at the window margin. (Bug#10075)
16033
16034 2011-11-18 Chong Yidong <cyd@gnu.org>
16035
16036 * window.c (Fwindow_combination_limit): Make first argument
16037 non-optional, since it is meaningless for live windows like the
16038 selected window.
16039
16040 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
16041
16042 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
16043
16044 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
16045
16046 * intervals.c: Fix grafting over the whole buffer (bug#10071).
16047 (graft_intervals_into_buffer): Simplify.
16048
16049 2011-11-18 Eli Zaretskii <eliz@gnu.org>
16050
16051 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
16052 hash values of the two rows.
16053 (copy_row_except_pointers): Preserve the used[] arrays and the
16054 hash values of the two rows. (Bug#10035)
16055 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
16056
16057 * xdisp.c (row_hash): New function, body extracted from
16058 compute_line_metrics.
16059 (compute_line_metrics): Call row_hash, instead of computing the
16060 hash code inline.
16061
16062 * dispnew.c (verify_row_hash): Call row_hash for computing the
16063 hash code of a row, instead of duplicating code from xdisp.c.
16064
16065 * dispextern.h (row_hash): Add prototype.
16066
16067 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
16068
16069 * frame.c (delete_frame): Don't delete the terminal when the last
16070 X frame is closed if emacs is built with GTK toolkit.
16071
16072 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
16073
16074 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
16075
16076 2011-11-17 Martin Rudalics <rudalics@gmx.at>
16077
16078 * window.c (Vwindow_splits): Rename to
16079 Vwindow_combination_resize. Suggested by Juri Linkov.
16080 (Fsplit_window_internal): Use Vwindow_combination_resize instead
16081 of Vwindow_splits.
16082
16083 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
16084
16085 * nsfns.m (Fns_font_name):
16086 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
16087
16088 2011-11-16 Martin Rudalics <rudalics@gmx.at>
16089
16090 * window.h (window): Rename slot "nest" to "combination_limit".
16091 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
16092 (Fset_window_nest): Rename to Fset_window_combination_limit.
16093 (Vwindow_nest): Rename to Vwindow_combination_limit.
16094 (recombine_windows, make_parent_window, make_window)
16095 (Fsplit_window_internal, saved_window)
16096 (Fset_window_configuration, save_window_save): Rename all
16097 occurrences of window_nest to window_combination_limit.
16098
16099 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
16100
16101 * image.c (imagemagick_load_image): Fix typo.
16102
16103 2011-11-14 Eli Zaretskii <eliz@gnu.org>
16104
16105 * xdisp.c (display_line): Move the call to
16106 highlight_trailing_whitespace before the call to
16107 compute_line_metrics, since the latter needs to see the final
16108 faces of all the glyphs to compute ROW's hash value.
16109 Fixes assertion violations in row_equal_p. (Bug#10035)
16110
16111 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
16112
16113 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
16114 just return (bug#10044).
16115
16116 2011-11-12 Eli Zaretskii <eliz@gnu.org>
16117
16118 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
16119 with user-defined heap size. Bump the default size of the temacs
16120 heap to 27MB, to avoid memory warning when running temacs.
16121 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
16122
16123 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
16124 current_matrix and desired_matrix. (Bug#9990)
16125 (verify_row_hash) [XASSERTS]: New function.
16126 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
16127 that the hash value of glyph rows is correct.
16128
16129 2011-11-12 Martin Rudalics <rudalics@gmx.at>
16130
16131 * window.h (window): Remove splits slot.
16132 * window.c (Fwindow_splits, Fset_window_splits): Remove.
16133 (Fdelete_other_windows_internal, make_parent_window)
16134 (make_window, Fsplit_window_internal, Fdelete_window_internal)
16135 (Fset_window_configuration, save_window_save): Don't deal with
16136 split status of windows.
16137 (saved_window): Remove splits slot.
16138 (Vwindow_splits): Rewrite doc-string.
16139
16140 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
16141
16142 * xfns.c (unwind_create_frame):
16143 * nsfns.m (unwind_create_frame):
16144 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
16145 Vframe_list (Bug#9999).
16146
16147 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
16148
16149 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
16150
16151 2011-11-11 Kenichi Handa <handa@m17n.org>
16152
16153 * callproc.c (Fcall_process): Set the member dst_multibyte of
16154 process_coding.
16155
16156 2011-11-11 Johan Bockgård <bojohan@gnu.org>
16157
16158 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
16159 avoid a crash (bug#9496).
16160
16161 2011-11-09 Chong Yidong <cyd@gnu.org>
16162
16163 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
16164 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
16165
16166 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
16167
16168 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
16169
16170 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
16171
16172 Avoid some portability problems by eschewing 'extern inline' functions.
16173 The trivial performance wins aren't worth the portability hassles; see
16174 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
16175 et seq.
16176 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
16177 (window_box_width, window_box_left, window_box_left_offset)
16178 (window_box_right, window_box_right_offset): Undo previous change,
16179 by removing the "extern"s.
16180 * intervals.c (adjust_intervals_for_insertion)
16181 (adjust_intervals_for_deletion): Undo previous change,
16182 making these static again.
16183 (offset_intervals, temp_set_point_both, temp_set_point)
16184 (copy_intervals_to_string): No longer inline.
16185 * xdisp.c (window_text_bottom_y, window_box_width)
16186 (window_box_height, window_box_left_offset)
16187 (window_box_right_offset, window_box_left, window_box_right)
16188 (window_box): No longer inline.
16189
16190 2011-11-08 Chong Yidong <cyd@gnu.org>
16191
16192 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
16193 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
16194 Signal an error if not a live window.
16195 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
16196 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
16197
16198 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
16199
16200 * lisp.h (syms_of_abbrev): Remove declaration.
16201 Reported by CHENG Gao <chenggao@royau.me>.
16202
16203 2011-11-07 Eli Zaretskii <eliz@gnu.org>
16204
16205 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
16206 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
16207 of temacs in GUI mode.
16208
16209 2011-11-07 Martin Rudalics <rudalics@gmx.at>
16210
16211 * window.h: Declare delete_all_child_windows instead of
16212 delete_all_subwindows.
16213 * window.c (Fwindow_nest, Fset_window_nest)
16214 (Fset_window_new_total, Fset_window_new_normal)
16215 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
16216 (delete_all_subwindows): Rename to delete_all_child_windows.
16217 (Fdelete_other_windows_internal, Fset_window_configuration):
16218 Call delete_all_child_windows instead of delete_all_subwindows.
16219 * frame.c (delete_frame): Call delete_all_child_windows instead
16220 of delete_all_subwindows.
16221
16222 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
16223
16224 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
16225 This is also needed for porting to any host where GC_MARK_STACK is
16226 not GC_MAKE_GCPROS_NOOPS.
16227 (which_symbols): Use it.
16228
16229 2011-11-07 Kenichi Handa <handa@m17n.org>
16230
16231 * coding.c (coding_set_destination): Check coding->src_pos only
16232 when coding->src_object is a buffer (bug#9910).
16233
16234 * process.c (send_process): Set the member src_multibyte of coding
16235 to 0 (bug#9911) when sending a unibyte text.
16236
16237 * callproc.c (Fcall_process): Set the member src_multibyte of
16238 process_coding to 0 (bug#9912).
16239
16240 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16241
16242 * xmenu.c (cleanup_widget_value_tree): New function.
16243 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
16244 calling free_menubar_widget_value_tree directly (Bug#9830).
16245
16246 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
16247
16248 Fix some portability problems with 'inline'.
16249 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
16250 (window_box_width, window_box_left, window_box_left_offset)
16251 (window_box_right, window_box_right_offset): Declare extern.
16252 Otherwise, these inline functions do not conform to C99 and
16253 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
16254 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
16255 * intervals.c (adjust_intervals_for_insertion)
16256 (adjust_intervals_for_deletion): Now extern, because otherwise the
16257 extern inline functions 'offset_intervals' couldn't refer to it.
16258 (static_offset_intervals): Remove.
16259 (offset_intervals): Rewrite using the old contents of
16260 static_offset_intervals. The old version didn't conform to C99
16261 because an extern inline function contained a reference to an
16262 identifier with static linkage.
16263
16264 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
16265
16266 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
16267 GC.
16268
16269 2011-11-06 Eli Zaretskii <eliz@gnu.org>
16270
16271 * xdisp.c (init_iterator, reseat_to_string): Don't set the
16272 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
16273 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
16274 return Qleft_to_right.
16275
16276 2011-11-06 Chong Yidong <cyd@gnu.org>
16277
16278 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
16279 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
16280 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
16281 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
16282 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
16283 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
16284 (Fwindow_vscroll): Doc fix.
16285 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
16286 argument, since it makes no sense to pass a live window and for
16287 consistency with window-child.
16288
16289 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
16290
16291 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
16292 support MSVC.
16293
16294 2011-11-05 Jason Rumney <jasonr@gnu.org>
16295
16296 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
16297 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
16298 fonts (Bug#6029).
16299 (add_font_entity_to_list): Fix logic errors in mixed boolean and
16300 bitwise arithmetic preventing use of unicode-sip and non-truetype
16301 opentype fonts.
16302
16303 2011-11-05 Eli Zaretskii <eliz@gnu.org>
16304
16305 * s/ms-w32.h (fstat, stat, utime): Move redirections to
16306 "emacs"-only part.
16307
16308 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
16309 initialization code to keep similarity to xfns.c after changes
16310 from 2011-11-05.
16311
16312 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
16313
16314 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
16315 (unwind_create_frame): New function (Bug#9943).
16316 (Fx_create_frame): Restructure code to be more similar to the one in
16317 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
16318 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
16319 Move terminal->reference_count++ just before making the frame official
16320 (Bug#9943).
16321
16322 * nsterm.m (x_free_frame_resources): New function.
16323 (x_destroy_window): Move code to x_free_frame_resources.
16324
16325 * xfns.c (unwind_create_frame): Fix comment.
16326 (Fx_create_frame, x_create_tip_frame):
16327 Move terminal->reference_count++ just before making the frame
16328 official. Move initialization of image_cache_refcount and
16329 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
16330
16331 2011-11-05 Eli Zaretskii <eliz@gnu.org>
16332
16333 Support MSVC build with newer versions of Visual Studio.
16334 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
16335 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
16336 nt/gmake.defs.
16337
16338 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
16339 which are not supported by MSVC.
16340 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
16341 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
16342 bitfields.
16343 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
16344 types in bitfields.
16345 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
16346
16347 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
16348
16349 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
16350
16351 Support MSVC build with newer versions of Visual Studio.
16352 * w32.c: Don't include w32api.h for MSVC.
16353 (init_environment) [_MSC_VER]: Call sys_access, not _access.
16354
16355 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
16356 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
16357 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
16358 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
16359 e_* cousins.
16360 (alloca) [_MSC_VER]: Define to _alloca.
16361
16362 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
16363
16364 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
16365
16366 2011-11-04 Eli Zaretskii <eliz@gnu.org>
16367
16368 * xdisp.c (note_mouse_highlight): If either of
16369 previous/next-single-property-change returns nil, treat that as
16370 the beginning or the end of the buffer. (Bug#9955)
16371
16372 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
16373
16374 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
16375 label is not null (Bug#9951).
16376 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
16377 may be NULL.
16378
16379 2011-11-04 Eli Zaretskii <eliz@gnu.org>
16380
16381 * window.c (Fwindow_body_size): Mention in the doc string that the
16382 return value is in frame's canonical units. (Bug#9949)
16383
16384 2011-11-03 Eli Zaretskii <eliz@gnu.org>
16385
16386 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
16387
16388 * w32fns.c (unwind_create_frame): If needed, free the glyph
16389 matrices of the partially constructed frame. (Bug#9943)
16390 * xfns.c (unwind_create_frame): Likewise.
16391
16392 2011-11-01 Eli Zaretskii <eliz@gnu.org>
16393
16394 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
16395 Don't stop backward scan on the continuation glyph, even though
16396 its CHARPOS is positive.
16397 (mouse_face_from_buffer_pos, note_mouse_highlight):
16398 Rename cover_string to disp_string.
16399
16400 2011-11-01 Martin Rudalics <rudalics@gmx.at>
16401
16402 * window.c (temp_output_buffer_show): Don't use
16403 Vtemp_buffer_show_specifiers.
16404 (Vtemp_buffer_show_specifiers): Remove unused variable.
16405
16406 2011-10-30 Eli Zaretskii <eliz@gnu.org>
16407
16408 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
16409 past the beginning of the current glyph matrix.
16410
16411 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
16412
16413 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
16414 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
16415 HAVE_GTK3 (Bug#9869).
16416
16417 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
16418 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
16419
16420 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
16421
16422 * xterm.c: Declare x_handle_net_wm_state to return int.
16423 (handle_one_xevent): Check if we are iconified but don't have
16424 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
16425 (get_current_wm_state): Return non-zero if not hidden,
16426 check for _NET_WM_STATE_HIDDEN (Bug#9893).
16427 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
16428 (x_handle_net_wm_state): Return what get_current_wm_state returns.
16429 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
16430
16431 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
16432
16433 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
16434 so that this new function doesn't get optimized away by a
16435 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
16436
16437 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
16438
16439 * frame.h (MOUSE_HL_INFO): Remove excess parens.
16440
16441 2011-10-29 Eli Zaretskii <eliz@gnu.org>
16442
16443 Fix the `xbytecode' command.
16444 * .gdbinit (xprintbytestr): New command.
16445 (xwhichsymbols): Rename from `which'; all callers changed.
16446 (xbytecode): Print the byte-code string as well.
16447
16448 2011-10-29 Kim Storm <storm@cua.dk>
16449
16450 * alloc.c (which_symbols): New function.
16451
16452 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
16453
16454 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
16455 line. (Bug#9903)
16456
16457 2011-10-29 Glenn Morris <rgm@gnu.org>
16458
16459 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
16460 Not clear what it was for, and it causes various bugs. (Bug#9839)
16461
16462 2011-10-28 Eli Zaretskii <eliz@gnu.org>
16463
16464 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
16465 possible random value that matches one of those tested as
16466 condition to clear the mouse face.
16467
16468 2011-10-28 Chong Yidong <cyd@gnu.org>
16469
16470 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
16471
16472 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
16473
16474 * window.c (make_window): Initialize phys_cursor_on_p.
16475
16476 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
16477
16478 * lisp.h (struct Lisp_Symbol): Update comments.
16479
16480 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
16481
16482 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
16483
16484 2011-10-28 Eli Zaretskii <eliz@gnu.org>
16485
16486 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
16487 <oslsachem@gmail.com> for helping to debug this.
16488
16489 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
16490 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
16491 (g_b_init_get_glyph_outline_w): New static variables.
16492 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
16493 (GetGlyphOutlineW_Proc): New typedefs.
16494 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
16495 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
16496 New functions.
16497 (w32font_open_internal, compute_metrics):
16498 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
16499 instead of calling the "wide" APIs directly.
16500
16501 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
16502
16503 * w32.h (syms_of_w32font): Add prototype.
16504
16505 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
16506
16507 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
16508 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
16509 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
16510 (Fmove_to_window_line): Doc fix.
16511
16512 2011-10-27 Chong Yidong <cyd@gnu.org>
16513
16514 * process.c (make_process): Set gnutls_state to NULL.
16515
16516 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
16517 non-NULL, regardless of GNUTLS_INITSTAGE.
16518 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
16519 an error. Set process slots as soon as we allocate them.
16520
16521 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
16522
16523 2011-10-27 Chong Yidong <cyd@gnu.org>
16524
16525 * gnutls.c (emacs_gnutls_deinit): New function.
16526 Deallocate credentials structures as well as calling gnutls_deinit.
16527 (Fgnutls_deinit, Fgnutls_boot): Use it.
16528
16529 * process.c (make_process): Initialize GnuTLS credentials to NULL.
16530 (deactivate_process): Call emacs_gnutls_deinit.
16531
16532 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
16533
16534 * image.c (x_create_x_image_and_pixmap):
16535 * w32.c (sys_rename, w32_delayed_load):
16536 * w32font.c (fill_in_logfont):
16537 * w32reg.c (x_get_string_resource): Silence compiler warnings.
16538
16539 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
16540
16541 * w32fns.c (w32_default_color_map): New function,
16542 extracted from Fw32_default_color_map.
16543 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
16544
16545 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
16546
16547 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
16548
16549 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
16550
16551 * keyboard.c (test_undefined): New function (bug#9751).
16552 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
16553
16554 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
16555
16556 * sysdep.c (init_sys_modes): Fix the check for the controlling
16557 terminal (Bug#6649).
16558
16559 2011-10-20 Eli Zaretskii <eliz@gnu.org>
16560
16561 * dispextern.h (struct bidi_it): New member next_en_type.
16562
16563 * bidi.c (bidi_line_init): Initialize the next_en_type member.
16564 (bidi_resolve_explicit_1): When next_en_pos is valid for the
16565 current character, check also for next_en_type being WEAK_EN.
16566 (bidi_resolve_weak): Don't enter the expensive loop if the current
16567 position is before next_en_pos. Record the bidi type of the first
16568 non-ET, non-BN character we find, in addition to its position.
16569 (bidi_level_of_next_char): Invalidate next_en_type when
16570 next_en_pos is over-stepped.
16571
16572 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
16573
16574 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
16575 * editfns.c: Rewrite current-time-zone so that it invokes
16576 the equivalent of (format-time-string "%Z") to get the time zone name.
16577 This fixes a bug when the time zone name contains characters that
16578 need converting from the system time locale to Emacs internal format.
16579 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
16580 that patch fixed format-time-string to do the conversion, but
16581 I forgot to fix current-time-zone.
16582 (format_time_string): New function, containing most of
16583 what Fformat_time_string used to contain.
16584 (Fformat_time_string): Rewrite in terms of format_time_string.
16585 This doesn't change this function's behavior.
16586 (current-time-zone): Rewrite to use format_time_string.
16587 This fixes the bug reported by Michael Schierl in
16588 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
16589 Jason Rumney's 2007-06-07 change worked around this bug, but
16590 didn't fix it.
16591 * systime.h (tzname, timezone): Remove no-longer-used declarations.
16592
16593 2011-10-19 Eli Zaretskii <eliz@gnu.org>
16594
16595 * xdisp.c (start_display): If the character at POS is displayed
16596 via a display vector, reset IT->current.dpvec_index to zero.
16597 (try_window_reusing_current_matrix): If a line ends in a display
16598 vector or the next line starts in a display vector, continue
16599 redrawing the window even though the character position of
16600 start_row was reached.
16601 (Bug#9771, part 2)
16602
16603 2011-10-18 Chong Yidong <cyd@gnu.org>
16604
16605 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
16606 with nobreak-char-display too.
16607
16608 2011-10-18 Eli Zaretskii <eliz@gnu.org>
16609
16610 Fix part 3 of bug#9771.
16611 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
16612 (bidi_resolve_neutral): Don't enter the expensive loop looking for
16613 non-neutral characters if the current character is a paragraph
16614 separator (a.k.a. Newline). This avoids running the same
16615 expensive loop twice, once when we consume the preceding newline
16616 and the other time when the line actually needs to be displayed.
16617 Avoid the loop when we see neutrals on the base embedding level
16618 following a character whose directionality is the same as the
16619 paragraph's. This avoids running the expensive loop when a line
16620 ends in a long sequence of neutrals, like control characters.
16621 Add assertion against STRONG_AL type. Slightly rearrange code
16622 that determines the type of a neutral given the first non-neutral
16623 that follows it.
16624 (bidi_level_of_next_char): Set next_en_pos to zero when
16625 invalidating its info.
16626
16627 2011-10-17 Eli Zaretskii <eliz@gnu.org>
16628
16629 * xdisp.c (push_display_prop): Determine whether to record string
16630 or buffer position by IT->string, not by IT->method. Allow
16631 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
16632 (move_it_vertically_backward): Don't look for character position
16633 immediately after the newline when in a continuation line.
16634 (Bug#9771, part 1)
16635
16636 2011-10-15 Martin Rudalics <rudalics@gmx.at>
16637
16638 * window.c (coordinates_in_window): Rewrite and delabelize
16639 vertical border check. (Bug#5357) (Bug#9618)
16640
16641 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16642
16643 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
16644 errors in XSetWindowBorder (bug#9310).
16645
16646 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
16647
16648 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
16649 avoid crash when xmalloc overrun checking is enabled.
16650
16651 2011-10-13 Eli Zaretskii <eliz@gnu.org>
16652
16653 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
16654 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
16655 cursor motion with <left> and <right> arrow keys.
16656
16657 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
16658 some callers set that themselves.
16659
16660 2011-10-12 Eli Zaretskii <eliz@gnu.org>
16661
16662 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
16663 display string and the previous row comes from the same string and
16664 is empty. (Bug#9739) (Bug#9738)
16665
16666 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
16667
16668 * doc.c (get_doc_string): Encode file name (bug#9735).
16669
16670 2011-10-12 Eli Zaretskii <eliz@gnu.org>
16671
16672 * bidi.c (bidi_level_of_next_char):
16673 * xdisp.c (get_visually_first_element): Remove old incorrect
16674 comments regarding the Unicode Line Separator character.
16675
16676 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
16677
16678 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
16679
16680 * alloc.c (Fgc_status): Do not access beyond zombies array
16681 boundary if nzombies > MAX_ZOMBIES.
16682 * alloc.c (dump_zombies): Add missing format specifier.
16683
16684 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
16685
16686 * xdisp.c (set_cursor_from_row): Simplify conditionals,
16687 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
16688
16689 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
16690 Some packages use them to denote characters with modifiers.
16691
16692 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
16693
16694 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
16695 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
16696 matching a pp-number. Rename parameter var to var1.
16697
16698 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
16699
16700 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
16701
16702 2011-10-08 Glenn Morris <rgm@gnu.org>
16703
16704 * callint.c (Fcall_interactively): Give a more explicit error for the
16705 'c' case with a non-character input. (Bug#8479)
16706
16707 2011-10-08 Eli Zaretskii <eliz@gnu.org>
16708
16709 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
16710 lines.
16711 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
16712 lines that are hscrolled on the left.
16713
16714 * dispnew.c (buffer_posn_from_coords): Account for a possible
16715 presence of header-line. (Bug#4426)
16716
16717 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
16718
16719 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
16720 Don't advertise functionality which we discourage or doesn't work.
16721
16722 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
16723
16724 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
16725 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
16726 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
16727 this makes Emacs dump core during garbage collection on rare
16728 occasions. sizeof is obviously inferior to offsetof here, so
16729 stick with offsetof.
16730 (GC_POINTER_ALIGNMENT): New macro.
16731 (mark_memory): Omit 3rd (offset) arg; caller changed.
16732 Don't assume EMACS_INT alignment is the same as pointer alignment.
16733
16734 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16735
16736 * keyboard.c (read_key_sequence_remapped): New var.
16737 (read_key_sequence): Compute remapping in the right buffer.
16738 (command_loop_1): Use read_key_sequence's remapping directly.
16739
16740 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16741
16742 * dired.c (file_name_completion): Don't expand file name.
16743 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
16744 before checking file name handler.
16745
16746 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
16747 they've been requested explicitly (bug#9591).
16748
16749 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
16750
16751 * keymap.c (Fsingle_key_description): Use make_specified_string
16752 instead of build_string to build string from push_key_description.
16753 (Bug#5193)
16754
16755 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
16756
16757 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
16758 This fixes a Y2038 bug on 64-bit hosts.
16759 * buffer.c (reset_buffer):
16760 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
16761 (Fclear_buffer_auto_save_failure):
16762 Use 0, not -1, to represent an unset failure time, since time_t
16763 might not be signed.
16764
16765 Remove dependency on glibc malloc internals.
16766 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16767 Move back here from lisp.h, but with their new implementations.
16768 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16769 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
16770 * charset.c (charset_table_init): New static var.
16771 (syms_of_charset): Use it instead of xmalloc. This removes a
16772 dependency on glibc malloc internals. See Eli Zaretskii's comment in
16773 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
16774 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16775 Move back to alloc.c.
16776 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16777 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
16778
16779 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
16780
16781 * nsterm.m (windowDidResize): Call x_set_window_size only when
16782 ns_in_resize is true. Otherwise set pixelwidth/height and
16783 call change_frame_size (Bug#9628).
16784
16785 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
16786
16787 Port --enable-checking=all to Fedora 14 x86-64.
16788 * charset.c (syms_of_charset): Also account for glibc malloc's
16789 internal overhead when calculating the initial malloc maximum.
16790
16791 Port --enable-checking=all to Fedora 14 x86.
16792 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16793 Move to lisp.h.
16794 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
16795 (overrun_check_realloc, overrun_check_free):
16796 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
16797 That way, xmalloc returns a properly-aligned pointer even if
16798 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
16799 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
16800 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
16801 into account when calculating the initial malloc maximum.
16802 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16803 Move here from alloc.c, so that charset.c can use it too.
16804 Properly align; the old code wasn't right for common 32-bit hosts
16805 when configured with --enable-checking=all.
16806 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16807 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
16808
16809 2011-09-29 Eli Zaretskii <eliz@gnu.org>
16810
16811 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
16812 use EDOM.
16813
16814 2011-09-28 Eli Zaretskii <eliz@gnu.org>
16815
16816 * xdisp.c (compute_display_string_end): If there's no display
16817 string at CHARPOS, return -1.
16818
16819 * bidi.c (bidi_fetch_char): When compute_display_string_end
16820 returns a negative value, treat the character as a normal
16821 character not covered by a display string. (Bug#9624)
16822
16823 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
16824
16825 * lread.c (Fread_from_string): Fix typo in docstring.
16826
16827 2011-09-27 Eli Zaretskii <eliz@gnu.org>
16828
16829 * xdisp.c (handle_invisible_prop): If invisible text ends on a
16830 newline, reseat the iterator instead of bidi-iterating there one
16831 character at a time. (Bug#9610)
16832 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
16833 TO_CHARPOS if the bidi iterator is at base embedding level.
16834
16835 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
16836
16837 * lread.c (readevalloop): Use correct code for NBSP.
16838 (read1): Likewise. (Bug#9608)
16839
16840 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
16841
16842 * dbusbind.c (Fdbus_register_signal): When service is not
16843 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
16844
16845 2011-09-25 Glenn Morris <rgm@gnu.org>
16846
16847 * buffer.c (truncate-lines): Doc fix.
16848
16849 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
16850
16851 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
16852 (Fset_window_next_buffers): Doc fix.
16853
16854 2011-09-24 Glenn Morris <rgm@gnu.org>
16855
16856 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
16857
16858 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
16859
16860 Fix minor problems found by static checking.
16861 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
16862 * indent.c (Fvertical_motion): Fix == vs = typo.
16863
16864 2011-09-24 Eli Zaretskii <eliz@gnu.org>
16865
16866 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
16867 Default value is now t. Doc fix.
16868
16869 * indent.c (Fvertical_motion): Compute and apply the overshoot
16870 logic when moving up, not only when moving down. Fix the
16871 confusing name and values of the it_overshoot_expected variable;
16872 logic changes accordingly. (Bug#9254) (Bug#9549)
16873
16874 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
16875 CHARPOS is covered by a display string which includes newlines.
16876 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
16877 is covered by a display string with embedded newlines.
16878
16879 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
16880
16881 * dbusbind.c (Fdbus_register_signal): Add match rule to
16882 Vdbus_registered_objects_table. (Bug#9581)
16883 (Fdbus_register_method, Vdbus_registered_objects_table):
16884 Fix docstring.
16885
16886 2011-09-24 Jim Meyering <meyering@redhat.com>
16887
16888 do not ignore write error for any output size
16889 The previous change was incomplete.
16890 While it makes emacs --batch detect the vast majority of stdout
16891 write failures, errors were still ignored whenever the output size is
16892 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
16893 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
16894 && echo FAIL: ignored write error
16895 FAIL: ignored write error
16896 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
16897 && echo FAIL: ignored write error
16898 FAIL: ignored write error
16899 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
16900
16901 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
16902
16903 * emacs.c (Fkill_emacs): In noninteractive mode exit
16904 non-successfully if a write error occurred on stdout. (Bug#9574)
16905
16906 2011-09-21 Eli Zaretskii <eliz@gnu.org>
16907
16908 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
16909 the xassert test.
16910
16911 * dispextern.h (struct it): Update the comment documenting what
16912 can it->OBJECT be.
16913
16914 2011-09-20 Eli Zaretskii <eliz@gnu.org>
16915
16916 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
16917 a display string, extend search for cursor position to end of row.
16918 (find_row_edges): If the row ends in a newline from a display
16919 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
16920 Handle the case of a display string with multiple newlines.
16921 (Fcurrent_bidi_paragraph_direction): Fix search for previous
16922 non-empty line. Fixes confusing cursor motion with arrow keys at
16923 the beginning of a line that starts with whitespace.
16924
16925 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
16926
16927 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
16928 (bug#9493).
16929
16930 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
16931
16932 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
16933 boolean (Bug#9154).
16934
16935 2011-09-18 Eli Zaretskii <eliz@gnu.org>
16936
16937 * xdisp.c (display_line): Record maximum and minimum buffer
16938 positions even if no glyphs were produced (e.g., by a zero-width
16939 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
16940 buffer positions that will be removed from the glyph row because
16941 they don't fit.
16942 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
16943 column is beyond frame width: don't subtract 1 "pixel" when
16944 computing width of the stretch.
16945 (reseat_at_next_visible_line_start): Undo the change made on
16946 2011-09-17 that saved paragraph information and restored it after
16947 the call to `reseat'. (Bug#9545)
16948
16949 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16950
16951 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
16952 and turn window cursor on if cleared (Bug#9415).
16953
16954 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
16955
16956 * search.c (boyer_moore): Take unibyte characters from pattern
16957 literally. (Bug#9458)
16958
16959 2011-09-18 Eli Zaretskii <eliz@gnu.org>
16960
16961 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
16962
16963 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
16964
16965 Fix minor problem found by static checking.
16966 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
16967 initialized, to pacify gcc -Wuninitialized.
16968
16969 * fileio.c: Report proper errno when syscall falls.
16970 (Finsert_file_contents): Save and restore errno,
16971 so that report_file_error outputs the correct diagnostic.
16972 (Fwrite_region) [CLASH_DETECTION]: Likewise.
16973
16974 2011-09-18 Eli Zaretskii <eliz@gnu.org>
16975
16976 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
16977
16978 2011-09-17 Eli Zaretskii <eliz@gnu.org>
16979
16980 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
16981 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
16982
16983 2011-09-17 Eli Zaretskii <eliz@gnu.org>
16984
16985 * xdisp.c (reseat_at_next_visible_line_start): Keep information
16986 about the current paragraph and restore it after the call to reseat.
16987
16988 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
16989 (bidi_find_paragraph_start): Search back for paragraph beginning
16990 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
16991 (bidi_move_to_visually_next): Only trigger paragraph-related
16992 computations when the last character is a newline or at EOB, not
16993 just any NEUTRAL_B. (Bug#9470)
16994
16995 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
16996 truncated lines if point is covered by a display string. (Bug#9524)
16997
16998 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
16999
17000 * xselect.c: Relax test for outgoing X longs (Bug#9498).
17001 (cons_to_x_long): New function.
17002 (lisp_data_to_selection_data): Use it. Correct the test for
17003 short-versus-long data; it was negated. Break out of vector
17004 loop, for efficiency, when a long datum is discovered.
17005
17006 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
17007
17008 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
17009
17010 2011-09-16 Eli Zaretskii <eliz@gnu.org>
17011
17012 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
17013 GCC PR/17406) by declaring this function with external scope.
17014
17015 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
17016
17017 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
17018 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
17019
17020 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
17021
17022 * editfns.c (Fformat): Correctly handle text properties on "%%".
17023
17024 2011-09-15 Eli Zaretskii <eliz@gnu.org>
17025
17026 * xterm.c (x_draw_composite_glyph_string_foreground):
17027 * w32term.c (x_draw_composite_glyph_string_foreground):
17028 * term.c (encode_terminal_code):
17029 * composite.c (composition_update_it, get_composition_id):
17030 * xdisp.c (get_next_display_element)
17031 (fill_composite_glyph_string): Add comments about special meaning
17032 of TAB characters in a composition.
17033
17034 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
17035
17036 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
17037 This occurs when processing a multibyte format.
17038 Problem reported by Wolfgang Jenker.
17039
17040 2011-09-15 Johan Bockgård <bojohan@gnu.org>
17041
17042 * xdisp.c (try_cursor_movement): Only check for exact match if
17043 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
17044
17045 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
17046
17047 Remove unused external symbols.
17048 * dispextern.h (calc_pixel_width_or_height): Remove decl.
17049 * xdisp.c (calc_pixel_width_or_height): Now static.
17050 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
17051 * indent.c (check_display_width):
17052 * w32term.c: Fix comment to match code.
17053 * xterm.c, xterm.h (x_catching_errors): Remove.
17054
17055 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
17056
17057 * xselect.c: Use signed conversions more consistently (Bug#9498).
17058 (selection_data_to_lisp_data): Assume incoming selection data are
17059 signed integers, not unsigned. This is to be consistent with
17060 outgoing selection data, which was modified to use signed integers
17061 in as part of the fix to Bug#9196 in response to Jan D.'s comment
17062 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
17063 expects long, not unsigned long.
17064
17065 2011-09-14 Eli Zaretskii <eliz@gnu.org>
17066
17067 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
17068 computation of loop end. Reported by Johan Bockgård
17069 <bojohan@gnu.org>.
17070
17071 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
17072
17073 * frame.c (Fother_visible_frames_p): Function deleted.
17074
17075 2011-09-12 Eli Zaretskii <eliz@gnu.org>
17076
17077 * indent.c (compute_motion): Process display vector front to back
17078 rather than the other way around. (Bug#2496)
17079
17080 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
17081
17082 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
17083
17084 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
17085
17086 * minibuf.c (Fread_from_minibuffer): Doc fix.
17087
17088 2011-09-11 Eli Zaretskii <eliz@gnu.org>
17089
17090 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
17091 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
17092
17093 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17094
17095 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
17096 value for non-existent files.
17097
17098 2011-09-11 Eli Zaretskii <eliz@gnu.org>
17099
17100 * fileio.c (Finsert_file_contents): If the file cannot be opened,
17101 set its "size" to -1. This will set the modtime_size field of
17102 the corresponding buffer to -1, which is what
17103 verify-visited-file-modtime expects for files that do not exist.
17104 (Bug#9139)
17105
17106 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
17107
17108 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
17109 here ...
17110 * lisp.h: ... from here. push_key_description is no longer
17111 defined in keyboard.c, so its declaration should not be in
17112 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
17113 logically belongs with push_key_description.
17114
17115 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
17116
17117 * buffer.h: Include <sys/types.h> instead of <time.h>.
17118 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
17119 Problem reported by Herbert J. Skuhra.
17120
17121 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
17122
17123 * xml.c (parse_region): Make the parsing work for
17124 non-comment-starting XML files again (bug#9144).
17125
17126 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
17127
17128 * image.c (gif_load): Fix calculation of bottom and right corner.
17129 (Bug#9468)
17130
17131 2011-09-10 Eli Zaretskii <eliz@gnu.org>
17132
17133 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
17134 redisplay in small windows.
17135
17136 2011-09-09 Eli Zaretskii <eliz@gnu.org>
17137
17138 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
17139
17140 2011-09-08 Martin Rudalics <rudalics@gmx.at>
17141
17142 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
17143 Operate on live windows only.
17144
17145 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
17146
17147 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
17148
17149 2011-09-07 Eli Zaretskii <eliz@gnu.org>
17150
17151 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
17152 only under bidi iteration.
17153
17154 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
17155
17156 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
17157
17158 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
17159
17160 isnan: Fix porting problem to Solaris 10 with bundled gcc.
17161 Without this fix, the command to link temacs failed due to an
17162 undefined symbol __builtin_isnan. This is because
17163 /usr/include/iso/math_c99.h #defines isnan(x) to
17164 __builtin_isnan(x), but the bundled gcc, which identifies itself
17165 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
17166 a __builtin_isnan.
17167 * floatfns.c (isnan): #undef, and then #define to a clone of
17168 what's in data.c.
17169 (Fisnan): Always define, since it's always available now.
17170 (syms_of_floatfns): Always define isnan at the Lisp level.
17171
17172 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
17173
17174 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
17175
17176 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
17177
17178 * fileio.c: Fix bugs with large file offsets (Bug#9428).
17179 The previous code assumed that file offsets (off_t values) fit in
17180 EMACS_INT variables, which is not true on typical 32-bit hosts.
17181 The code messed up by falsely reporting buffer overflow in cases
17182 such as (insert-file-contents "big" nil 1 2) into an empty buffer
17183 when "big" contains more than 2**29 bytes, even though this
17184 inserts just one byte and does not overflow the buffer.
17185 (Finsert_file_contents): Store file offsets as off_t
17186 values, not as EMACS_INT values. Check for overflow when
17187 converting between EMACS_INT and off_t. When checking for
17188 buffer overflow or for overlap, take the offsets into account.
17189 Don't use EMACS_INT for small values where int suffices.
17190 When checking for overlap, fix a typo: ZV was used where
17191 ZV_BYTE was intended.
17192 (Fwrite_region): Don't assume off_t fits into 'long'.
17193 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
17194
17195 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
17196
17197 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
17198
17199 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
17200
17201 sprintf-related integer and memory overflow issues (Bug#9412).
17202
17203 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
17204 (esprintf, exprintf, evxprintf): New functions.
17205 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
17206 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
17207 (modify_event_symbol): Do not assume that the length of
17208 name_alist_or_stem is safe to alloca and fits in int.
17209 (Fexecute_extended_command): Likewise for function name and binding.
17210 (Frecursion_depth): Wrap around reliably on integer overflow.
17211 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
17212 since some callers pass EMACS_INT values.
17213 (Fsingle_key_description): Don't crash if symbol name contains more
17214 than MAX_ALLOCA bytes.
17215 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
17216 (get_minibuffer): Arg is now EMACS_INT, not int.
17217 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
17218 (esprintf, exprintf, evxprintf): New decls.
17219 * window.h (command_loop_level, minibuf_level): Reflect API changes.
17220
17221 * dbusbind.c (signature_cat): New function.
17222 (xd_signature, Fdbus_register_signal):
17223 Do not overrun buffer; instead, report string overflow.
17224
17225 * dispnew.c (add_window_display_history): Don't overrun buffer.
17226 Truncate instead; this is OK since it's just a log.
17227
17228 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
17229 even if the time zone offset is outlandishly large.
17230 Don't mishandle offset == INT_MIN.
17231
17232 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
17233 when creating daemon; the previous buffer-overflow check was incorrect.
17234
17235 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
17236 which has the guts of the old verror function.
17237
17238 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
17239 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
17240
17241 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
17242 (font_unparse_xlfd): Don't blindly alloca long strings.
17243 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
17244 fits in int, when using sprintf. Use single snprintf to count
17245 length of string rather than counting it via multiple sprintfs;
17246 that's simpler and more reliable.
17247 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
17248 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
17249 sprintf, in case result does not fit in int.
17250
17251 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
17252 (fontset_from_font): Print it.
17253
17254 * frame.c (tty_frame_count): Now printmax_t, not int.
17255 (make_terminal_frame, set_term_frame_name): Print it.
17256 (x_report_frame_params): In X, window IDs are unsigned long,
17257 not signed long, so print them as unsigned.
17258 (validate_x_resource_name): Check for implausibly long names,
17259 and don't assume name length fits in 'int'.
17260 (x_get_resource_string): Don't blindly alloca invocation name;
17261 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
17262 not fit in int.
17263
17264 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
17265 (xg_check_special_colors, xg_set_geometry):
17266 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
17267
17268 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
17269 Use esprintf, not sprintf, in case result does not fit in int.
17270
17271 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
17272 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
17273 it as a large positive number.
17274 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
17275 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
17276
17277 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
17278 in case result does not fit in int.
17279
17280 * print.c (float_to_string): Detect width overflow more reliably.
17281 (print_object): Make sprintf buffer a bit bigger, to avoid potential
17282 buffer overrun. Don't assume list length fits in 'int'. Treat
17283 print length of 0 as 0, not as infinity; to be consistent with other
17284 uses of print length in this function. Don't overflow print length
17285 index. Don't assume hash table size fits in 'long', or that
17286 vectorlike size fits in 'unsigned long'.
17287
17288 * process.c (make_process): Use printmax_t, not int, to format
17289 process-name gensyms.
17290
17291 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
17292
17293 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
17294 to avoid potential buffer overrun.
17295
17296 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
17297 if X resource line is longer than 512 bytes.
17298
17299 * xfns.c (x_window): Make sprintf buffer a bit bigger
17300 to avoid potential buffer overrun.
17301
17302 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
17303
17304 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
17305
17306 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
17307
17308 Integer overflow fixes for scrolling, etc.
17309 Without these, Emacs silently mishandles large integers sometimes.
17310 For example, "C-u 4294967297 M-x recenter" was treated as if
17311 it were "C-u 1 M-x recenter" on a typical 64-bit host.
17312
17313 * xdisp.c (try_window_id): Check Emacs fixnum range before
17314 converting to 'int'.
17315
17316 * window.c (window_scroll_line_based, Frecenter):
17317 Check that an Emacs fixnum is in range before assigning it to 'int'.
17318 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
17319 values converted from Emacs fixnums.
17320 (Frecenter): Don't wrap around a line count if it is out of 'int'
17321 range; instead, treat it as an extreme value.
17322 (Fset_window_configuration, compare_window_configurations):
17323 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
17324
17325 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
17326 that can exceed INT_MAX. Check that EMACS_INT value is in range
17327 before assigning it to the (possibly-narrower) index.
17328 (match_limit): Don't assume that a fixnum can fit in 'int'.
17329
17330 * print.c (print_object): Use ptrdiff_t, not int, for index that can
17331 exceed INT_MAX.
17332
17333 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
17334 (Fvertical_motion): Don't wrap around LINES values that don't fit
17335 in 'int'. Instead, treat them as extreme values. This is good
17336 enough for windows, which can't have more than INT_MAX lines anyway.
17337
17338 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17339
17340 * Require libxml/parser.h to avoid compilation warning.
17341
17342 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
17343
17344 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
17345 since this reportedly can destroy thread storage.
17346
17347 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
17348
17349 * syntax.c (find_defun_start): Update all cache variables if
17350 exiting early (Bug#9401).
17351
17352 2011-08-30 Eli Zaretskii <eliz@gnu.org>
17353
17354 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
17355
17356 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
17357 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
17358 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
17359
17360 * term.c (tty_append_glyph): New function.
17361 (produce_stretch_glyph): Static function and its prototype deleted.
17362
17363 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
17364 Add prototypes.
17365
17366 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
17367
17368 * image.c (parse_image_spec): Check for nonnegative, not for positive,
17369 when checking :margin (Bug#9390).
17370 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
17371 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
17372 so that the name doesn't mislead. All uses changed.
17373
17374 2011-08-28 Johan Bockgård <bojohan@gnu.org>
17375
17376 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
17377 set_tty_hooks.
17378
17379 2011-08-27 Eli Zaretskii <eliz@gnu.org>
17380
17381 * xdisp.c (move_it_to): Don't bail out early when reaching
17382 position beyond to_charpos, if we are scanning backwards.
17383 (move_it_vertically_backward): When DY == 0, make sure we get to
17384 the first character in the line after the newline.
17385
17386 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
17387
17388 * ccl.c: Improve and simplify overflow checking (Bug#9196).
17389 (ccl_driver): Do not generate an out-of-range pointer.
17390 (Fccl_execute_on_string): Remove unnecessary check for
17391 integer overflow, noted by Stefan Monnier in
17392 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
17393 Remove a FIXME that didn't need fixing.
17394 Simplify the newly-introduced buffer reallocation code.
17395
17396 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
17397
17398 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
17399
17400 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
17401
17402 Integer and memory overflow issues (Bug#9196).
17403
17404 * doc.c (get_doc_string): Rework so that
17405 get_doc_string_buffer_size is the actual buffer size, rather than
17406 being 1 less than the actual buffer size; this makes xpalloc more
17407 convenient.
17408
17409 * image.c (x_allocate_bitmap_record, cache_image):
17410 * xselect.c (Fx_register_dnd_atom):
17411 Simplify previous changes by using xpalloc.
17412
17413 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
17414 since either will do and ptrdiff_t is convenient with xpalloc.
17415
17416 * charset.c (charset_table_size)
17417 (struct charset_sort_data.priority): Now ptrdiff_t.
17418 (charset_compare): Don't overflow if priorities differ greatly.
17419 (Fsort_charsets): Don't assume list length fits in int.
17420 Check for size-calculation overflow when allocating sort data.
17421 (syms_of_charset): Allocate an initial charset table that is
17422 just under 64 KiB, to avoid problems with glibc malloc and mmap.
17423
17424 * cmds.c (internal_self_insert): Check for size-calculation overflow.
17425
17426 * composite.h (struct composition.glyph_len): Now int, not unsigned.
17427 The actual value is always <= INT_MAX, and leaving it unsigned made
17428 overflow checking harder.
17429
17430 * dispextern.h (struct glyph_matrix.rows_allocated)
17431 (struct face_cache.size): Now ptrdiff_t, for convenience in use
17432 with xpalloc. The values are still always <= INT_MAX.
17433
17434 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
17435
17436 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
17437 (SAFE_NALLOCA): New macro.
17438
17439 * region-cache.c (struct boundary.pos, find_cache_boundary)
17440 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
17441 (set_cache_region, invalidate_region_cache)
17442 (revalidate_region_cache, know_region_cache, region_cache_forward)
17443 (region_cache_backward, pp_cache):
17444 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
17445 so that ptrdiff_t * can be passed to xpalloc.
17446 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
17447 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
17448 (pp_cache): Don't assume cache_len fits in int.
17449 * region-cache.h: Adjust extern decls to match.
17450
17451 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
17452 EMACS_INT, since either will do, for xpalloc.
17453
17454 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
17455 (xnmalloc, xnrealloc, xpalloc): New functions.
17456
17457 * bidi.c (bidi_shelve_header_size): New constant.
17458 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
17459 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
17460
17461 * bidi.c (bidi_cache_shrink):
17462 * buffer.c (overlays_at, overlays_in, record_overlay_string)
17463 (overlay_strings):
17464 Don't update size of array until after memory allocation succeeds,
17465 because xmalloc/xrealloc may not return.
17466 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
17467 now that we have proper integer overflow checking.
17468 (record_overlay_string, overlay_strings): Catch overflows when
17469 calculating size of overlay_str_buf.
17470
17471 * callproc.c (Fcall_process): Check for size overflow when
17472 calculating size of args2.
17473 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
17474 Normally we prefer signed values, but sticking with ptrdiff_t would
17475 require adding more-complicated checks.
17476
17477 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
17478 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
17479 Redo buffer-overflow calculations to avoid integer overflow.
17480 Add a FIXME comment where memory seems to be over-allocated.
17481
17482 * character.c (Fstring): Check for size-calculation overflow.
17483
17484 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
17485 unnecessary integer overflow. Check for size overflow.
17486 (encode_coding_object): Don't update size until xmalloc succeeds.
17487
17488 * composite.c (get_composition_id): Check for overflow in glyph
17489 length calculations.
17490
17491 Integer and memory overflow fixes for display code.
17492 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
17493 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
17494 (scrolling_window): Check for overflow in size calculations.
17495 (line_draw_cost, realloc_glyph_pool, add_row_entry):
17496 Don't assume glyph table len fits in int.
17497 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
17498 (row_table_size): Now ptrdiff_t, not int.
17499 (scrolling_window): Avoid overflow in size calculations.
17500 Don't update size until allocation succeeds.
17501 * fns.c (concat): Check for overflow in size calculations.
17502 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
17503 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
17504 (NEXT_ALMOST_PRIME_LIMIT): New constant.
17505
17506 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
17507 (get_doc_string): Check for size calculation overflow.
17508 Don't update size until allocation succeeds.
17509 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
17510 EMACS_INT, where ptrdiff_t will do.
17511 (Fsubstitute_command_keys): Check for string overflow.
17512
17513 * editfns.c (set_time_zone_rule): Don't assume environment length
17514 fits in int.
17515 (message_length): Now ptrdiff_t, not int.
17516 (Fmessage_box): Don't update size until allocation succeeds.
17517 Don't assume message length fits in int.
17518 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
17519
17520 * emacs.c (main): Do not reallocate argv, since there is a null at
17521 the end that can be overwritten, and this way there's no need to
17522 worry about size-calculation overflow.
17523 (sort_args): Check for size-calculation overflow.
17524
17525 * eval.c (init_eval_once, grow_specpdl): Don't update size until
17526 alloc succeeds.
17527 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
17528
17529 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
17530 (x_set_scroll_bar_width, x_figure_window_size):
17531 Check for integer overflow.
17532 (x_set_alpha): Do not assume XINT fits in int.
17533
17534 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
17535 This is for the members text_lines, text_cols, total_lines, total_cols,
17536 where the system imposes an 'int' limit.
17537
17538 * fringe.c (Fdefine_fringe_bitmap):
17539 Don't update size until alloc works.
17540
17541 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
17542 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
17543
17544 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
17545 Check for size-calculation overflow.
17546 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
17547 do, as we prefer signed integers.
17548 (id_to_widget.max_size, id_to_widget.used)
17549 (xg_store_widget_in_map, xg_remove_widget_from_map)
17550 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
17551 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
17552 Use and return ptrdiff_t, not int.
17553 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
17554 * gtkutil.h: Change prototypes to match the above.
17555
17556 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
17557 are duplicate now that they've been promoted to lisp.h.
17558 (x_allocate_bitmap_record, x_alloc_image_color)
17559 (make_image_cache, cache_image, xpm_load):
17560 Don't update size until alloc is done.
17561 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
17562 (x_detect_edges):
17563 Check for size calculation overflow.
17564 (ct_colors_allocated_max): New constant.
17565 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
17566 overflow.
17567
17568 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
17569 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
17570 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
17571 Use ptrdiff_t, not int, to count maps.
17572 (read_char_minibuf_menu_prompt): Check for overflow in size
17573 calculations. Don't update size until allocation succeeds.
17574 Redo calculations to avoid overflow.
17575 * keyboard.h: Change prototypes to match the above.
17576
17577 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
17578 to count maps.
17579 (current_minor_maps): Check for size calculation overflow.
17580 * keymap.h: Change prototypes to match the above.
17581
17582 * lread.c (read1, init_obarray): Don't update size until alloc done.
17583
17584 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
17585 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
17586
17587 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
17588 Now ptrdiff_t, not int.
17589 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
17590 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
17591
17592 * process.c (Fnetwork_interface_list): Check for overflow
17593 in size calculation.
17594
17595 * region-cache.c (move_cache_gap): Check for size calculation overflow.
17596
17597 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
17598 overflow. Don't bother calling xmalloc when xrealloc will do.
17599
17600 * search.c (Freplace_match): Check for size calculation overflow.
17601 (Fset_match_data): Don't assume list lengths fit in 'int'.
17602
17603 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
17604 for command line length. Do not attempt to address one before the
17605 beginning of an array, as that's not portable.
17606
17607 * term.c (max_frame_lines): Remove; unused.
17608 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
17609 not int.
17610 (encode_terminal_code, calculate_costs): Check for size
17611 calculation overflow.
17612 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
17613 table lengths and related sizes. Don't update size until alloc
17614 done. Redo calculations to avoid overflow.
17615 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
17616
17617 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
17618 subtracting pointers.
17619 (gobble_line): Check for overflow more carefully. Don't update size
17620 until alloc done.
17621
17622 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
17623 Don't update size until alloc done.
17624 Redo size calculations to avoid overflow.
17625 Check for size calculation overflow.
17626 (main) [DEBUG]: Fix typo in invoking tparam1.
17627
17628 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
17629 Use ptrdiff_t, not int, for sizes.
17630 (store_mode_line_noprop_char): Don't update size until alloc done.
17631
17632 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
17633 Use ptrdiff_t, not int, for sizes.
17634 (Finternal_make_lisp_face, cache_face):
17635 Check for size calculation overflow.
17636 (cache_face): Treat size calculation overflows as if they were
17637 memory exhaustion (the usual treatment), rather than aborting.
17638
17639 * xfns.c (x_encode_text, x_set_name_internal)
17640 (Fx_change_window_property): Use ptrdiff_t, not int, to count
17641 sizes, since they can exceed INT_MAX in size. Check for size
17642 calculation overflow.
17643
17644 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
17645 (xg_select): Check for size calculation overflow.
17646 Don't update size until alloc done.
17647
17648 * xrdb.c (get_environ_db): Don't assume path length fits in int,
17649 as sprintf is limited to int lengths.
17650
17651 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
17652 (X_LONG_MIN): New macros.
17653 Use them to make the following changes clearer.
17654 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
17655 This change doesn't affect the value now, but it may help remind
17656 future maintainers not to raise the value too much later.
17657 (SELECTION_QUANTUM): Remove, replacing with ...
17658 (selection_quantum): ... new function, which avoids overflow.
17659 All uses changed.
17660 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
17661 assumption that selection length fits in 'int'.
17662 (x_reply_selection_request, x_handle_selection_request)
17663 (x_get_window_property, receive_incremental_selection)
17664 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
17665 (lisp_data_to_selection_data, clean_local_selection_data):
17666 Use ptrdiff_t, not int, to record length of selection.
17667 (x_reply_selection_request, x_get_window_property)
17668 (receive_incremental_selection, x_property_data_to_lisp):
17669 Redo calculations to avoid overflow.
17670 (x_reply_selection_request): When sending hint, ceiling it at
17671 X_LONG_MAX rather than relying on wraparound overflow to send
17672 something.
17673 (x_get_window_property, receive_incremental_selection)
17674 (lisp_data_to_selection_data, x_property_data_to_lisp):
17675 Check for size-calculation overflow.
17676 (x_get_window_property, receive_incremental_selection)
17677 (lisp_data_to_selection_data, Fx_register_dnd_atom):
17678 Don't store size until memory allocation succeeds.
17679 (x_get_window_property): Plug memory leak on memory exhaustion.
17680 Don't double-block input; malloc is safe here. Don't assume 2**34
17681 - 4 fits in unsigned long. Add an xassert to check
17682 XGetWindowProperty overflow. Be more careful about overflow
17683 calculations, and distinguish size from memory overflow better.
17684 (receive_incremental_selection): When tracing, don't assume
17685 unsigned int is less than INT_MAX.
17686 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
17687 harmful) conversions of unsigned short to int.
17688 (lisp_data_to_selection_data): Don't assume that integers
17689 in the range -65535 through -1 fit in an X unsigned short.
17690 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
17691 result parameters unless successful. Rely on cons_to_unsigned
17692 to report problems with elements; the old code wasn't right anyway.
17693 (x_check_property_data): Check for int overflow; we cannot use
17694 a wider type due to X limits.
17695 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
17696
17697 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
17698
17699 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
17700 (x_term_init): Check for size calculation overflow.
17701 (x_color_cells): Don't store size until memory allocation succeeds.
17702 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
17703 Don't assume alloca size is less than MAX_ALLOCA.
17704 (x_term_init): Don't assume length fits in int (sprintf is limited
17705 to int size).
17706
17707 Use ptrdiff_t for composition IDs.
17708 * character.c (lisp_string_width):
17709 * composite.c (composition_table_size, n_compositions)
17710 (get_composition_id, composition_gstring_from_id):
17711 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
17712 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
17713 * window.c (Frecenter):
17714 Use ptrdiff_t, not int, for composition IDs.
17715 * composite.c (get_composition_id): Check for integer overflow.
17716 * composite.h: Adjust prototypes to match the above changes.
17717
17718 Use ptrdiff_t for hash table indexes.
17719 * category.c (hash_get_category_set):
17720 * ccl.c (ccl_driver):
17721 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
17722 * coding.c (coding_system_charset_list, detect_coding_system):
17723 * coding.h (struct coding_system.id):
17724 * composite.c (get_composition_id, gstring_lookup_cache):
17725 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
17726 * image.c (xpm_get_color_table_h):
17727 * lisp.h (hash_lookup, hash_put):
17728 * minibuf.c (Ftest_completion):
17729 Use ptrdiff_t for hash table indexes, not int (which is too
17730 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
17731 32-bit --with-wide-int hosts).
17732
17733 * charset.c (Fdefine_charset_internal): Check for integer overflow.
17734 Add a FIXME comment about memory leaks.
17735 (syms_of_charset): Don't assume xmalloc returns.
17736
17737 Don't assume that stated character widths fit in int.
17738 * character.c (Fchar_width, c_string_width, lisp_string_width):
17739 * character.h (CHAR_WIDTH):
17740 * indent.c (MULTIBYTE_BYTES_WIDTH):
17741 Use sanitize_char_width to avoid undefined and/or bad behavior
17742 with outlandish widths.
17743 * character.h (sanitize_tab_width): Rename from sanitize_width,
17744 now that we have two such functions. All uses changed.
17745 (sanitize_char_width): New inline function.
17746
17747 Don't assume that tab-width fits in int.
17748 * character.h (sanitize_width): New inline function.
17749 (SANE_TAB_WIDTH): New macro.
17750 (ASCII_CHAR_WIDTH): Use it.
17751 * indent.c (sane_tab_width): Remove. All uses replaced by
17752 SANE_TAB_WIDTH (current_buffer).
17753 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
17754
17755 * fileio.c: Integer overflow issues with file modes.
17756 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
17757
17758 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
17759 Remove unreachable code.
17760 (read_hex, load_charset_map_from_file): Check for integer overflow.
17761
17762 * xterm.c: Don't go over XClientMessageEvent limit.
17763 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
17764 (x_send_scroll_bar_event): Likewise. Check that the size does not
17765 exceed limits imposed by XClientMessageEvent, as well as the usual
17766 ptrdiff_t and size_t limits.
17767
17768 * keyboard.c: Overflow, signedness and related fixes.
17769 (make_lispy_movement): Use same integer type in forward decl
17770 that is used in the definition.
17771 (read_key_sequence, keyremap_step):
17772 Change bufsize argument back to int, undoing my 2011-03-30 change.
17773 We prefer signed types, and int is wide enough here.
17774 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
17775 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
17776 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
17777 length, not size_t. Use ptrdiff_t for index, not int.
17778 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
17779 possibility of integer overflow.
17780
17781 Overflow, signedness and related fixes for images.
17782
17783 * dispextern.h (struct it.stack[0].u.image.image_id)
17784 (struct_it.image_id, struct image.id, struct image_cache.size)
17785 (struct image_cache.used, struct image_cache.ref_count):
17786 * gtkutil.c (update_frame_tool_bar):
17787 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
17788 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
17789 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
17790 * nsmenu.m (update_frame_tool_bar):
17791 * xdisp.c (calc_pixel_width_or_height):
17792 * xfns.c (image_cache_refcount):
17793 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
17794 on typical 64-bit hosts.
17795
17796 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
17797 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
17798 Omit unnecessary casts to int.
17799 (parse_image_spec): Check that integers fall into 'int' range
17800 when the callers expect that.
17801 (image_ascent): Redo ascent calculation to avoid int overflow.
17802 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
17803 (lookup_image): Remove unnecessary tests.
17804 (xbm_image_p): Locals are now of int, not EMACS_INT,
17805 since parse_image_check makes sure they fit into int.
17806 (png_load, gif_load, svg_load_image):
17807 Prefer int to unsigned where either will do.
17808 (tiff_handler): New function, combining the cores of the
17809 old tiff_error_handler and tiff_warning_handler.
17810 This function is rewritten to use vsnprintf and thereby avoid
17811 stack buffer overflows. It uses only the features of vsnprintf
17812 that are common to both POSIX and native Microsoft.
17813 (tiff_error_handler, tiff_warning_handler): Use it.
17814 (tiff_load, gif_load, imagemagick_load_image):
17815 Don't assume :index value fits in 'int'.
17816 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
17817 (imagemagick_load_image): Check that crop parameters fit into
17818 the integer types that MagickCropImage accepts. Don't assume
17819 Vimagemagick_render_type has a nonnegative value. Don't assume
17820 size_t fits in 'long'.
17821 (gs_load): Use printmax_t to print the widest integers possible.
17822 Check for integer overflow when computing image height and width.
17823
17824 2011-08-26 Eli Zaretskii <eliz@gnu.org>
17825
17826 * xdisp.c (redisplay_window): Don't force window start if point
17827 will be invisible in the resulting window. (Bug#9324)
17828
17829 2011-08-25 Eli Zaretskii <eliz@gnu.org>
17830
17831 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
17832 the display spec is of the form `(space ...)'.
17833 (handle_display_spec): Return the value returned by
17834 handle_single_display_spec, not just 1 or zero.
17835 (handle_single_display_spec): If the display spec is of the form
17836 `(space ...)', and specifies display in the text area, return 2
17837 rather than 1.
17838 (try_cursor_movement): Check for the need to scroll more
17839 accurately, and prefer exact match for point under bidi.
17840 Don't advance `row' beyond the last row of the window.
17841
17842 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
17843 into disp_prop; all users changed.
17844
17845 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
17846 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
17847 for the text covered by the display property.
17848
17849 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
17850
17851 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
17852 Change return value to nil.
17853 (Frecord_buffer): Delete unused function.
17854
17855 2011-08-24 Eli Zaretskii <eliz@gnu.org>
17856
17857 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
17858 buffers, return left-to-right.
17859 (set_cursor_from_row): Consider candidate row a win if its glyph
17860 represents a newline and point is on that newline. Fixes cursor
17861 positioning on the newline at EOL of R2L text within L2R
17862 paragraph, and vice versa.
17863 (try_cursor_movement): Check continued rows, in addition to
17864 continuation rows. Fixes unwarranted scroll when point enters a
17865 continued line of R2L text within an L2R paragraph, or vice versa.
17866 (cursor_row_p): Consider the case of point being equal to
17867 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
17868 from the end of a short line to the beginning of a continued line
17869 of R2L text within L2R paragraph.
17870 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
17871 composed characters.
17872
17873 * bidi.c (bidi_check_type): Use xassert.
17874 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
17875 members.
17876
17877 2011-08-23 Eli Zaretskii <eliz@gnu.org>
17878
17879 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
17880 a character.
17881
17882 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
17883
17884 * nsfont.m (ns_otf_to_script): Fix typo.
17885
17886 2011-08-22 Kenichi Handa <handa@m17n.org>
17887
17888 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
17889 extra slot even if the purpose is char-code-property-table.
17890
17891 2011-08-23 Eli Zaretskii <eliz@gnu.org>
17892
17893 * xdisp.c (redisplay_window): When computing centering_position,
17894 account for the height of the header line. (Bug#8874)
17895
17896 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
17897 instead of CHAR_TO_BYTE. Fixes a crash when a completion
17898 candidate is selected by the mouse, and that candidate has a
17899 composed character under the mouse.
17900
17901 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
17902 coordinates reported by pos-visible-in-window-p for a composed
17903 character in column zero.
17904
17905 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
17906
17907 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
17908
17909 2011-08-22 Eli Zaretskii <eliz@gnu.org>
17910
17911 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
17912 consider it a hit if to_charpos is anywhere in the range of the
17913 composed buffer positions.
17914
17915 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
17916
17917 * image.c (gif_load): Don't assume that each subimage has the same
17918 dimensions as the base image. Handle disposal method that is
17919 "undefined" by the gif spec (Bug#9335).
17920
17921 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
17922
17923 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
17924 (Fcondition_case): Document `debug' symbol in error handler.
17925
17926 2011-08-19 Eli Zaretskii <eliz@gnu.org>
17927
17928 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
17929 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
17930 from an Org mode buffer to a Speedbar frame.
17931
17932 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
17933 a composition, take its buffer position from IT->cmp_it.charpos.
17934 Fixes cursor positioning at the beginning of a line that begins
17935 with a composed character.
17936
17937 2011-08-18 Eli Zaretskii <eliz@gnu.org>
17938
17939 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
17940 character bidirectional type, use STRONG_L instead. Fixes crashes
17941 in a buffer produced by `describe-categories'.
17942
17943 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
17944 members before the level stack, so they would be saved and
17945 restored when copying iterator state. Fixes incorrect reordering
17946 around TABs covered by display properties.
17947
17948 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
17949
17950 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
17951
17952 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
17953
17954 * eval.c (internal_condition_case, internal_condition_case_1)
17955 (internal_condition_case_2, internal_condition_case_n):
17956 Remove unnecessary aborts (Bug#9081).
17957
17958 2011-08-17 Eli Zaretskii <eliz@gnu.org>
17959
17960 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
17961 has no `load' handler, try opening the file locally. (Bug#9311)
17962
17963 2011-08-16 Ken Brown <kbrown@cornell.edu>
17964
17965 * gmalloc.c: Expand comment.
17966
17967 2011-08-16 Eli Zaretskii <eliz@gnu.org>
17968
17969 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
17970 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
17971
17972 2011-08-16 Ken Brown <kbrown@cornell.edu>
17973
17974 Fix memory allocation problems in Cygwin build (Bug#9273).
17975
17976 * unexcw.c (__malloc_initialized): Declare external variable.
17977 (fixup_executable): Force the dumped emacs to reinitialize malloc.
17978
17979 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
17980 New variables.
17981 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
17982 dumped emacs.
17983 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
17984 in the static heap.
17985 [CYGWIN] (special_realloc): New function.
17986 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
17987 requests to realloc storage in the static heap.
17988
17989 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
17990
17991 * bidi.c (bidi_initialize): Remove unused local.
17992
17993 2011-08-15 Eli Zaretskii <eliz@gnu.org>
17994
17995 * bidimirror.h:
17996 * biditype.h: Remove file.
17997 * makefile.w32-in ($(BLD)/bidi.$(O)):
17998 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
17999
18000 * dispextern.h: Fix a typo in the comment to bidi_type_t.
18001
18002 * chartab.c: Improve commentary for the uniprop_table API.
18003
18004 * bidi.c (bidi_paragraph_init): Support zero value of
18005 bidi_ignore_explicit_marks_for_paragraph_level.
18006 (bidi_initialize): Use uniprop_table instead of including
18007 biditype.h and bidimirror.h.
18008
18009 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
18010 coordinates of the iterator when restoring from ppos_it.
18011 (Bug#9296)
18012
18013 2011-08-14 Kenichi Handa <handa@m17n.org>
18014
18015 * process.c (create_process): Call setup_process_coding_systems
18016 after the pid of the process is set to -1 (Bug#8162).
18017
18018 2011-08-14 Eli Zaretskii <eliz@gnu.org>
18019
18020 * xdisp.c (move_it_in_display_line_to): Don't invoke
18021 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
18022 ppos_it. Fixes vertical cursor motion when line beginning is
18023 covered by an image. (Bug#9296)
18024
18025 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
18026
18027 * nsterm.h (ns_run_ascript): Declare.
18028 (NSAPP_DATA2_RUNASSCRIPT): Define.
18029
18030 * nsfns.m (as_script, as_result, as_status): New static variables.
18031 (ns_run_ascript): New function.
18032 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
18033 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
18034 the event loop. Get status from as_status (Bug#7276).
18035
18036 * nsterm.m (sendEvent): If event is NSApplicationDefined and
18037 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
18038 the event loop (Bug#7276).
18039
18040 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
18041
18042 * gnutls.c (QCgnutls_bootprop_priority)
18043 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
18044 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
18045 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
18046 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
18047 (QCgnutls_bootprop_verify_hostname_error)
18048 (QCgnutls_bootprop_callbacks_verify): Rename from
18049 Qgnutls_bootprop_..., all uses changed.
18050
18051 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
18052 uses changed.
18053
18054 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
18055
18056 * xfaces.c (Qframe_set_background_mode): Now static.
18057 * dispextern.h (Qframe_set_background_mode): Remove decl.
18058
18059 * process.c (Fnetwork_interface_info): Declare local only if needed.
18060
18061 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
18062
18063 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
18064 (Fnetwork_interface_list): Allocate in increments of bytes instead
18065 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
18066 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
18067 sockaddr.
18068 (struct ifflag_def): notrailers is smart on OSX.
18069 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
18070 Get hardware address with getifaddrs if available.
18071
18072 2011-08-12 Eli Zaretskii <eliz@gnu.org>
18073
18074 * xdisp.c (iterate_out_of_display_property): xassert that
18075 IT->position is set to within IT->object's boundaries. Break from
18076 the loop as soon as EOB is reached; avoids infloops in redisplay
18077 when IT->position is set up wrongly due to some bug.
18078 Set IT->current to match the bidi iterator unconditionally.
18079 (push_display_prop): Allow GET_FROM_STRING as IT->method on
18080 entry. Force push_it to save on the stack the current
18081 buffer/string position, to be restored by pop_it. Fix flags in
18082 the iterator structure wrt the object coming from a display
18083 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
18084 properties. (Bug#9284)
18085
18086 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
18087
18088 * fontset.c (fontset_get_font_group): Add proper type checks.
18089 (Bug#9172)
18090
18091 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18092
18093 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
18094 and LC_VERSION_MIN_MACOSX.
18095 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
18096 (dump_it) [LC_FUNCTION_STARTS]: Use it.
18097
18098 2011-08-08 Eli Zaretskii <eliz@gnu.org>
18099
18100 * xdisp.c (forward_to_next_line_start): Allow to use the
18101 no-display-properties-and-no-overlays under bidi display.
18102 Set disp_pos in the bidi iterator to avoid searches for display
18103 properties and overlays.
18104
18105 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
18106
18107 * editfns.c (Fset_time_zone_rule): Document relationship with the
18108 setenv function.
18109
18110 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
18111 the font entity extracted from the cache (Bug#8109).
18112
18113 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
18114
18115 * composite.c (autocmp_chars): Don't reset point. That is done by
18116 restore_point_unwind (Bug#5984).
18117
18118 2011-08-07 Juri Linkov <juri@jurta.org>
18119
18120 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
18121 to show the arg `TIME' instead of `TIMEVAL'.
18122
18123 2011-08-06 Eli Zaretskii <eliz@gnu.org>
18124
18125 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
18126 display property strides EOL and includes a newline, as in
18127 longlines-mode. (Bug#9254)
18128 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
18129 word-wrap under bidirectional display. (Bug#9224)
18130
18131 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
18132 is non-zero, even if the data buffer is NULL. Fixes a crash in
18133 vertical-motion with longlines-mode. (Bug#9254)
18134
18135 2011-08-05 Eli Zaretskii <eliz@gnu.org>
18136
18137 * bidi.c <bidi_cache_total_alloc>: Now static.
18138 (bidi_initialize): Initialize bidi_cache_total_alloc.
18139
18140 * xdisp.c (display_line): Release buffer allocated for shelved bidi
18141 cache. (Bug#9221)
18142
18143 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
18144 amount allocated this far in `bidi_cache_total_alloc'.
18145 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
18146 non-zero, only free the data buffer without restoring the cache
18147 contents. All callers changed.
18148
18149 * dispextern.h (bidi_unshelve_cache): Update prototype.
18150
18151 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
18152 (move_it_in_display_line, move_it_to)
18153 (move_it_vertically_backward, move_it_by_lines): Replace the call
18154 to xfree to an equivalent call to bidi_unshelve_cache.
18155 (move_it_in_display_line_to): Fix logic of returning
18156 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
18157
18158 2011-08-05 Eli Zaretskii <eliz@gnu.org>
18159
18160 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
18161 came from a string character with a `cursor' property. (Bug#9229)
18162
18163 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
18164
18165 * Makefile.in (LIB_PTHREAD): New variable.
18166 (LIBES): Add LIB_PTHREAD (Bug#9216).
18167
18168 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
18169 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
18170
18171 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
18172
18173 * regex.c (re_iswctype): Remove some redundant boolean conversions.
18174
18175 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
18176
18177 * xterm.c (x_find_topmost_parent): New function.
18178 (x_set_frame_alpha): Find topmost parent window with
18179 x_find_topmost_parent and set the property there also (bug#9181).
18180 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
18181
18182 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
18183
18184 * callproc.c (Fcall_process): Avoid vfork clobbering
18185 the local vars buffer, coding_systems, current_dir.
18186
18187 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
18188
18189 * keymap.c (Fmake_composed_keymap): Move to subr.el.
18190
18191 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
18192
18193 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
18194 so that it is not optimized away.
18195
18196 * xdisp.c (compute_display_string_pos): Remove unused local.
18197
18198 2011-08-02 Eli Zaretskii <eliz@gnu.org>
18199
18200 Fix slow cursor motion and scrolling in large buffers with
18201 selective display, like Org Mode buffers. (Bug#9218)
18202
18203 * dispextern.h (struct bidi_it): New member disp_prop_p.
18204
18205 * xdisp.c: Remove one-slot cache of display string positions.
18206 (compute_display_string_pos): Accept an additional argument
18207 DISP_PROP_P; callers changed. Scan at most 5K characters forward
18208 for a display string or property. If found, set DISP_PROP_P
18209 non-zero.
18210
18211 * bidi.c (bidi_fetch_char): Accept an additional argument
18212 DISP_PROP_P, and pass it to compute_display_string_pos.
18213 Only handle text covered by a display string if DISP_PROP_P is returned
18214 non-zero. All callers of bidi_fetch_char changed.
18215
18216 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
18217
18218 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
18219
18220 2010-12-03 Don March <don@ohspite.net>
18221
18222 * keymap.c (Fdefine_key): Fix non-prefix key error message when
18223 last character M-[char] is translated to ESC [char] (bug#7541).
18224
18225 2011-08-02 Kenichi Handa <handa@m17n.org>
18226
18227 * lisp.h (uniprop_table): Extern it.
18228
18229 * chartab.c (uniprop_table): Make it non-static.
18230
18231 2011-08-01 Eli Zaretskii <eliz@gnu.org>
18232
18233 * xdisp.c (forward_to_next_line_start): Accept additional argument
18234 BIDI_IT_PREV, and store into it the state of the bidi iterator had
18235 on the newline.
18236 (reseat_at_next_visible_line_start): Use the bidi iterator state
18237 returned by forward_to_next_line_start to restore the state of
18238 it->bidi_it after backing up to previous newline. (Bug#9212)
18239
18240 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
18241
18242 * regex.c (re_comp): Protoize.
18243 (re_exec): Fix return type.
18244 (regexec): Fix type of `ret'. (Bug#9203)
18245
18246 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
18247
18248 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
18249 This is needed if max-image-size is a floating-point number.
18250
18251 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
18252
18253 * print.c (print_object): Print empty symbol as ##.
18254
18255 * lread.c (read1): Read ## as empty symbol.
18256
18257 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
18258
18259 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
18260 setting frame foreground color (Bug#9175).
18261 (x_set_background_color): Likewise.
18262
18263 * nsmenu.m (-setText): Size tooltip dimensions precisely to
18264 contents (Bug#9176).
18265 (EmacsTooltip -init): Remove bezels and add shadows to
18266 tooltip windows.
18267
18268 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
18269 or scroll bar (Bug#8470).
18270
18271 * nsfont.m (nsfont_open): Remove assignment to voffset and
18272 unnecessary vars hshink, expand, hd, full_height, min_height.
18273 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
18274
18275 * nsterm.h (nsfont_info): Remove voffset field.
18276
18277 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
18278
18279 Implement strike-through and overline on NextStep (Bug#8863).
18280
18281 * nsfont.m (nsfont_open): Use underline position provided by font,
18282 instead of hard-coded value of 2.
18283 (nsfont_draw): Call ns_draw_text_decoration instead.
18284
18285 * nsterm.h: Add declaration for ns_draw_text_decoration.
18286
18287 * nsterm.m (ns_draw_text_decoration): New function for drawing
18288 underline, overline, and strike-through.
18289 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
18290 ns_draw_text_decoration. Change treatment of cursor drawing to
18291 accommodate underlining, etc.
18292
18293 2011-07-28 Eli Zaretskii <eliz@gnu.org>
18294
18295 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
18296 default.
18297
18298 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
18299
18300 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
18301 Without this fix, if a signal arrives just after memory fills up,
18302 'malloc' might be invoked reentrantly.
18303
18304 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
18305 In other words, assume that every image size is allowed, on non-X
18306 hosts. This assumption is probably wrong, but it lets Emacs compile.
18307
18308 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
18309
18310 * regex.c (re_iswctype): Convert return values to boolean.
18311
18312 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
18313
18314 * xdisp.c (compute_display_string_pos): Don't use cached display
18315 string position if the buffer had its restriction changed.
18316 (Bug#9184)
18317
18318 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
18319
18320 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
18321
18322 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
18323
18324 Integer signedness and overflow and related fixes. (Bug#9079)
18325
18326 * bidi.c: Integer size and overflow fixes.
18327 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
18328 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
18329 (bidi_cache_find_level_change, bidi_cache_ensure_space)
18330 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
18331 (bidi_find_other_level_edge):
18332 Use ptrdiff_t instead of EMACS_INT where either will do.
18333 This works better on 32-bit hosts configured --with-wide-int.
18334 (bidi_cache_ensure_space): Check for size-calculation overflow.
18335 Use % rather than repeated addition, for better worst-case speed.
18336 Don't set bidi_cache_size until after xrealloc returns, because it
18337 might not return.
18338 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
18339 (bidi_cache_ensure_space): Also check that the bidi cache size
18340 does not exceed that of the largest Lisp string or buffer. See Eli
18341 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
18342
18343 * alloc.c (__malloc_size_t): Remove.
18344 All uses replaced by size_t. See Andreas Schwab's note
18345 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
18346
18347 * image.c: Improve checking for integer overflow.
18348 (check_image_size): Assume that f is nonnull, since
18349 it is always nonnull in practice. This is one less thing to
18350 worry about when checking for integer overflow later.
18351 (x_check_image_size): New function, which checks for integer
18352 overflow issues inside X.
18353 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
18354 This removes the need for a memory_full check.
18355 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
18356 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
18357 (xbm_read_bitmap_data): Change locals back to 'int', since
18358 their values must fit in 'int'.
18359 (xpm_load_image, png_load, tiff_load):
18360 Invoke x_create_x_image_and_pixmap earlier,
18361 to avoid much needless work if the image is too large.
18362 (tiff_load): Treat overly large images as if
18363 x_create_x_image_and_pixmap failed, not as malloc failures.
18364 (gs_load): Use x_check_image_size.
18365
18366 * gtkutil.c: Omit integer casts.
18367 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
18368 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
18369
18370 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
18371
18372 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
18373 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
18374 would wrongly return t on a 64-bit host.
18375
18376 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
18377 The plain *_OVERFLOW macros run afoul of GCC bug 49705
18378 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
18379 and therefore cause GCC to emit a bogus diagnostic in some cases.
18380
18381 * image.c: Integer signedness and overflow and related fixes.
18382 This is not an exhaustive set of fixes, but it's time to
18383 record what I've got.
18384 (lookup_pixel_color, check_image_size): Remove redundant decls.
18385 (check_image_size): Don't assume that arbitrary EMACS_INT values
18386 fit in 'int', or that arbitrary 'double' values fit in 'int'.
18387 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
18388 (tiff_load, imagemagick_load_image):
18389 Check for overflow in size calculations.
18390 (x_create_x_image_and_pixmap): Remove unnecessary test for
18391 xmalloc returning NULL; that can't happen.
18392 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
18393 (xpm_color_bucket): Use better integer hashing function.
18394 (xpm_cache_color): Don't possibly over-allocate memory.
18395 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
18396 (gif_memory_source):
18397 Use ptrdiff_t, not int or size_t, to record sizes.
18398 (png_load): Don't assume values greater than 2**31 fit in 'int'.
18399 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
18400 either works, as we prefer signed integers.
18401 (tiff_read_from_memory, tiff_write_from_memory):
18402 Return tsize_t, not size_t, since that's what the TIFF API wants.
18403 (tiff_read_from_memory): Don't fail simply because the read would
18404 go past EOF; instead, return a short read.
18405 (tiff_load): Omit no-longer-needed casts.
18406 (Fimagemagick_types): Don't assume size fits into 'int'.
18407
18408 Improve hashing quality when configured --with-wide-int.
18409 * fns.c (hash_string): New function, taken from sxhash_string.
18410 Do not discard information about ASCII character case; this
18411 discarding is no longer needed.
18412 (sxhash-string): Use it. Change sig to match it. Caller changed.
18413 * lisp.h: Declare it.
18414 * lread.c (hash_string): Remove, since we now use fns.c's version.
18415 The fns.c version returns a wider integer if --with-wide-int is
18416 specified, so this should help the quality of the hashing a bit.
18417
18418 * emacs.c: Integer overflow minor fix.
18419 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
18420 Define only if GNU_LINUX.
18421 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
18422
18423 * dispnew.c: Integer signedness and overflow fixes.
18424 Remove unnecessary forward decls, that were a maintenance hassle.
18425 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
18426 All uses changed.
18427 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
18428 (scrolling_window): Use ptrdiff_t, not int, for byte count.
18429 (prepare_desired_row, line_draw_cost):
18430 Use int, not unsigned, where either works.
18431 (save_current_matrix, restore_current_matrix):
18432 Use ptrdiff_t, not size_t, where either works.
18433 (init_display): Check for overflow more accurately, and without
18434 relying on undefined behavior.
18435
18436 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
18437 Remove, replacing with the new symbols in lisp.h. All uses changed.
18438 * fileio.c (make_temp_name):
18439 * filelock.c (lock_file_1, lock_file):
18440 * xdisp.c (message_dolog):
18441 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
18442 Use pMd etc. instead.
18443 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
18444 replacing the pWIDE etc. symbols removed from editfns.c.
18445
18446 * keyboard.h (num_input_events): Now uintmax_t.
18447 This is (very slightly) less likely to mess up due to wraparound.
18448 All uses changed.
18449
18450 * buffer.c: Integer signedness fixes.
18451 (alloc_buffer_text, enlarge_buffer_text):
18452 Use ptrdiff_t rather than size_t when either will do, as we prefer
18453 signed integers.
18454
18455 * alloc.c: Integer signedness and overflow fixes.
18456 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
18457 (__malloc_size_t): Default to size_t, not to int.
18458 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
18459 (Fgarbage_collect, mark_object_loop_halt, mark_object):
18460 Prefer ptrdiff_t to size_t when either would do, as we prefer
18461 signed integers.
18462 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
18463 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
18464 Now const. Initialize with values that are in range even if char
18465 is signed.
18466 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
18467 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
18468 These functions do the right thing with sizes > 2**32.
18469 (check_depth): Now ptrdiff_t, not int.
18470 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
18471 Adjust to new way of storing sizes. Check for size overflow bugs
18472 in rest of code.
18473 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
18474 slightly wrong anyway, as it missed one instance of
18475 XMALLOC_OVERRUN_CHECK_OVERHEAD.
18476 (refill_memory_reserve): Omit needless cast to size_t.
18477 (mark_object_loop_halt): Mark as externally visible.
18478
18479 * xselect.c: Integer signedness and overflow fixes.
18480 (Fx_register_dnd_atom, x_handle_dnd_message):
18481 Use ptrdiff_t, not size_t, since we prefer signed.
18482 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
18483 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
18484 x_dnd_atoms_size and x_dnd_atoms_length.
18485
18486 * doprnt.c: Prefer signed to unsigned when either works.
18487 * eval.c (verror):
18488 * doprnt.c (doprnt):
18489 * lisp.h (doprnt):
18490 * xdisp.c (vmessage):
18491 Use ptrdiff_t, not size_t, when using or implementing doprnt,
18492 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
18493 prefer signed arithmetic to avoid comparison confusion.
18494 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
18495 but is a bit tricky.
18496
18497 Assume freestanding C89 headers, string.h, stdlib.h.
18498 * data.c, doprnt.c, floatfns.c, print.c:
18499 Include float.h unconditionally.
18500 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
18501 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
18502 * regex.c: Likewise for stddef.h, string.h.
18503 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
18504 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
18505 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
18506 (STDC_HEADERS): Remove obsolete defines.
18507 * sysdep.c: Include limits.h unconditionally.
18508
18509 Assume support for memcmp, memcpy, memmove, memset.
18510 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
18511 * regex.c (memcmp, memcpy):
18512 Remove; we assume C89 now.
18513
18514 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
18515 (__malloc_safe_bcopy): Remove; no longer needed.
18516
18517 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
18518 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
18519 well either way, and we prefer signed to unsigned.
18520
18521 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
18522
18523 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
18524 closes the connection while we're reading (bug#9182).
18525
18526 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
18527
18528 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
18529 are specified (Bug#9168).
18530
18531 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
18532
18533 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
18534 Found by GCC static checking and --with-wide-int on a 32-bit host.
18535
18536 2011-07-25 Eli Zaretskii <eliz@gnu.org>
18537
18538 * xdisp.c (compute_display_string_pos): Fix logic of caching
18539 previous display string position. Initialize cached_prev_pos to
18540 -1. Fixes slow-down at the beginning of a buffer.
18541
18542 2011-07-24 Eli Zaretskii <eliz@gnu.org>
18543
18544 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
18545 for attrs[LFACE_FONTSET_INDEX].
18546
18547 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
18548
18549 * xml.c (parse_region): Remove unused local
18550 that was recently introduced.
18551
18552 2011-07-23 Eli Zaretskii <eliz@gnu.org>
18553
18554 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
18555 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
18556
18557 * xdisp.c (move_it_in_display_line_to): Record the best matching
18558 position for TO_CHARPOS while scanning the line, and restore it on
18559 exit if none of the characters scanned was an exact match.
18560 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
18561 when exact match is impossible due to invisible text, and the
18562 lines are truncated.
18563
18564 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
18565
18566 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
18567 for OSX >= 10.7.
18568
18569 2011-07-22 Eli Zaretskii <eliz@gnu.org>
18570
18571 Fix a significant slow-down of cursor motion with C-n, C-p,
18572 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
18573 auto-repeat under bidi redisplay in fontified buffers.
18574 * xdisp.c (compute_stop_pos_backwards): New function.
18575 (next_element_from_buffer): Call compute_stop_pos_backwards to
18576 find a suitable prev_stop when we find ourselves before
18577 base_level_stop.
18578 (reseat): Don't look for prev_stop, as that could mean a very long
18579 run.
18580 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
18581 <cached_disp_overlay_modiff>: Cache for last found display string
18582 position.
18583 (compute_display_string_pos): Return the cached position if asked
18584 about the same buffer in the same area of character positions, and
18585 the buffer wasn't changed since the time the display string
18586 position was cached.
18587
18588 2011-07-22 Eli Zaretskii <eliz@gnu.org>
18589
18590 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
18591 is an integer, which is important for empty lines. (Bug#9149)
18592
18593 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
18594
18595 * frame.c (Fmodify_frame_parameters): In tty case, update the
18596 default face if necessary (Bug#4238).
18597
18598 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
18599
18600 * editfns.c (Fstring_to_char): No need to explain what a character
18601 is in the docstring (Bug#6576).
18602
18603 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
18604
18605 * xml.c (parse_region): Make sure we always return a tree.
18606
18607 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
18608
18609 * xml.c (parse_region): If a document contains only comments,
18610 return that, too.
18611
18612 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
18613
18614 * xml.c (make_dom): Return comments, too.
18615
18616 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
18617
18618 Port to OpenBSD.
18619 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
18620 and the surrounding thread.
18621 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
18622 rather than fgets, and retry after EINTR. Otherwise, 'emacs
18623 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
18624 timer goes off.
18625 * s/openbsd.h (BROKEN_SIGIO): Define.
18626 * unexelf.c (unexec) [__OpenBSD__]:
18627 Don't update the .mdebug section of the Alpha COFF symbol table.
18628
18629 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
18630
18631 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
18632 (bug#8460).
18633
18634 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
18635
18636 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
18637 This fixes some race conditions on the permissions of any newly
18638 created file.
18639
18640 * alloc.c (valid_pointer_p): Use pipe, not open.
18641 This fixes some permissions issues when debugging.
18642
18643 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
18644 If fchown fails to set both uid and gid, try to set just gid,
18645 as that is sometimes allowed. Adjust the file's mode to eliminate
18646 setuid or setgid bits that are inappropriate if fchown fails.
18647
18648 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
18649
18650 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
18651 to compare Lisp_Objects.
18652 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
18653 global_gnutls_log_level, don't mistake it for a Lisp_Object.
18654 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
18655
18656 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
18657
18658 * lread.c (read_integer): Unread even EOF character.
18659 (read1): Likewise. Properly record start position of symbol.
18660
18661 * lread.c (read1): Read `#:' as empty uninterned symbol if no
18662 symbol character follows.
18663
18664 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
18665
18666 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
18667 This works around a problem with the previous change to Fcopy_file.
18668 Recent glibc declares fchown with __attribute__((warn_unused_result)),
18669 and without this change, GCC might complain about discarding
18670 fchown's return value.
18671
18672 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
18673
18674 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
18675
18676 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
18677
18678 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
18679
18680 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
18681
18682 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
18683 it's used from the C level.
18684
18685 * process.c: Use the same condition for POLL_FOR_INPUT in both
18686 keyboard.c and process.c (bug#1858).
18687
18688 2011-07-09 Lawrence Mitchell <wence@gmx.li>
18689
18690 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
18691 (Fgnutls_boot): Use it.
18692
18693 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
18694
18695 * doc.c (Fsubstitute_command_keys): Revert last change.
18696
18697 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
18698
18699 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
18700 quotes the next character, and doesn't affect other longer
18701 sequences (bug#8935).
18702
18703 * lread.c (syms_of_lread): Clarify that is isn't only
18704 `eval-buffer' and `eval-defun' that's affected by
18705 `lexical-binding' (bug#8460).
18706
18707 2011-07-15 Eli Zaretskii <eliz@gnu.org>
18708
18709 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
18710 bidi redisplay when a line includes both an image and is truncated.
18711
18712 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
18713
18714 Fix minor problems found by static checking.
18715 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
18716 (elsz): Now a signed constant, not a size_t var. We prefer signed
18717 types to unsigned, to avoid integer comparison confusion. Without
18718 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
18719 "cannot optimize loop, the loop counter may overflow", a symptom
18720 of the confusion.
18721 * indent.c (Fvertical_motion): Mark locals as initialized.
18722 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
18723
18724 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18725
18726 * search.c (Fre_search_backward): Mention `case-fold-search' in
18727 all the re_search_* functions (bug#8138).
18728
18729 * keyboard.c (Fopen_dribble_file): Document when the file is
18730 closed (bug#8056).
18731
18732 2011-07-14 Eli Zaretskii <eliz@gnu.org>
18733
18734 * bidi.c (bidi_dump_cached_states): Fix format of displaying
18735 bidi_cache_idx.
18736
18737 Support bidi reordering of display and overlay strings.
18738 * xdisp.c (compute_display_string_pos)
18739 (compute_display_string_end): Accept additional argument STRING.
18740 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
18741 (reseat_to_string): Initialize bidi_it->string.s and
18742 bidi_it->string.schars.
18743 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
18744 NULL (avoids a crash in bidi_paragraph_init).
18745 Initialize itb.string.lstring.
18746 (init_iterator): Call bidi_init_it only of a valid
18747 buffer position was specified. Initialize paragraph_embedding to
18748 L2R.
18749 (reseat_to_string): Initialize the bidi iterator.
18750 (display_string): If we need to ignore text properties of
18751 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
18752 original value of -1 will not work with bidi.)
18753 (compute_display_string_pos): First arg is now struct
18754 `text_pos *'; all callers changed. Support display properties on
18755 Lisp strings.
18756 (compute_display_string_end): Support display properties on Lisp
18757 strings.
18758 (init_iterator, reseat_1, reseat_to_string): Initialize the
18759 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
18760 when iterating on a string not from display properties).
18761 (compute_display_string_pos, compute_display_string_end):
18762 Fix calculation of the object to scan. Fixes an error when using
18763 arrow keys.
18764 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
18765 base_level_stop; instead, set base_level_stop to BEGV.
18766 Fixes crashes in vertical-motion.
18767 (next_element_from_buffer): Improve commentary for when
18768 the iterator is before prev_stop.
18769 (init_iterator): Initialize bidi_p from the default value of
18770 bidi-display-reordering, not from buffer-local value. Use the
18771 buffer-local value only if initializing for buffer iteration.
18772 (handle_invisible_prop): Support invisible properties on strings
18773 that are being bidi-reordered.
18774 (set_iterator_to_next): Support bidi reordering of C strings and
18775 Lisp strings.
18776 (next_element_from_string): Support bidi reordering of Lisp
18777 strings.
18778 (handle_stop_backwards): Support Lisp strings as well.
18779 (display_string): Support display of R2L glyph rows.
18780 Use IT_STRING_CHARPOS when displaying from a Lisp string.
18781 (init_iterator): Don't initialize it->bidi_p for strings
18782 here.
18783 (reseat_to_string): Initialize it->bidi_p for strings here.
18784 (next_element_from_string, next_element_from_c_string)
18785 (next_element_from_buffer): Add xassert's for correspondence
18786 between IT's object being iterated and it->bidi_it.string
18787 structure.
18788 (face_before_or_after_it_pos): Support bidi iteration.
18789 (next_element_from_c_string): Handle the case of the first string
18790 character that is not the first one in the visual order.
18791 (get_visually_first_element): New function, refactored from common
18792 parts of next_element_from_buffer, next_element_from_string, and
18793 next_element_from_c_string.
18794 (tool_bar_lines_needed, redisplay_tool_bar)
18795 (display_menu_bar): Force left-to-right direction. Add a FIXME
18796 comment for making that be controlled by a user option.
18797 (push_it, pop_it): Save and restore the state of the
18798 bidi iterator. Save and restore the bidi_p flag.
18799 (pop_it): Iterate out of display property for string iteration as
18800 well.
18801 (iterate_out_of_display_property): Support iteration over strings.
18802 (handle_single_display_spec): Set up it->bidi_it for iteration
18803 over a display string, and call bidi_init_it.
18804 (handle_single_display_spec, next_overlay_string)
18805 (get_overlay_strings_1, push_display_prop): Set up the bidi
18806 iterator for displaying display or overlay strings.
18807 (forward_to_next_line_start): Don't use the shortcut if
18808 bidi-iterating.
18809 (back_to_previous_visible_line_start): If handle_display_prop
18810 pushed the iterator stack, restore the internal state of the bidi
18811 iterator by calling bidi_pop_it same number of times.
18812 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
18813 and we are bidi-iterating, don't decrement the iterator position;
18814 instead, set the first_elt flag in the bidi iterator, to produce
18815 the same effect.
18816 (reseat_1): Remove redundant setting of string_from_display_prop_p.
18817 (push_display_prop): xassert that we are iterating a buffer.
18818 (push_it, pop_it): Save and restore paragraph_embedding member.
18819 (handle_single_display_spec, next_overlay_string)
18820 (get_overlay_strings_1, reseat_1, reseat_to_string)
18821 (push_display_prop): Set up the `unibyte' member of bidi_it.string
18822 correctly. Don't assume unibyte strings are not bidi-reordered.
18823 (compute_display_string_pos)
18824 (compute_display_string_end): Fix handling the case of C string.
18825 (push_it, pop_it): Save and restore from_disp_prop_p.
18826 (handle_single_display_spec, push_display_prop): Set the
18827 from_disp_prop_p flag.
18828 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
18829 (pop_it): Call iterate_out_of_display_property only if we are
18830 popping after iteration over a string that came from a display
18831 property. Fix a typo in popping stretch info. Add an assertion
18832 for verifying that the iterator position is in sync with the bidi
18833 iterator.
18834 (handle_single_display_spec, get_overlay_strings_1)
18835 (push_display_prop): Fix initialization of paragraph direction for
18836 string when that of the parent object is not yet determined.
18837 (reseat_1): Call bidi_init_it to resync the bidi
18838 iterator with IT's position. (Bug#7616)
18839 (find_row_edges): If ROW->start.pos gives position
18840 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
18841 (handle_stop, back_to_previous_visible_line_start, reseat_1):
18842 Reset the from_disp_prop_p flag.
18843 (SAVE_IT, RESTORE_IT): New macros.
18844 (pos_visible_p, face_before_or_after_it_pos)
18845 (back_to_previous_visible_line_start)
18846 (move_it_in_display_line_to, move_it_in_display_line)
18847 (move_it_to, move_it_vertically_backward, move_it_by_lines)
18848 (try_scrolling, redisplay_window, display_line): Use them when
18849 saving a temporary copy of the iterator and restoring it back.
18850 (back_to_previous_visible_line_start, reseat_1)
18851 (init_iterator): Empty the bidi cache "stack".
18852 (move_it_in_display_line_to): If iterator ended up at
18853 EOL, but we never saw any buffer positions smaller than
18854 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
18855 motion in bidi-reordered lines.
18856 (move_it_in_display_line_to): Record prev_method and prev_pos
18857 immediately before the call to set_iterator_to_next. Fixes cursor
18858 motion in bidi-reordered lines with stretch glyphs and strings
18859 displayed in margins. (Bug#8133) (Bug#8867)
18860 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
18861 TO_CHARPOS.
18862 (pos_visible_p): Support positions in bidi-reordered lines.
18863 Save and restore bidi cache.
18864
18865 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
18866 (bidi_paragraph_info): Delete unused struct.
18867 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
18868 (bidi_cache_start): New variable.
18869 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
18870 to zero.
18871 (bidi_cache_fetch_state, bidi_cache_search)
18872 (bidi_cache_find_level_change, bidi_cache_iterator_state)
18873 (bidi_cache_find, bidi_peek_at_next_level)
18874 (bidi_level_of_next_char, bidi_find_other_level_edge)
18875 (bidi_move_to_visually_next): Compare cache index with
18876 bidi_cache_start rather than with zero.
18877 (bidi_fetch_char): Accept new argument STRING; all callers
18878 changed. Support iteration over a string. Support strings with
18879 display properties. Support unibyte strings. Fix the type of
18880 `len' according to what STRING_CHAR_AND_LENGTH expects.
18881 (bidi_paragraph_init, bidi_resolve_explicit_1)
18882 (bidi_resolve_explicit, bidi_resolve_weak)
18883 (bidi_level_of_next_char, bidi_move_to_visually_next):
18884 Support iteration over a string.
18885 (bidi_set_sor_type, bidi_resolve_explicit_1)
18886 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
18887 can now be zero (for strings); special values 0 and -1 were
18888 changed to -1 and -2, respectively.
18889 (bidi_char_at_pos): New function.
18890 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
18891 Call it instead of FETCH_MULTIBYTE_CHAR.
18892 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
18893 initialized to valid values.
18894 (bidi_init_it): Don't initialize charpos and bytepos with invalid
18895 values.
18896 (bidi_level_of_next_char): Allow the sentinel "position" to pass
18897 the test for valid cached positions. Fix the logic for looking up
18898 the sentinel state in the cache. GCPRO the Lisp string we are
18899 iterating.
18900 (bidi_push_it, bidi_pop_it): New functions.
18901 (bidi_initialize): Initialize the bidi cache start stack pointer.
18902 (bidi_cache_ensure_space): New function, refactored from part of
18903 bidi_cache_iterator_state. Don't assume the required size is just
18904 one BIDI_CACHE_CHUNK away.
18905 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
18906 (bidi_count_bytes, bidi_char_at_pos): New functions.
18907 (bidi_cache_search): Don't assume bidi_cache_last_idx is
18908 always valid if bidi_cache_idx is valid.
18909 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
18910 is valid if it's going to be used.
18911 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
18912 (bidi_cache_fetch_state, bidi_cache_search)
18913 (bidi_cache_find_level_change, bidi_cache_ensure_space)
18914 (bidi_cache_iterator_state, bidi_cache_find)
18915 (bidi_find_other_level_edge, bidi_cache_start_stack):
18916 All variables related to cache indices are now EMACS_INT.
18917
18918 * dispextern.h (struct bidi_string_data): New structure.
18919 (struct bidi_it): New member `string'. Make flag members be 1-bit
18920 fields, and put them last in the struct.
18921 (compute_display_string_pos, compute_display_string_end):
18922 Update prototypes.
18923 (bidi_push_it, bidi_pop_it): Add prototypes.
18924 (struct iterator_stack_entry): New members bidi_p,
18925 paragraph_embedding, and from_disp_prop_p.
18926 (struct it): Member bidi_p is now a bit field 1 bit wide.
18927 (bidi_shelve_cache, bidi_unshelve_cache):
18928 Declare prototypes.
18929
18930 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
18931 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
18932 and vector-like objects.
18933
18934 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
18935 cache around display iteration.
18936
18937 * window.c (Fwindow_end, window_scroll_pixel_based)
18938 (displayed_window_lines, Frecenter): Save and restore the bidi
18939 cache around display iteration.
18940
18941 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
18942
18943 * editfns.c (Fdelete_region): Clarify the use of the named
18944 parameters (bug#6788).
18945
18946 2011-07-14 Martin Rudalics <rudalics@gmx.at>
18947
18948 * indent.c (Fvertical_motion): Set and restore w->pointm when
18949 saving and restoring the window's buffer (Bug#9006).
18950
18951 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
18952
18953 * editfns.c (Fstring_to_char): Clarify just what is returned
18954 (bug#6576). Text by Eli Zaretskii.
18955
18956 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
18957
18958 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
18959
18960 2011-07-13 Eli Zaretskii <eliz@gnu.org>
18961
18962 * buffer.c (mmap_find): Fix a typo.
18963
18964 2011-07-13 Johan Bockgård <bojohan@gnu.org>
18965
18966 Fix execution of x selection hooks.
18967 * xselect.c (Qx_lost_selection_functions)
18968 (Qx_sent_selection_functions): New vars.
18969 (syms_of_xselect): DEFSYM them.
18970 (x_handle_selection_request): Pass Qx_sent_selection_functions
18971 rather than Vx_sent_selection_functions to Frun_hook_with_args.
18972 (x_handle_selection_clear,x_clear_frame_selections):
18973 Pass Qx_lost_selection_functions rather than
18974 Vx_lost_selection_functions to Frun_hook_with_args.
18975
18976 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
18977
18978 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
18979 The old code sometimes used this field without initializing it.
18980
18981 * alloc.c (gc_sweep): Don't read past end of array.
18982 In theory, the old code could also have corrupted Emacs internals,
18983 though it'd be very unlikely.
18984
18985 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
18986
18987 * character.c (Fcharacterp): Don't advertise optional ignored
18988 argument. (Bug#4026)
18989
18990 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
18991
18992 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
18993 key" (bug#4257).
18994
18995 * window.c (Fset_window_start): Doc fix (bug#4199).
18996 (Fset_window_hscroll): Ditto.
18997
18998 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
18999
19000 Fix minor new problems caught by GCC 4.6.1.
19001 * term.c (init_tty): Remove unused local.
19002 * xsettings.c (store_monospaced_changed): Define this function only
19003 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
19004 not used otherwise.
19005
19006 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
19007
19008 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
19009
19010 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
19011
19012 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
19013 are the mini-buffer and the echo area (bug#3320).
19014
19015 * term.c (init_tty): Remove support for supdup, c10 and perq
19016 terminals, which are no longer supported (bug#1482).
19017
19018 2011-07-10 Johan Bockgård <bojohan@gnu.org>
19019
19020 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
19021
19022 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
19023
19024 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
19025 for non-popups (Bug#3642).
19026
19027 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
19028
19029 * alloc.c (reset_malloc_hooks): Protoize.
19030 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
19031 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
19032 * cm.c (losecursor): Likewise.
19033 * data.c (fmod): Likewise.
19034 * dispnew.c (swap_glyphs_in_rows): Likewise.
19035 * emacs.c (memory_warning_signal): Likewise.
19036 * floatfns.c (float_error): Likewise.
19037 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
19038 (otf_open, font_otf_capability, generate_otf_features)
19039 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
19040 Likewise.
19041 * image.c (pbm_read_file): Likewise.
19042 * indent.c (string_display_width): Likewise.
19043 * intervals.c (check_for_interval, search_for_interval)
19044 (inc_interval_count, count_intervals, root_interval)
19045 (adjust_intervals_for_insertion, make_new_interval): Likewise.
19046 * lread.c (defalias): Likewise.
19047 * ralloc.c (r_alloc_check): Likewise.
19048 * regex.c (set_image_of_range_1, set_image_of_range)
19049 (regex_grow_registers): Likewise.
19050 * sysdep.c (strerror): Likewise.
19051 * termcap.c (valid_filename_p, tprint, main): Likewise.
19052 * tparam.c (main): Likewise.
19053 * unexhp9k800.c (run_time_remap, save_data_space)
19054 (update_file_ptrs, read_header, write_header, calculate_checksum)
19055 (copy_file, copy_rest, display_header): Likewise.
19056 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
19057 Likewise.
19058 * xdisp.c (check_it): Likewise.
19059 * xfaces.c (register_color, unregister_color, unregister_colors):
19060 Likewise.
19061 * xfns.c (print_fontset_result): Likewise.
19062 * xrdb.c (member, fatal, main): Likewise.
19063
19064 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
19065
19066 Fix minor problems found by static checking (Bug#9031).
19067 * chartab.c (char_table_set_range, map_sub_char_table):
19068 Remove unused locals.
19069 (uniprop_table): Now static.
19070 * composite.c (_work_char): Remove unused static var.
19071
19072 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
19073
19074 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
19075
19076 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
19077
19078 * gtkutil.c (qttip_cb): Remove code without function.
19079
19080 2011-07-09 Eli Zaretskii <eliz@gnu.org>
19081
19082 * w32.c (pthread_sigmask): New stub.
19083
19084 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
19085
19086 Use pthread_sigmask, not sigprocmask (Bug#9010).
19087 sigprocmask is portable only for single-threaded applications, and
19088 Emacs can be multi-threaded when it uses GTK.
19089 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
19090 (LIBES): Use it.
19091 * callproc.c (Fcall_process):
19092 * process.c (create_process):
19093 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
19094 Use pthread_sigmask, not sigprocmask.
19095
19096 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
19097
19098 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
19099 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
19100 wrong (Bug#8591).
19101
19102 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
19103
19104 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
19105 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
19106 (xg_hide_tooltip): Fix comment.
19107
19108 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
19109 in registerServicesMenuSendTypes.
19110 (validRequestorForSendType): Don't check ns_return_types.
19111
19112 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
19113 ns_return_type.
19114
19115 2011-07-08 Jason Rumney <jasonr@gnu.org>
19116
19117 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
19118 SH_SHOW for hidden windows (Bug#5482).
19119
19120 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
19121 frame struct members of non-existent frames (Bug#6284).
19122
19123 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
19124
19125 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
19126 variable firstTime not needed on OSX >= 10.6.
19127 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
19128 >= 10.5. Use setKnobProportion, setDoubleValue.
19129
19130 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
19131 (MAC_OS_X_VERSION_10_5): Define if not defined.
19132 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
19133 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
19134 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
19135
19136 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
19137 cString and lossyCString on OSX >= 10.4.
19138
19139 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
19140 sizeToFit on OSX >= 10.2.
19141
19142 * nsimage.m (allocInitFromFile): Don't use deprecated method
19143 bestRepresentationForDevice on OSX >= 10.6.
19144
19145 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
19146 to avoid warning.
19147
19148 * emacs.c: Declare unexec_init_emacs_zone.
19149
19150 * nsgui.h: Fix compiler warning about gnulib redefining verify.
19151
19152 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
19153
19154 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
19155 on svcsMenu (Bug#8842).
19156
19157 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
19158 ns_return_types.
19159 (Fns_list_services): Just return Qnil on 10.6, code not working there.
19160
19161 * nsterm.m (QUTF8_STRING): Declare.
19162 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
19163 (validRequestorForSendType): Return type is (id).
19164 Change indexOfObjectIdenticalTo to indexOfObject.
19165 Check if we have local selection before returning self (Bug#8842).
19166 (writeSelectionToPasteboard): Put local selection into paste board
19167 if we have a local selection (Bug#8842).
19168 (syms_of_nsterm): DEFSYM QUTF8_STRING.
19169
19170 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
19171 (ns_get_local_selection): Declare.
19172
19173 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
19174
19175 * keymap.c (describe_map_tree): Don't insert a double newline at
19176 the end of the buffer (bug#1169) and return whether we inserted
19177 something.
19178
19179 * callint.c (Fcall_interactively): Change "reading args" to
19180 "providing args" to try to clarify what it does (bug#1010).
19181
19182 2011-07-07 Kenichi Handa <handa@m17n.org>
19183
19184 * composite.c (composition_compute_stop_pos): Ignore a static
19185 composition starting before CHARPOS (Bug#8915).
19186
19187 * xdisp.c (handle_composition_prop): Likewise.
19188
19189 2011-07-07 Eli Zaretskii <eliz@gnu.org>
19190
19191 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
19192 (Bug#9015)
19193
19194 2011-07-07 Kenichi Handa <handa@m17n.org>
19195
19196 * character.h (unicode_category_t): New enum type.
19197
19198 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
19199 (Qchar_code_property_table): New variable.
19200 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
19201 (UNIPROP_COMPRESSED_FORM_P): New macros.
19202 (char_table_ascii): Uncompress the compressed values.
19203 (sub_char_table_ref): New arg is_uniprop. Callers changed.
19204 Uncompress the compressed values.
19205 (sub_char_table_ref_and_range): Likewise.
19206 (char_table_ref_and_range): Uncompress the compressed values.
19207 (sub_char_table_set): New arg is_uniprop. Callers changed.
19208 Uncompress the compressed values.
19209 (sub_char_table_set_range): Args changed. Callers changed.
19210 (char_table_set_range): Adjuted for the above change.
19211 (map_sub_char_table): Delete args default_val and parent. Add arg
19212 top. Give decoded values to a Lisp function.
19213 (map_char_table): Adjust for the above change. Give decoded
19214 values to a Lisp function. Gcpro more variables.
19215 (uniprop_table_uncompress)
19216 (uniprop_decode_value_run_length): New functions.
19217 (uniprop_decoder, uniprop_decoder_count): New variables.
19218 (uniprop_get_decoder, uniprop_encode_value_character)
19219 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
19220 New functions.
19221 (uniprop_encoder, uniprop_encoder_count): New variables.
19222 (uniprop_get_encoder, uniprop_table)
19223 (Funicode_property_table_internal, Fget_unicode_property_internal)
19224 (Fput_unicode_property_internal): New functions.
19225 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
19226 Sunicode_property_table_internal, Sget_unicode_property_internal,
19227 and Sput_unicode_property_internal. Defvar_lisp
19228 char-code-property-alist.
19229
19230 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
19231 Vunicode_category_table.
19232
19233 * font.c (font_range): Adjust for the change of
19234 Vunicode_category_table.
19235
19236 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
19237
19238 * m/iris4d.h: Remove file, move contents ...
19239 * s/irix6-5.h: ... here.
19240
19241 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
19242
19243 Remove unportable assumption about struct layout (Bug#8884).
19244 * alloc.c (mark_buffer):
19245 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
19246 (clone_per_buffer_values): Don't assume that
19247 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
19248 This isn't true in general, and it's particularly not true
19249 if Emacs is configured with --with-wide-int.
19250 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
19251 New macros, used in the buffer.c change.
19252
19253 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
19254
19255 * xsettings.c: Use both GConf and GSettings if both are available.
19256 (store_config_changed_event): Add comment.
19257 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
19258 (store_tool_bar_style_changed): New functions.
19259 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
19260 (struct xsettings): Move font inside HAVE_XFT.
19261 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
19262 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
19263 Move inside HAVE_XFT.
19264 (something_changed_gsettingsCB): Rename from something_changedCB.
19265 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
19266 also.
19267 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
19268 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
19269 (something_changed_gconfCB): Rename from something_changedCB.
19270 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
19271 (parse_settings): Move check for font inside HAVE_XFT.
19272 (read_settings, apply_xft_settings): Add comment.
19273 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
19274 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
19275 call store_font_name_changed.
19276 (xft_settings_event): Add comment.
19277 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
19278 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
19279 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
19280 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
19281 (xsettings_initialize): Call init_gsettings last.
19282 (xsettings_get_system_font, xsettings_get_system_normal_font):
19283 Add comment.
19284
19285 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
19286
19287 Random fixes. E.g., (random) never returned negative values.
19288 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
19289 subseconds part to the entropy, as that's a bit more random.
19290 Prefer signed to unsigned, since the signedness doesn't matter and
19291 in general we prefer signed. When given a limit, use a
19292 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
19293 latter isn't right if USE_2_TAGS_FOR_INTS.
19294 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
19295 not 0..VALMASK. Don't discard "excess" bits that random () returns.
19296
19297 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19298
19299 * textprop.c (text_property_stickiness):
19300 Obey Vtext_property_default_nonsticky.
19301 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
19302 * w32fns.c (syms_of_w32fns):
19303 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
19304
19305 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
19306
19307 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
19308 This is more efficient than Ffile_directory_p and avoids a minor race.
19309
19310 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
19311
19312 * buffer.c (Foverlay_put): Say what the return value is
19313 (bug#7835).
19314
19315 * fileio.c (barf_or_query_if_file_exists): Check first if the file
19316 is a directory before asking whether to use the file name
19317 (bug#7564).
19318 (barf_or_query_if_file_exists): Make the "File is a directory"
19319 error be more correct.
19320
19321 * fns.c (Frequire): Remove the mention of the .gz files, since
19322 that's installation-specific, but keep the mention of
19323 `get-load-suffixes'.
19324
19325 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
19326
19327 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
19328 Report string overflow if the output is too long.
19329
19330 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
19331
19332 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
19333 (syms_of_gnutls): Remove duplicate DEFSYM for
19334 Qgnutls_bootprop_verify_hostname_error, an error for
19335 Qgnutls_bootprop_verify_error (which is no longer used).
19336
19337 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
19338 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
19339 Also (re)move comments that are misplaced or no longer relevant.
19340
19341 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19342
19343 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
19344
19345 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
19346
19347 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
19348 and background color parameters if they have been changed.
19349
19350 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
19351
19352 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
19353
19354 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
19355
19356 * xsettings.c (SYSTEM_FONT): Define only when used.
19357 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
19358
19359 * keymap.c (access_keymap_1): Now static.
19360
19361 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
19362
19363 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
19364 leave any prefix arg for the up event (Bug#1586).
19365
19366 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
19367
19368 * lread.c (syms_of_lread): Mention single symbols defined by
19369 `defvar' or `defconst' (bug#7154).
19370
19371 * fns.c (Frequire): Mention .el.gz files (bug#7314).
19372 (Frequire): Mention get-load-suffixes.
19373
19374 2011-07-02 Martin Rudalics <rudalics@gmx.at>
19375
19376 * window.h (window): Remove clone_number slot.
19377 * window.c (Fwindow_clone_number, Fset_window_clone_number):
19378 Remove.
19379 (make_parent_window, make_window, saved_window)
19380 (Fset_window_configuration, save_window_save): Don't deal with
19381 clone numbers.
19382 * buffer.c (Qclone_number): Remove declaration.
19383 (sort_overlays, overlay_strings): Don't deal with clone numbers.
19384
19385 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
19386
19387 Add multiple inheritance to keymaps.
19388 * keymap.c (Fmake_composed_keymap): New function.
19389 (Fset_keymap_parent): Simplify.
19390 (fix_submap_inheritance): Remove.
19391 (access_keymap_1): New function extracted from access_keymap to handle
19392 embedded parents and handle lists of maps.
19393 (access_keymap): Use it.
19394 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
19395 (Fcopy_keymap): Handle embedded parents.
19396 (Fcommand_remapping, define_as_prefix): Simplify.
19397 (Fkey_binding): Simplify.
19398 (syms_of_keymap): Move minibuffer-local-completion-map,
19399 minibuffer-local-filename-completion-map,
19400 minibuffer-local-must-match-map, and
19401 minibuffer-local-filename-must-match-map to Elisp.
19402 (syms_of_keymap): Defsubr make-composed-keymap.
19403 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
19404 (parse_menu_item): Trivial simplification.
19405
19406 2011-07-01 Glenn Morris <rgm@gnu.org>
19407
19408 * Makefile.in (SETTINGS_LIBS): Fix typo.
19409
19410 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
19411
19412 * coding.c (Fencode_coding_string): Record the last coding system
19413 used, as the function doc string says (bug#8738).
19414
19415 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
19416
19417 * xsettings.c (store_monospaced_changed): Take new font as arg and
19418 check for change against current_mono_font.
19419 (EMACS_TYPE_SETTINGS): Remove this and related defines.
19420 (emacs_settings_constructor, emacs_settings_get_property)
19421 (emacs_settings_set_property, emacs_settings_class_init)
19422 (emacs_settings_init, gsettings_obj): Remove.
19423 (something_changedCB): New function for HAVE_GSETTINGS.
19424 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
19425 with value as argument.
19426 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
19427 g_settings_new (Bug#8967). Do not create gsettings_obj.
19428 Remove calls to g_settings_bind. Connect something_changedCB to
19429 "changed".
19430
19431 * xgselect.c: Add defined (HAVE_GSETTINGS).
19432 (xgselect_initialize): Ditto.
19433
19434 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
19435 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
19436 xg_select.
19437
19438 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
19439
19440 * eval.c (struct backtrace): Simplify and port the data structure.
19441 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
19442 signed bit field, as this assumption is not portable and it makes
19443 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
19444 "char debug_on_exit : 1" as this is not portable either; instead,
19445 use the portable "unsigned int debug_on_exit : 1". Remove unused
19446 member evalargs. Remove obsolete comments about cc bombing out.
19447
19448 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
19449
19450 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
19451 Let HAVE_GSETTINGS override HAVE_GCONF.
19452 (store_monospaced_changed): New function.
19453 (EMACS_SETTINGS): A new type derived from GObject to handle
19454 GSettings notifications.
19455 (emacs_settings_constructor, emacs_settings_get_property)
19456 (emacs_settings_set_property, emacs_settings_class_init):
19457 New functions.
19458 (gsettings_client, gsettings_obj): New variables.
19459 (GSETTINGS_SCHEMA): New define.
19460 (something_changedCB): Call store_monospaced_changed.
19461 (init_gsettings): New function.
19462 (xsettings_initialize): Call init_gsettings.
19463 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
19464 to NULL.
19465
19466 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
19467 GCONF_CFLAGS/LIBS.
19468
19469 2011-06-29 Martin Rudalics <rudalics@gmx.at>
19470
19471 * window.c (resize_root_window, grow_mini_window)
19472 (shrink_mini_window): Rename Qresize_root_window to
19473 Qwindow_resize_root_window and Qresize_root_window_vertically to
19474 Qwindow_resize_root_window_vertically.
19475
19476 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
19477
19478 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
19479
19480 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
19481
19482 * makefile.w32-in: Redesign dependencies so they reflect more
19483 clearly which files are directly included by each source file,
19484 and not through other includes.
19485
19486 2011-06-27 Martin Rudalics <rudalics@gmx.at>
19487
19488 * buffer.c (Qclone_number): Declare static and DEFSYM it.
19489 (sort_overlays, overlay_strings): When an overlay's clone number
19490 matches the window's clone number process the overlay even if
19491 the overlay's window property doesn't match the current window.
19492
19493 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
19494 (Fwindow_hchild): Rename to Fwindow_left_child.
19495 (Fwindow_next): Rename to Fwindow_next_sibling.
19496 (Fwindow_prev): Rename to Fwindow_prev_sibling.
19497 (resize_window_check): Rename to window_resize_check.
19498 (resize_window_apply): Rename to window_resize_apply.
19499 (Fresize_window_apply): Rename to Fwindow_resize_apply.
19500 (Fdelete_other_windows_internal, resize_frame_windows)
19501 (Fsplit_window_internal, Fdelete_window_internal)
19502 (grow_mini_window, shrink_mini_window)
19503 (Fresize_mini_window_internal): Fix callers accordingly.
19504
19505 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
19506
19507 * emacsgtkfixed.h: State that this is only used with Gtk+3.
19508 (emacs_fixed_set_min_size): Remove.
19509 (emacs_fixed_new): Take frame as argument.
19510
19511 * emacsgtkfixed.c: State that this is only used with Gtk+3.
19512 (_EmacsFixedPrivate): Remove minwidth/height.
19513 Add struct frame *f.
19514 (emacs_fixed_init): Initialize priv->f.
19515 (get_parent_class, emacs_fixed_set_min_size): Remove.
19516 (emacs_fixed_new): Set priv->f to argument.
19517 (emacs_fixed_get_preferred_width)
19518 (emacs_fixed_get_preferred_height): Use min_width/height from
19519 frames size_hint to set minimum and natural (Bug#8919).
19520 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
19521 and use min_width/height from frames size_hint to set
19522 min_width/height (Bug#8919).
19523
19524 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
19525 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
19526 Fix indentation.
19527
19528 2011-06-26 Eli Zaretskii <eliz@gnu.org>
19529
19530 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
19531 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
19532 called at ZV.
19533
19534 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
19535
19536 * process.c (wait_reading_process_output): Bypass select if
19537 waiting for a cell while ignoring keyboard input, and input is
19538 pending. Suggested by Jan Djärv (Bug#8869).
19539
19540 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
19541
19542 Use gnulib's dup2 module instead of rolling our own.
19543 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
19544
19545 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19546
19547 * dispnew.c (scrolling_window): Before scrolling, turn off a
19548 mouse-highlight in the window being scrolled.
19549
19550 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
19551
19552 Move DEFSYM to lisp.h and use everywhere.
19553
19554 * character.h (DEFSYM): Move declaration...
19555 * lisp.h (DEFSYM): ...here.
19556
19557 * gnutls.c:
19558 * minibuf.c:
19559 * w32menu.c:
19560 * w32proc.c:
19561 * w32select.c: Don't include character.h.
19562
19563 * alloc.c (syms_of_alloc):
19564 * buffer.c (syms_of_buffer):
19565 * bytecode.c (syms_of_bytecode):
19566 * callint.c (syms_of_callint):
19567 * casefiddle.c (syms_of_casefiddle):
19568 * casetab.c (init_casetab_once):
19569 * category.c (init_category_once, syms_of_category):
19570 * ccl.c (syms_of_ccl):
19571 * cmds.c (syms_of_cmds):
19572 * composite.c (syms_of_composite):
19573 * dbusbind.c (syms_of_dbusbind):
19574 * dired.c (syms_of_dired):
19575 * dispnew.c (syms_of_display):
19576 * doc.c (syms_of_doc):
19577 * editfns.c (syms_of_editfns):
19578 * emacs.c (syms_of_emacs):
19579 * eval.c (syms_of_eval):
19580 * fileio.c (syms_of_fileio):
19581 * fns.c (syms_of_fns):
19582 * frame.c (syms_of_frame):
19583 * fringe.c (syms_of_fringe):
19584 * insdel.c (syms_of_insdel):
19585 * keymap.c (syms_of_keymap):
19586 * lread.c (init_obarray, syms_of_lread):
19587 * macros.c (syms_of_macros):
19588 * msdos.c (syms_of_msdos):
19589 * print.c (syms_of_print):
19590 * process.c (syms_of_process):
19591 * search.c (syms_of_search):
19592 * sound.c (syms_of_sound):
19593 * syntax.c (init_syntax_once, syms_of_syntax):
19594 * terminal.c (syms_of_terminal):
19595 * textprop.c (syms_of_textprop):
19596 * undo.c (syms_of_undo):
19597 * w32.c (globals_of_w32):
19598 * window.c (syms_of_window):
19599 * xdisp.c (syms_of_xdisp):
19600 * xfaces.c (syms_of_xfaces):
19601 * xfns.c (syms_of_xfns):
19602 * xmenu.c (syms_of_xmenu):
19603 * xsettings.c (syms_of_xsettings):
19604 * xterm.c (syms_of_xterm): Use DEFSYM.
19605
19606 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
19607
19608 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
19609
19610 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
19611
19612 Integer and buffer overflow fixes (Bug#8873).
19613
19614 * print.c (printchar, strout): Check for string overflow.
19615 (PRINTPREPARE, printchar, strout):
19616 Don't set size unless allocation succeeds.
19617
19618 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
19619 for sizes. Check for string overflow more accurately.
19620 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
19621
19622 * macros.c: Integer and buffer overflow fixes.
19623 * keyboard.h (struct keyboard.kbd_macro_bufsize):
19624 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
19625 Use ptrdiff_t, not int, for sizes.
19626 Don't increment bufsize until after realloc succeeds.
19627 Check for size-calculation overflow.
19628 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
19629
19630 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
19631
19632 * lread.c: Integer overflow fixes.
19633 (read_integer): Radix is now EMACS_INT, not int,
19634 to improve quality of diagnostics for out-of-range radices.
19635 Calculate buffer size correctly for out-of-range radices.
19636 (read1): Check for integer overflow in radices, and in
19637 read-circle numbers.
19638 (read_escape): Avoid int overflow.
19639 (Fload, openp, read_buffer_size, read1)
19640 (substitute_object_recurse, read_vector, read_list, map_obarray):
19641 Use ptrdiff_t, not int, for sizes.
19642 (read1): Use EMACS_INT, not int, for sizes.
19643 Check for size overflow.
19644
19645 * image.c (cache_image): Check for size arithmetic overflow.
19646
19647 * lread.c: Integer overflow issues.
19648 (saved_doc_string_size, saved_doc_string_length)
19649 (prev_saved_doc_string_size, prev_saved_doc_string_length):
19650 Now ptrdiff_t, not int.
19651 (read1): Don't assume doc string length fits in int. Check for
19652 out-of-range doc string lengths.
19653 (read_list): Don't assume file position fits in int.
19654 (read_escape): Check for hex character overflow.
19655
19656 2011-06-22 Leo Liu <sdl.web@gmail.com>
19657
19658 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
19659 Move to minibuffer.el.
19660
19661 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
19662
19663 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
19664 The following patches are for when GLYPH_DEBUG && !XASSERT.
19665 * dispextern.h (trace_redisplay_p, dump_glyph_string):
19666 * dispnew.c (flush_stdout):
19667 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
19668 Mark as externally visible.
19669 * dispnew.c (check_window_matrix_pointers): Now static.
19670 * dispnew.c (window_to_frame_vpos):
19671 * xfns.c (unwind_create_frame):
19672 * xterm.c (x_check_font): Remove unused local.
19673 * scroll.c (CHECK_BOUNDS):
19674 * xfaces.c (cache_fache): Rename local to avoid shadowing.
19675 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
19676 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
19677 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
19678 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
19679 Now static.
19680 (debug_method_add): Use va_list and vsprintf rather than relying
19681 on undefined behavior with wrong number of arguments.
19682 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
19683 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
19684 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
19685 since we're not interested in debugging glyphs with old libraries.
19686 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
19687 GCC 4.6.0's static checking.
19688
19689 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
19690
19691 Integer overflow and signedness fixes (Bug#8873).
19692 A few related buffer overrun fixes, too.
19693
19694 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
19695
19696 * dispextern.h (struct face.stipple):
19697 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
19698 (x_bitmap_mask, x_allocate_bitmap_record)
19699 (x_create_bitmap_from_data, x_create_bitmap_from_file)
19700 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
19701 (x_create_bitmap_from_xpm_data):
19702 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
19703 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
19704 (.bitmaps_last):
19705 * xfaces.c (load_pixmap):
19706 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
19707 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
19708 (.bitmaps_last, struct x_output.icon_bitmap):
19709 Use ptrdiff_t, not int, for bitmap indexes.
19710 (x_allocate_bitmap_record): Check for size overflow.
19711 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
19712
19713 Use ptrdiff_t, not int, for overlay counts.
19714 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
19715 * editfns.c (overlays_around, get_pos_property):
19716 * textprop.c (get_char_property_and_overlay):
19717 * xdisp.c (next_overlay_change, note_mouse_highlight):
19718 * xfaces.c (face_at_buffer_position):
19719 * buffer.c (OVERLAY_COUNT_MAX): New macro.
19720 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
19721 (Fnext_overlay_change, Fprevious_overlay_change)
19722 (mouse_face_overlay_overlaps, Foverlays_in):
19723 Use ptrdiff_t, not int, for sizes.
19724 (overlays_at, overlays_in): Check for size-calculation overflow.
19725
19726 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
19727
19728 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
19729 (x_session_initialize): Do not assume string length fits in int.
19730
19731 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
19732 This is unlikely, but can occur if DPI is outlandish.
19733
19734 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
19735 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
19736
19737 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
19738 * xrdb.c (magic_file_p, search_magic_path):
19739 Omit last arg SUFFIX; it was always 0. All callers changed.
19740 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
19741
19742 * xfont.c (xfont_match): Avoid need for strlen.
19743
19744 * xfns.c: Don't assume strlen fits in int.
19745 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
19746
19747 * xdisp.c (message_log_check_duplicate): Return intmax_t,
19748 not unsigned long, as we prefer signed integers. All callers changed.
19749 Detect integer overflow in repeat count.
19750 (message_dolog): Don't assume print length fits in 39 bytes.
19751 (display_mode_element): Don't assume strlen fits in int.
19752
19753 * termcap.c: Don't assume sizes fit in int and never overflow.
19754 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
19755 (gobble_line): Check for size-calculation overflow.
19756
19757 * minibuf.c (Fread_buffer):
19758 * lread.c (intern, intern_c_string):
19759 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
19760 Don't assume string length fits in int.
19761
19762 * keyboard.c (parse_tool_bar_item):
19763 * gtkutil.c (style_changed_cb): Avoid need for strlen.
19764
19765 * font.c: Don't assume string length fits in int.
19766 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
19767 Use ptrdiff_t, not int.
19768 (font_intern_prop): Don't assume string length fits in int.
19769 Don't assume integer property fits in fixnum.
19770 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
19771
19772 * filelock.c: Fix some buffer overrun and integer overflow issues.
19773 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
19774 Reformulate so as not to need the command string.
19775 Invoke gzip -cd rather than gunzip, as it's more portable.
19776 (lock_info_type, lock_file_1, lock_file):
19777 Don't assume pid_t and time_t fit in unsigned long.
19778 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
19779 (current_lock_owner): Prefer signed type for sizes.
19780 Use memcpy, not strncpy, where memcpy is what is really wanted.
19781 Don't assume (via atoi) that time_t and pid_t fit in int.
19782 Check for time_t and/or pid_t out of range, e.g., via a network share.
19783 Don't alloca where an auto var works fine.
19784
19785 * fileio.c: Fix some integer overflow issues.
19786 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
19787 Don't assume string length fits in int.
19788 (directory_file_name): Don't assume string length fits in long.
19789 (make_temp_name): Don't assume pid fits in int, or that its print
19790 length is less than 20.
19791
19792 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
19793
19794 * coding.c (make_subsidiaries): Don't assume string length fits in int.
19795
19796 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
19797
19798 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
19799 We prefer signed integers, even for size calculations.
19800
19801 * emacs.c: Don't assume string length fits in 'int'.
19802 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
19803 (main): Don't invoke strlen when not needed.
19804
19805 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
19806 (XD_DEBUG_MESSAGE): Don't waste a byte.
19807
19808 * callproc.c (getenv_internal_1, getenv_internal)
19809 (Fgetenv_internal):
19810 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
19811
19812 * lread.c (invalid_syntax): Omit length argument.
19813 All uses changed. This doesn't fix a bug, but it simplifies the
19814 code away from its former Hollerith-constant appearance, and it's
19815 one less 'int' to worry about when looking at integer-overflow issues.
19816 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
19817
19818 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
19819 This didn't break anything, but it didn't help either.
19820 It's confusing to put a bogus integer in a place where the actual
19821 value does not matter.
19822 (LIST_END_P): Remove unused macro and its bogus comment.
19823 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
19824
19825 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
19826 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
19827 implementation.
19828 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
19829 We prefer signed types, and the value cannot exceed the EMACS_INT
19830 range anyway (because otherwise the length would not be representable).
19831 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
19832 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
19833 This avoids a GCC warning when WIDE_EMACS_INT.
19834
19835 * indent.c (sane_tab_width): New function.
19836 (current_column, scan_for_column, Findent_to, position_indentation)
19837 (compute_motion): Use it. This is just for clarity.
19838 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
19839
19840 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
19841
19842 * lisp.h (lint_assume): New macro.
19843 * composite.c (composition_gstring_put_cache):
19844 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
19845
19846 * editfns.c, insdel.c:
19847 Omit unnecessary forward decls, to simplify future changes.
19848
19849 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
19850
19851 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
19852
19853 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
19854 Use much-faster test for byte-length change.
19855 Don't assume string byte-length fits in 'int'.
19856 Check that character arg fits in 'int'.
19857 (mapcar1): Declare byte as byte, for clarity.
19858
19859 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
19860
19861 * fns.c (concat): Catch string overflow earlier.
19862 Do not rely on integer wraparound.
19863
19864 * dispextern.h (struct it.overlay_strings_charpos)
19865 (struct it.selective): Now EMACS_INT, not int.
19866 * xdisp.c (forward_to_next_line_start)
19867 (back_to_previous_visible_line_start)
19868 (reseat_at_next_visible_line_start, next_element_from_buffer):
19869 Don't arbitrarily truncate the value of 'selective' to int.
19870
19871 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
19872
19873 * composite.c: Don't truncate sizes to 'int'.
19874 (composition_gstring_p, composition_reseat_it)
19875 (composition_adjust_point): Use EMACS_INT, not int.
19876 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
19877 not EMACS_UINT, for indexes.
19878
19879 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
19880
19881 * buffer.c: Include <verify.h>.
19882 (struct sortvec.priority, struct sortstr.priority):
19883 Now EMACS_INT, not int.
19884 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
19885 (struct sortstr.size, record_overlay_string)
19886 (struct sortstrlist.size, struct sortlist.used):
19887 Don't truncate size to int.
19888 (record_overlay_string): Check for size-calculation overflow.
19889 (init_buffer_once): Check at compile-time, not run-time.
19890
19891 2011-06-22 Jim Meyering <meyering@redhat.com>
19892
19893 Don't leak an XBM-image-sized buffer
19894 * image.c (xbm_load): Free the image buffer after using it.
19895
19896 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
19897
19898 Port to Sun C.
19899 * composite.c (find_automatic_composition): Omit needless 'return 0;'
19900 that Sun C diagnosed.
19901 * fns.c (secure_hash): Fix pointer signedness issue.
19902 * intervals.c (static_offset_intervals): New function.
19903 (offset_intervals): Use it.
19904
19905 2011-06-21 Leo Liu <sdl.web@gmail.com>
19906
19907 * deps.mk (fns.o):
19908 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
19909 sha512.h.
19910
19911 * fns.c (secure_hash): Rename from crypto_hash_function and change
19912 the first arg to accept symbols.
19913 (Fsecure_hash): New primitive.
19914 (syms_of_fns): New symbols.
19915
19916 2011-06-20 Deniz Dogan <deniz@dogan.se>
19917
19918 * process.c (Fset_process_buffer): Clarify return value in
19919 docstring.
19920
19921 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
19922
19923 * dispnew.c (add_window_display_history): Use BVAR.
19924
19925 * xdisp.c (debug_method_add): Use BVAR.
19926 (check_window_end, dump_glyph_matrix, dump_glyph)
19927 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
19928
19929 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
19930 Likewise.
19931
19932 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
19933 check till after the cache is created in init_frame_faces.
19934
19935 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
19936
19937 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
19938
19939 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
19940
19941 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
19942 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
19943 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
19944
19945 Improve buffer-overflow checking (Bug#8873).
19946 * fileio.c (Finsert_file_contents):
19947 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
19948 Remove the old (too-loose) buffer overflow checks.
19949 They weren't needed, since make_gap checks for buffer overflow.
19950 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
19951 The old code merely checked for Emacs fixnum overflow, and relied
19952 on undefined (wraparound) behavior. The new code avoids undefined
19953 behavior, and also checks for ptrdiff_t and/or size_t overflow.
19954
19955 * editfns.c (Finsert_char): Don't dump core with very negative counts.
19956 Tune. Don't use wider integers than needed. Don't use alloca.
19957 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
19958
19959 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
19960
19961 * insdel.c, lisp.h (buffer_overflow): New function.
19962 (insert_from_buffer_1, replace_range, replace_range_2):
19963 * insdel.c (make_gap_larger):
19964 * editfns.c (Finsert_char):
19965 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
19966
19967 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
19968
19969 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
19970
19971 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
19972
19973 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
19974 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
19975
19976 * fileio.c: Don't assume EMACS_INT fits in off_t.
19977 (emacs_lseek): New static function.
19978 (Finsert_file_contents, Fwrite_region): Use it.
19979 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
19980
19981 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
19982
19983 * fns.c: Don't overflow int when computing a list length.
19984 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
19985 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
19986 truncation on 64-bit hosts. Check for QUIT every
19987 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
19988 faster and is responsive enough.
19989 (Flength): Report an error instead of overflowing an integer.
19990 (Fsafe_length): Return a float if the value is not representable
19991 as a fixnum. This shouldn't happen except in contrived situations.
19992 (Fnthcdr, Fsort): Don't assume list length fits in int.
19993 (Fcopy_sequence): Don't assume vector length fits in int.
19994
19995 * alloc.c: Check that resized vectors' lengths fit in fixnums.
19996 (header_size, word_size): New constants.
19997 (allocate_vectorlike): Don't check size overflow here.
19998 (allocate_vector): Check it here instead, since this is the only
19999 caller of allocate_vectorlike that could cause overflow.
20000 Check that the new vector's length is representable as a fixnum.
20001
20002 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
20003 The previous code was bogus. For example, next_almost_prime (32)
20004 returned 39, which is undesirable as it is a multiple of 3; and
20005 next_almost_prime (24) returned 25, which is a multiple of 5 so
20006 why was the code bothering to check for multiples of 7?
20007
20008 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
20009
20010 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
20011
20012 Variadic C functions now count arguments with ptrdiff_t.
20013 This partly undoes my 2011-03-30 change, which replaced int with size_t.
20014 Back then I didn't know that the Emacs coding style prefers signed int.
20015 Also, in the meantime I found a few more instances where arguments
20016 were being counted with int, which may truncate counts on 64-bit
20017 machines, or EMACS_INT, which may be unnecessarily wide.
20018 * lisp.h (struct Lisp_Subr.function.aMANY)
20019 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
20020 Arg counts are now ptrdiff_t, not size_t.
20021 All variadic functions and their callers changed accordingly.
20022 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
20023 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
20024 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
20025 * callint.c (Fcall_interactively): Check arg count for overflow,
20026 to avoid potential buffer overrun. Use signed char, not 'int',
20027 for 'varies' array, so that we needn't bother to check its size
20028 calculation for overflow.
20029 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
20030 * eval.c (apply_lambda):
20031 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
20032 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
20033 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
20034
20035 * callint.c (Fcall_interactively): Don't use index var as event count.
20036
20037 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
20038 * mem-limits.h (SIZE): Remove; no longer used.
20039
20040 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
20041
20042 Remove unnecessary casts.
20043 * xterm.c (x_term_init):
20044 * xfns.c (x_set_border_pixel):
20045 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
20046 These aren't needed now that we assume ANSI C.
20047
20048 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
20049 It's more likely to cause problems (due to unsigned overflow)
20050 than to cure them.
20051
20052 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
20053
20054 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
20055
20056 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
20057
20058 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
20059
20060 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
20061
20062 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
20063
20064 GLYPH_CODE_FACE returns EMACS_INT, not int.
20065 * dispextern.h (merge_faces):
20066 * xfaces.c (merge_faces):
20067 * xdisp.c (get_next_display_element, next_element_from_display_vector):
20068 Don't assume EMACS_INT fits in int.
20069
20070 * character.h (CHAR_VALID_P): Remove unused parameter.
20071 * fontset.c, lisp.h, xdisp.c: All uses changed.
20072
20073 * editfns.c (Ftranslate_region_internal): Omit redundant test.
20074
20075 * fns.c (concat): Minor tuning based on overflow analysis.
20076 This doesn't fix any bugs. Use int to hold character, instead
20077 of constantly refetching from Emacs object. Use XFASTINT, not
20078 XINT, for value known to be a character. Don't bother comparing
20079 a single byte to 0400, as it's always less.
20080
20081 * floatfns.c (Fexpt):
20082 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
20083
20084 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
20085 for characters.
20086
20087 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
20088
20089 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
20090 Without this fix, on a 64-bit host (aset S 0 4294967386) would
20091 incorrectly succeed when S was a string, because 4294967386 was
20092 truncated before it was used.
20093
20094 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
20095 Otherwise, an out-of-range integer could cause undefined behavior
20096 on a 64-bit host.
20097
20098 * composite.c: Use int, not EMACS_INT, for characters.
20099 (fill_gstring_body, composition_compute_stop_pos): Use int, not
20100 EMACS_INT, for values that are known to be in character range.
20101 This doesn't fix any bugs but is the usual style inside Emacs and
20102 may generate better code on 32-bit machines.
20103
20104 Make sure a 64-bit char is never passed to ENCODE_CHAR.
20105 This is for reasons similar to the recent CHAR_STRING fix.
20106 * charset.c (Fencode_char): Check that character arg is actually
20107 a character. Pass an int to ENCODE_CHAR.
20108 * charset.h (ENCODE_CHAR): Verify that the character argument is no
20109 wider than 'int', as a compile-time check to prevent future regressions
20110 in this area.
20111
20112 * character.c (char_string): Remove unnecessary casts.
20113
20114 Make sure a 64-bit char is never passed to CHAR_STRING.
20115 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
20116 by silently ignoring the top 32 bits, allowing some values
20117 that were far too large to be valid characters.
20118 * character.h: Include <verify.h>.
20119 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
20120 arguments are no wider than unsigned, as a compile-time check
20121 to prevent future regressions in this area.
20122 * data.c (Faset):
20123 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
20124 (Fsubst_char_in_region):
20125 * fns.c (concat):
20126 * xdisp.c (decode_mode_spec_coding):
20127 Adjust to CHAR_STRING's new requirement.
20128 * editfns.c (Finsert_char, Fsubst_char_in_region):
20129 * fns.c (concat): Check that character args are actually
20130 characters. Without this test, these functions did the wrong
20131 thing with wildly out-of-range values on 64-bit hosts.
20132
20133 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
20134 These casts should not be needed on 32-bit hosts, either.
20135 * keyboard.c (read_char):
20136 * lread.c (Fload): Remove casts to unsigned.
20137
20138 * lisp.h (UNSIGNED_CMP): New macro.
20139 This fixes comparison bugs on 64-bit hosts.
20140 (ASCII_CHAR_P): Use it.
20141 * casefiddle.c (casify_object):
20142 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
20143 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
20144 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
20145 * dispextern.h (FACE_FROM_ID):
20146 * keyboard.c (read_char): Use UNSIGNED_CMP.
20147
20148 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
20149 not to EMACS_INT, to avoid GCC warning.
20150
20151 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
20152
20153 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
20154 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
20155 isn't needed on 32-bit machines.
20156
20157 * buffer.c (Fgenerate_new_buffer_name):
20158 Use EMACS_INT for count, not int.
20159 (advance_to_char_boundary): Return EMACS_INT, not int.
20160
20161 * data.c (Qcompiled_function): Now static.
20162
20163 * window.c (window_body_lines): Now static.
20164
20165 * image.c (gif_load): Rename local to avoid shadowing.
20166
20167 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
20168 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
20169 * alloc.c (make_save_value): Integer argument is now of type
20170 ptrdiff_t, not int.
20171 (mark_object): Use ptrdiff_t, not int.
20172 * lisp.h (pD): New macro.
20173 * print.c (print_object): Use it.
20174
20175 * alloc.c: Use EMACS_INT, not int, to count objects.
20176 (total_conses, total_markers, total_symbols, total_vector_size)
20177 (total_free_conses, total_free_markers, total_free_symbols)
20178 (total_free_floats, total_floats, total_free_intervals)
20179 (total_intervals, total_strings, total_free_strings):
20180 Now EMACS_INT, not int. All uses changed.
20181 (Fgarbage_collect): Compute overall total using a double, so that
20182 integer overflow is less likely to be a problem. Check for overflow
20183 when converting back to an integer.
20184 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
20185 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
20186 These were 'int' variables that could overflow on 64-bit hosts;
20187 they were never used, so remove them instead of repairing them.
20188 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
20189 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
20190 Previously, this ceilinged at INT_MAX, but that doesn't work on
20191 64-bit machines.
20192 (allocate_pseudovector): Don't use EMACS_INT when int would do.
20193
20194 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
20195 (allocate_vectorlike): Check for ptrdiff_t overflow.
20196 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
20197 when a (possibly-narrower) signed value would do just as well.
20198 We prefer using signed arithmetic, to avoid comparison confusion.
20199
20200 * alloc.c: Catch some string size overflows that we were missing.
20201 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
20202 for convenience in STRING_BYTES_MAX.
20203 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
20204 The definition here is exact; the one in lisp.h was approximate.
20205 (allocate_string_data): Check for string overflow. This catches
20206 some instances we weren't catching before. Also, it catches
20207 size_t overflow on (unusual) hosts where SIZE_MAX <= min
20208 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
20209 and ptrdiff_t and EMACS_INT are both 64 bits.
20210
20211 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
20212 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
20213 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
20214
20215 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
20216
20217 * alloc.c (Fmake_string): Check for out-of-range init.
20218
20219 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
20220
20221 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
20222
20223 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
20224
20225 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
20226 xg_get_default_scrollbar_width.
20227
20228 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
20229 (int_gtk_range_get_value): Move to the scroll bar part of the file.
20230 (style_changed_cb): Call update_theme_scrollbar_width and call
20231 x_set_scroll_bar_default_width and xg_frame_set_char_size for
20232 all frames (Bug#8505).
20233 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
20234 Call gtk_window_set_resizable if HAVE_GTK3.
20235 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
20236 and height if HAVE_GTK3 (Bug#8505).
20237 (scroll_bar_width_for_theme): New variable.
20238 (update_theme_scrollbar_width): New function.
20239 (xg_get_default_scrollbar_width): Move code to
20240 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
20241 (xg_initialize): Call update_theme_scrollbar_width.
20242
20243 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
20244
20245 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
20246
20247 2011-06-12 Martin Rudalics <rudalics@gmx.at>
20248
20249 * frame.c (make_frame): Call other_buffer_safely instead of
20250 other_buffer.
20251
20252 * window.c (temp_output_buffer_show): Call display_buffer with
20253 second argument Vtemp_buffer_show_specifiers and reset latter
20254 immediately after the call.
20255 (Vtemp_buffer_show_specifiers): New variable.
20256 (auto_window_vscroll_p, next_screen_context_lines)
20257 (Vscroll_preserve_screen_position): Remove leading asterisks from
20258 doc-strings.
20259
20260 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
20261
20262 Fix minor problems found by GCC 4.6.0 static checking.
20263 * buffer.c (Qclone_number): Remove for now, as it's unused.
20264 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
20265 (record_buffer): Remove unused local.
20266 * frame.c (other_visible_frames, frame_buffer_list): Now static.
20267 (set_frame_buffer_list): Remove; unused.
20268 * frame.h (other_visible_frames): Remove decl.
20269 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
20270 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
20271 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
20272 if HAVE_GPM.
20273 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
20274 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
20275 Define only if HAVE_GPM.
20276 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
20277 (update_hints_inhibit): Remove; never set. All uses removed.
20278 * widgetprv.h (emacsFrameClassRec): Remove decl.
20279 * window.c (delete_deletable_window): Now returns void, since it
20280 wasn't returning anything.
20281 (compare_window_configurations): Remove unused locals.
20282 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
20283 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
20284 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
20285 the same widths as pointers. This follows up on the 2011-05-06 patch.
20286 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
20287 * xterm.h: Likewise.
20288 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
20289
20290 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
20291
20292 * makefile.w32-in: Update dependencies.
20293 (LISP_H): Add lib/intprops.h.
20294
20295 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
20296
20297 * image.c (gif_load): Add animation frame delay to the metadata.
20298 (syms_of_image): Use DEFSYM. New symbol `delay'.
20299
20300 2011-06-11 Martin Rudalics <rudalics@gmx.at>
20301
20302 * window.c (delete_deletable_window): Re-add.
20303 (Fset_window_configuration): Rewrite to handle dead buffers and
20304 consequently deletable windows.
20305 (window_tree, Fwindow_tree): Remove. Supply functionality in
20306 window.el.
20307 (compare_window_configurations): Simplify code.
20308
20309 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
20310
20311 * image.c (imagemagick_load_image): Fix type mismatch.
20312 (Fimagemagick_types): Likewise.
20313
20314 * window.h (replace_buffer_in_windows): Declare.
20315
20316 2011-06-11 Martin Rudalics <rudalics@gmx.at>
20317
20318 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
20319 Qclone_number. Remove external declaration of Qdelete_window.
20320 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
20321 code.
20322 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
20323 Run Qbuffer_list_update_hook if allowed.
20324 (Fother_buffer): Rewrite doc-string. Major rewrite for new
20325 buffer list implementation.
20326 (other_buffer_safely): New function.
20327 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
20328 calls to replace_buffer_in_windows and
20329 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
20330 if allowed.
20331 (record_buffer): Inhibit quitting and rewrite using quittable
20332 functions. Run Qbuffer_list_update_hook if allowed.
20333 (Frecord_buffer, Funrecord_buffer): New functions.
20334 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
20335 Move switch-to-buffer to window.el.
20336 (bury-buffer): Move to window.el.
20337 (Vbuffer_list_update_hook): New variable.
20338
20339 * lisp.h (other_buffer_safely): Add prototype in buffer.c
20340 section.
20341
20342 * window.h (resize_frame_windows): Move up in code.
20343 (Fwindow_frame): Remove EXFUN.
20344 (replace_buffer_in_all_windows): Remove prototype.
20345 (replace_buffer_in_windows_safely): Add prototype.
20346
20347 * window.c: Declare Qdelete_window static again. Move down
20348 declaration of select_count.
20349 (Fnext_window, Fprevious_window): Rewrite doc-strings.
20350 (Fother_window): Move to window.el.
20351 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
20352 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
20353 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
20354 window.el.
20355 (replace_buffer_in_windows): Implement by calling
20356 Qreplace_buffer_in_windows.
20357 (replace_buffer_in_all_windows): Remove with some functionality
20358 moved into replace_buffer_in_windows_safely.
20359 (replace_buffer_in_windows_safely): New function.
20360 (select_window_norecord, select_frame_norecord): Move in front
20361 of run_window_configuration_change_hook. Remove now obsolete
20362 declarations.
20363 (Fset_window_buffer): Rewrite doc-string.
20364 Call Qrecord_window_buffer.
20365 (keys_of_window): Move binding for other-window to window.el.
20366
20367 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
20368
20369 * dispextern.h (struct image): Replace data member, whose int_val
20370 and ptr_val fields were not used by anything, with a single
20371 lisp_val object.
20372
20373 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
20374 (gif_clear_image, gif_load, imagemagick_load_image)
20375 (gs_clear_image, gs_load): Callers changed.
20376
20377 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
20378
20379 * buffer.h: Include <time.h>, for time_t.
20380 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
20381
20382 Fix minor problems found by static checking.
20383
20384 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
20385
20386 Make identifiers static if they are not used in other modules.
20387 * data.c (Qcompiled_function, Qframe, Qvector):
20388 * image.c (QimageMagick, Qsvg):
20389 * minibuf.c (Qmetadata):
20390 * window.c (resize_window_check, resize_root_window): Now static.
20391 * window.h (resize_window_check, resize_root_window): Remove decls.
20392
20393 * window.c (window_deletion_count, delete_deletable_window):
20394 Remove; unused.
20395 (window_body_lines): Now static.
20396 (Fdelete_other_windows_internal): Mark vars as initialized.
20397 Make sure 'resize_failed' is initialized.
20398 (run_window_configuration_change_hook): Rename local to avoid shadowing.
20399 (resize_window_apply): Remove unused local.
20400 * window.h (delete_deletable_window): Remove decl.
20401
20402 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
20403 (imagemagick_load_image): Fix pointer signedness problem by changing
20404 last arg from unsigned char * to char *. All uses changed.
20405 Also, fix a local for similar reasons.
20406 Remove unused locals. Remove locals to avoid shadowing.
20407 (fn_rsvg_handle_free): Remove; unused.
20408 (svg_load, svg_load_image): Fix pointer signedness problem.
20409 (imagemagick_load_image): Don't use garbage pointer image_wand.
20410
20411 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
20412
20413 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
20414
20415 * image.c (gif_load): Fix omitted cast error introduced by
20416 2011-06-06 change.
20417
20418 2011-06-10 Martin Rudalics <rudalics@gmx.at>
20419
20420 * window.h (resize_proportionally, orig_total_lines)
20421 (orig_top_line): Remove from window structure.
20422 (set_window_height, set_window_width, change_window_heights)
20423 (Fdelete_window): Remove prototypes.
20424 (resize_frame_windows): Remove duplicate declaration.
20425
20426 2011-06-10 Eli Zaretskii <eliz@gnu.org>
20427
20428 * window.h (resize_frame_windows, resize_window_check)
20429 (delete_deletable_window, resize_root_window)
20430 (resize_frame_windows): Declare prototypes.
20431
20432 * window.c (resize_window_apply): Make definition be "static" to
20433 match the prototype.
20434
20435 2011-06-10 Martin Rudalics <rudalics@gmx.at>
20436
20437 * window.c: Remove declarations of Qwindow_size_fixed,
20438 window_min_size_1, window_min_size_2, window_min_size,
20439 size_window, window_fixed_size_p, enlarge_window, delete_window.
20440 Remove static from declaration of Qdelete_window, it's
20441 temporarily needed by Fbury_buffer.
20442 (replace_window): Don't assign orig_top_line and
20443 orig_total_lines.
20444 (Fdelete_window, delete_window): Remove. Window deletion is
20445 handled by window.el.
20446 (window_loop): Remove DELETE_OTHER_WINDOWS case.
20447 Replace Fdelete_window calls with calls to Qdelete_window.
20448 (Fdelete_other_windows): Remove. Deleting other windows is
20449 handled by window.el.
20450 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
20451 handled in window.el.
20452 (window_min_size_2, window_min_size_1, window_min_size): Remove.
20453 Window minimum sizes are handled in window.el.
20454 (shrink_windows, size_window, set_window_height)
20455 (set_window_width, change_window_heights, window_height)
20456 (window_width, CURBEG, CURSIZE, enlarge_window)
20457 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
20458 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
20459 handled in window.el.
20460 (make_dummy_parent): Rename to make_parent_window and give it a
20461 second argument horflag.
20462 (make_window): Don't set resize_proportionally any more.
20463 (Fsplit_window): Remove. Windows are split in window.el.
20464 (save_restore_action, save_restore_orig_size)
20465 (shrink_window_lowest_first, save_restore_orig_size): Remove.
20466 Resize mini windows in window.el.
20467 (grow_mini_window, shrink_mini_window): Implement by calling
20468 Qresize_root_window_vertically, resize_window_check and
20469 resize_window_apply.
20470 (saved_window, Fset_window_configuration, save_window_save):
20471 Do not handle orig_top_line, orig_total_lines, and
20472 resize_proportionally.
20473 (window_min_height, window_min_width): Move to window.el.
20474 (keys_of_window): Move bindings for delete-other-windows,
20475 split-window, delete-window and enlarge-window to window.el.
20476
20477 * buffer.c: Temporarily extern Qdelete_window.
20478 (Fbury_buffer): Temporarily call Qdelete_window instead of
20479 Fdelete_window (Fbury_buffer will move to window.el soon).
20480
20481 * frame.c (set_menu_bar_lines_1): Remove code handling
20482 orig_top_line and orig_total_lines.
20483
20484 * dispnew.c (adjust_frame_glyphs_initially): Don't use
20485 set_window_height but set heights directly.
20486 (change_frame_size_1): Use resize_frame_windows.
20487
20488 * xdisp.c (init_xdisp): Don't use set_window_height but set
20489 heights directly.
20490
20491 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
20492 Use resize_frame_windows instead of change_window_heights and run
20493 run_window_configuration_change_hook.
20494
20495 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
20496 instead of change_window_heights and run
20497 run_window_configuration_change_hook.
20498
20499 2011-06-09 Martin Rudalics <rudalics@gmx.at>
20500
20501 * window.c (replace_window): Rename second argument REPLACEMENT to
20502 NEW. New third argument SETFLAG. Rewrite.
20503 (delete_window, make_dummy_parent): Call replace_window with
20504 third argument 1.
20505 (window_list_1): Move down in code.
20506 (run_window_configuration_change_hook): Move set_buffer part
20507 before select_frame_norecord part in order to unwind correctly.
20508 Rename count1 to count.
20509 (recombine_windows, delete_deletable_window, resize_root_window)
20510 (Fdelete_other_windows_internal)
20511 (Frun_window_configuration_change_hook, make_parent_window)
20512 (resize_window_check, resize_window_apply, Fresize_window_apply)
20513 (resize_frame_windows, Fsplit_window_internal)
20514 (Fdelete_window_internal, Fresize_mini_window_internal):
20515 New functions.
20516 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
20517
20518 2011-06-08 Martin Rudalics <rudalics@gmx.at>
20519
20520 * window.h (window): Add some new members to window structure -
20521 normal_lines, normal_cols, new_total, new_normal, clone_number,
20522 splits, nest, prev_buffers, next_buffers.
20523 (WINDOW_TOTAL_SIZE): Move here from window.c.
20524 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
20525
20526 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
20527 Remove.
20528 (make_dummy_parent): Set new members of windows structure.
20529 (make_window): Move down in code. Handle new members of window
20530 structure.
20531 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
20532 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
20533 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
20534 (Fset_window_prev_buffers, Fwindow_next_buffers)
20535 (Fset_window_next_buffers, Fset_window_clone_number):
20536 New functions.
20537 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
20538 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
20539 Doc-string fixes.
20540 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
20541 Argument WINDOW can be now internal window too.
20542 (Fwindow_use_time): Move up in code.
20543 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
20544 Rewrite doc-string.
20545 (Fset_window_configuration, saved_window)
20546 (Fcurrent_window_configuration, save_window_save): Handle new
20547 members of window structure.
20548 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
20549 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
20550 (syms_of_window): New Lisp objects Qrecord_window_buffer,
20551 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
20552 Qget_mru_window, Qresize_root_window,
20553 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
20554 Qauto_buffer_name; staticpro them.
20555
20556 2011-06-07 Martin Rudalics <rudalics@gmx.at>
20557
20558 * window.c (Fwindow_total_size, Fwindow_left_column)
20559 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
20560 (Fwindow_list_1): New functions.
20561 (window_box_text_cols): Replace with window_body_cols.
20562 (Fwindow_width, Fscroll_left, Fscroll_right):
20563 Use window_body_cols instead of window_box_text_cols.
20564 (delete_window, Fset_window_configuration):
20565 Call delete_all_subwindows with window as argument.
20566 (delete_all_subwindows): Take a window as argument and not a
20567 structure. Rewrite.
20568 (window_loop): Remove handling of GET_LRU_WINDOW and
20569 GET_LARGEST_WINDOW.
20570 (Fget_lru_window, Fget_largest_window): Move to window.el.
20571
20572 * window.h: Extern window_body_cols instead of
20573 window_box_text_cols. delete_all_subwindows now takes a
20574 Lisp_Object as argument.
20575
20576 * indent.c (compute_motion, Fcompute_motion):
20577 Use window_body_cols instead of window_box_text_cols.
20578
20579 * frame.c (delete_frame): Call delete_all_subwindows with root
20580 window as argument.
20581
20582 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
20583
20584 * fns.c (Fputhash): Document return value.
20585
20586 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
20587
20588 * image.c (gif_load): Implement gif89a spec "no disposal" method.
20589
20590 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
20591
20592 Cons<->int and similar integer overflow fixes (Bug#8794).
20593
20594 Check for overflow when converting integer to cons and back.
20595 * charset.c (Fdefine_charset_internal, Fdecode_char):
20596 Use cons_to_unsigned to catch overflow.
20597 (Fencode_char): Use INTEGER_TO_CONS.
20598 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
20599 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
20600 * data.c (long_to_cons, cons_to_long): Remove.
20601 (cons_to_unsigned, cons_to_signed): New functions.
20602 These signal an error for invalid or out-of-range values.
20603 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
20604 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
20605 * font.c (Ffont_variation_glyphs):
20606 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
20607 * lisp.h: Include <intprops.h>.
20608 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
20609 (cons_to_signed, cons_to_unsigned): New decls.
20610 (long_to_cons, cons_to_long): Remove decls.
20611 * undo.c (record_first_change): Use INTEGER_TO_CONS.
20612 (Fprimitive_undo): Use CONS_TO_INTEGER.
20613 * xfns.c (Fx_window_property): Likewise.
20614 * xselect.c: Include <limits.h>.
20615 (x_own_selection, selection_data_to_lisp_data):
20616 Use INTEGER_TO_CONS.
20617 (x_handle_selection_request, x_handle_selection_clear)
20618 (x_get_foreign_selection, Fx_disown_selection_internal)
20619 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
20620 (lisp_data_to_selection_data): Use cons_to_unsigned.
20621 (x_fill_property_data): Use cons_to_signed.
20622 Report values out of range.
20623
20624 Check for buffer and string overflow more precisely.
20625 * buffer.h (BUF_BYTES_MAX): New macro.
20626 * lisp.h (STRING_BYTES_MAX): New macro.
20627 * alloc.c (Fmake_string):
20628 * character.c (string_escape_byte8):
20629 * coding.c (coding_alloc_by_realloc):
20630 * doprnt.c (doprnt):
20631 * editfns.c (Fformat):
20632 * eval.c (verror):
20633 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
20634 since they may not be the same number.
20635 * editfns.c (Finsert_char):
20636 * fileio.c (Finsert_file_contents):
20637 Likewise for BUF_BYTES_MAX.
20638
20639 * image.c: Use ptrdiff_t, not int, for sizes.
20640 (slurp_file): Switch from int to ptrdiff_t.
20641 All uses changed.
20642 (slurp_file): Check that file size fits in both size_t (for
20643 malloc) and ptrdiff_t (for sanity and safety).
20644
20645 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
20646 if b->modtime has its maximal value.
20647
20648 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
20649
20650 Don't assume time_t can fit into int.
20651 * buffer.h (struct buffer.modtime): Now time_t, not int.
20652 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
20653 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
20654
20655 Minor fixes for signed vs unsigned integers.
20656 * character.h (MAYBE_UNIFY_CHAR):
20657 * charset.c (maybe_unify_char):
20658 * keyboard.c (read_char, reorder_modifiers):
20659 XINT -> XFASTINT, since the integer must be nonnegative.
20660 * ftfont.c (ftfont_spec_pattern):
20661 * keymap.c (access_keymap, silly_event_symbol_error):
20662 XUINT -> XFASTINT, since the integer must be nonnegative.
20663 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
20664 since it makes no difference and we prefer signed.
20665 * keyboard.c (record_char): Use XUINT when all the neighbors do.
20666 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
20667 nonnegative.
20668
20669 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
20670
20671 * window.h (Fwindow_frame): Declare.
20672
20673 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
20674
20675 * alloc.c: Simplify handling of large-request failures (Bug#8800).
20676 (SPARE_MEMORY): Always define.
20677 (LARGE_REQUEST): Remove.
20678 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
20679
20680 2011-06-06 Martin Rudalics <rudalics@gmx.at>
20681
20682 * lisp.h: Move EXFUNS for Fframe_root_window,
20683 Fframe_first_window and Fset_frame_selected_window to window.h.
20684
20685 * window.h: Move EXFUNS for Fframe_root_window,
20686 Fframe_first_window and Fset_frame_selected_window here from
20687 lisp.h.
20688
20689 * frame.c (Fwindow_frame, Fframe_first_window)
20690 (Fframe_root_window, Fframe_selected_window)
20691 (Fset_frame_selected_window): Move to window.c.
20692 (Factive_minibuffer_window): Move to minibuf.c.
20693 (Fother_visible_frames_p): New function.
20694
20695 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
20696
20697 * window.c (decode_window, decode_any_window): Move up in code.
20698 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
20699 (inhibit_frame_unsplittable): Remove unused variable.
20700 (Fwindow_buffer): Move up and rewrite doc-string.
20701 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
20702 (Fwindow_prev): New functions.
20703 (Fwindow_frame): Move here from frame.c. Accept any window as
20704 argument.
20705 (Fframe_root_window, Fframe_first_window)
20706 (Fframe_selected_window): Move here from frame.c. Accept frame
20707 or arbitrary window as argument. Update doc-strings.
20708 (Fminibuffer_window): Move up in code.
20709 (Fwindow_minibuffer_p): Move up in code and simplify.
20710 (Fset_frame_selected_window): Move here from frame.c.
20711 Marginal rewrite.
20712 (Fselected_window, select_window, Fselect_window): Move up in
20713 code. Minor doc-string fixes.
20714
20715 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
20716
20717 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
20718 Do not assume that spare memory exists; that assumption is valid
20719 only if SYSTEM_MALLOC.
20720 (LARGE_REQUEST): New macro, so that the issue of large requests
20721 is separated from the issue of spare memory.
20722
20723 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
20724
20725 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
20726 format. (Bug#8806)
20727
20728 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
20729
20730 * xfns.c (x_set_scroll_bar_default_width): Move declarations
20731 before statements.
20732
20733 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
20734
20735 * gtkutil.c (xg_get_default_scrollbar_width): New function.
20736
20737 * gtkutil.h: Declare xg_get_default_scrollbar_width.
20738
20739 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
20740 min width by calling x_set_scroll_bar_default_width (Bug#8505).
20741
20742 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
20743
20744 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
20745
20746 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
20747
20748 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
20749 (x_clipboard_manager_save): Add return value.
20750 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
20751 New error handlers.
20752 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
20753 Obey Vx_select_enable_clipboard_manager. Catch errors in
20754 x_clipboard_manager_save (Bug#8779).
20755 (Vx_select_enable_clipboard_manager): New variable.
20756 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
20757
20758 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
20759
20760 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
20761
20762 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20763
20764 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
20765 in the current matrix if keep_current_p is non-zero.
20766
20767 2011-06-04 Eli Zaretskii <eliz@gnu.org>
20768
20769 * bidi.c (bidi_level_of_next_char): Fix last change.
20770
20771 2011-06-03 Eli Zaretskii <eliz@gnu.org>
20772
20773 Support bidi reordering of text covered by display properties.
20774
20775 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
20776 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
20777 (bidi_cache_search, bidi_cache_iterator_state)
20778 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
20779 (bidi_level_of_next_char, bidi_move_to_visually_next):
20780 Support character positions inside a run of characters covered by a
20781 display string.
20782 (bidi_paragraph_init, bidi_resolve_explicit_1)
20783 (bidi_level_of_next_char): Call bidi_fetch_char and
20784 bidi_fetch_char_advance instead of FETCH_CHAR and
20785 FETCH_CHAR_ADVANCE.
20786 (bidi_init_it): Initialize new members.
20787 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
20788 definitions.
20789 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
20790 instead of using explicit *_CHAR codes.
20791 (bidi_resolve_explicit, bidi_resolve_weak):
20792 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
20793 bidirectional text is supported only in multibyte buffers.
20794 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
20795 it to initialize the frame_window_p member of struct bidi_it.
20796 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
20797 (bidi_resolve_explicit, bidi_resolve_weak)
20798 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
20799 bidi_it->nchars is non-positive.
20800 (bidi_level_of_next_char): Don't try to lookup the cache for the
20801 next/previous character if nothing is cached there yet, or if we
20802 were just reseat()'ed to a new position.
20803
20804 * xdisp.c (set_cursor_from_row): Set start and stop points
20805 according to the row's direction when priming the loop that looks
20806 for the glyph on which to display cursor.
20807 (single_display_spec_intangible_p): Function deleted.
20808 (display_prop_intangible_p): Reimplement to call
20809 handle_display_spec instead of single_display_spec_intangible_p.
20810 Accept 3 additional arguments needed by handle_display_spec.
20811 This fixes incorrect cursor motion across display property with complex
20812 values: lists, `(when COND...)' forms, etc.
20813 (single_display_spec_string_p): Support property values that are
20814 lists with the argument STRING its top-level element.
20815 (display_prop_string_p): Fix the condition for processing a
20816 property that is a list to be consistent with handle_display_spec.
20817 (handle_display_spec): New function, refactored from the
20818 last portion of handle_display_prop.
20819 (compute_display_string_pos): Accept additional argument
20820 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
20821 value of a `display' property is a "replacing spec".
20822 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
20823 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
20824 the display property, but just return a value indicating whether
20825 the display property will replace the characters it covers.
20826 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
20827 frame_window_p members of struct bidi_it.
20828 (compute_display_string_pos, compute_display_string_end):
20829 New functions.
20830 (push_it): Accept second argument POSITION, where pop_it should
20831 jump to continue iteration.
20832 (reseat_1): Initialize bidi_it.disp_pos.
20833
20834 * keyboard.c (adjust_point_for_property): Adjust the call to
20835 display_prop_intangible_p to its new signature.
20836
20837 * dispextern.h (struct bidi_it): New member frame_window_p.
20838 (bidi_init_it): Update prototypes.
20839 (display_prop_intangible_p): Update prototype.
20840 (compute_display_string_pos, compute_display_string_end):
20841 Declare prototypes.
20842 (struct bidi_it): New members nchars and disp_pos. ch_len is now
20843 EMACS_INT.
20844
20845 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
20846
20847 Malloc failure behavior now depends on size of allocation.
20848 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
20849 * lisp.h: Change signatures accordingly.
20850 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
20851 All callers changed. (Bug#8762)
20852
20853 * gnutls.c: Use Emacs's memory allocators.
20854 Without this change, the gnutls library would invoke malloc etc.
20855 directly, which causes problems on non-SYNC_INPUT hosts, and which
20856 runs afoul of improving memory_full behavior. (Bug#8761)
20857 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
20858 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
20859 xfree instead of the default malloc, realloc, free.
20860 (Fgnutls_boot): No need to check for memory allocation failure,
20861 since xmalloc does that for us.
20862
20863 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
20864 * category.c (hash_get_category_set):
20865 * ccl.c (ccl_driver):
20866 * charset.c (Fdefine_charset_internal):
20867 * charset.h (struct charset.hash_index):
20868 * composite.c (get_composition_id, gstring_lookup_cache)
20869 (composition_gstring_put_cache):
20870 * composite.h (struct composition.hash_index):
20871 * dispextern.h (struct image.hash):
20872 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
20873 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
20874 (hashfn_equal, hashfn_user_defined, make_hash_table)
20875 (maybe_resize_hash_table, hash_lookup, hash_put)
20876 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
20877 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
20878 (Fsxhash, Fgethash, Fputhash, Fmaphash):
20879 * image.c (make_image, search_image_cache, lookup_image)
20880 (xpm_put_color_table_h):
20881 * lisp.h (struct Lisp_Hash_Table):
20882 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
20883 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
20884 for hashes and hash indexes, instead of 'unsigned' and 'int'.
20885 * alloc.c (allocate_vectorlike):
20886 Check for overflow in vector size calculations.
20887 * ccl.c (ccl_driver):
20888 Check for overflow when converting EMACS_INT to int.
20889 * fns.c, image.c: Remove unnecessary static decls that would otherwise
20890 need to be updated by these changes.
20891 * fns.c (make_hash_table, maybe_resize_hash_table):
20892 Check for integer overflow with large hash tables.
20893 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
20894 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
20895 (SXHASH_REDUCE): New macro.
20896 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
20897 Use it instead of discarding useful hash info with large hash values.
20898 (sxhash_float): New function.
20899 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
20900 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
20901 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
20902 Rewrite to use FIXNUM_BITS, as this simplifies things.
20903 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
20904 Adjust signatures to match updated version of code.
20905 (consing_since_gc): Now EMACS_INT, since a single hash table can
20906 use more than INT_MAX bytes.
20907
20908 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
20909
20910 Make it possible to build with GCC-4.6+ -O2 -flto.
20911
20912 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
20913
20914 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
20915
20916 * minibuf.c (get_minibuffer, read_minibuf_unwind):
20917 Call minibuffer-inactive-mode.
20918
20919 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
20920
20921 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
20922 Update dependencies.
20923
20924 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20925
20926 * data.c (init_data): Remove code for UTS, this system is not
20927 supported anymore.
20928
20929 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20930
20931 Don't force ./temacs to start in terminal mode.
20932
20933 * frame.c (make_initial_frame): Initialize faces in all cases, not
20934 only when CANNOT_DUMP is defined.
20935 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
20936
20937 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20938
20939 * dispnew.c (add_window_display_history): Use const for the string
20940 pointer. Remove declaration, not needed.
20941
20942 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
20943
20944 Use 'inline', not 'INLINE'.
20945 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
20946 * alloc.c, fontset.c (INLINE): Remove.
20947 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
20948 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
20949 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
20950 * gmalloc.c (register_heapinfo): Use inline unconditionally.
20951 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
20952
20953 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
20954
20955 Make it possible to run ./temacs.
20956
20957 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
20958 syms_of_callproc does the same thing. Remove test for
20959 "initialized", do it in the caller.
20960 * emacs.c (main): Avoid calling set_initial_environment when dumping.
20961
20962 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20963
20964 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
20965 (read_minibuf): Use get_minibuffer.
20966 (syms_of_minibuf): Use DEFSYM.
20967 (Qmetadata): New var.
20968 * data.c (Qbuffer): Don't make it static.
20969 (syms_of_data): Use DEFSYM.
20970
20971 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
20972
20973 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
20974 (CCL_CODE_MIN): New macro.
20975
20976 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
20977
20978 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
20979
20980 * eval.c (Qdebug): Now static.
20981 * lisp.h (Qdebug): Remove decl. This reverts a part of the
20982 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
20983 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
20984
20985 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
20986
20987 * image.c: Various fixes to ImageMagick code comments.
20988 (Fimagemagick_types): Doc fix.
20989
20990 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
20991
20992 Minor fixes prompted by GCC 4.6.0 warnings.
20993
20994 * xselect.c (converted_selections, conversion_fail_tag): Now static.
20995
20996 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
20997 (x_clipboard_manager_save_all): Move extern decl to ...
20998 * xterm.h: ... here, so that it can be checked for consistency.
20999
21000 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
21001
21002 * xselect.c (x_clipboard_manager_save_frame)
21003 (x_clipboard_manager_save_all): New functions.
21004 (Fx_clipboard_manager_save): Lisp function deleted.
21005
21006 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
21007 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
21008
21009 * xterm.h: Update prototype.
21010
21011 2011-05-28 William Xu <william.xwl@gmail.com>
21012
21013 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
21014 exiting (Bug#8239).
21015
21016 2011-05-28 Jim Meyering <meyering@redhat.com>
21017
21018 Avoid a sign-extension bug in crypto_hash_function.
21019 * fns.c (to_uchar): Define.
21020 (crypto_hash_function): Use it to convert some newly-signed
21021 variables to unsigned, to avoid sign-extension bugs. For example,
21022 without this change, (md5 "truc") would evaluate to
21023 45723a2aff78ff4fff7fff1114760e62 rather than the expected
21024 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
21025 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
21026
21027 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
21028
21029 Integer overflow fixes.
21030
21031 * dbusbind.c: Serial number integer overflow fixes.
21032 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
21033 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
21034 to hold a serial number that is too large for a fixnum.
21035 (Fdbus_method_return_internal, Fdbus_method_error_internal):
21036 Check for serial numbers out of range. Decode any serial number
21037 that was so large that it became a float. (Bug#8722)
21038
21039 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
21040 (Fdbus_call_method, Fdbus_call_method_asynchronously):
21041 Use XFASTINT rather than XUINT when numbers are nonnegative.
21042 (xd_append_arg, Fdbus_method_return_internal):
21043 (Fdbus_method_error_internal): Likewise. Also, for unsigned
21044 arguments, check that Lisp number is nonnegative, rather than
21045 silently wrapping negative numbers around. (Bug#8722)
21046 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
21047 (Bug#8722)
21048
21049 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
21050
21051 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
21052
21053 ccl: Add integer overflow checks.
21054 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
21055 (IN_INT_RANGE): New macros.
21056 (ccl_driver): Use them to check for integer overflow when
21057 decoding a CCL program. Many of the new checks are whether XINT (x)
21058 fits in int; it doesn't always, on 64-bit hosts. The new version
21059 doesn't catch all possible integer overflows, but it's an
21060 improvement. (Bug#8719)
21061
21062 * alloc.c (make_event_array): Use XINT, not XUINT.
21063 There's no need for unsigned here.
21064
21065 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
21066 This follows up to the 2011-05-06 change that substituted uintptr_t
21067 for EMACS_INT. This case wasn't caught back then.
21068
21069 Rework Fformat to avoid integer overflow issues.
21070 * editfns.c: Include <float.h> unconditionally, as it's everywhere
21071 now (part of C89). Include <verify.h>.
21072 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
21073 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
21074 (Fformat): Avoid the prepass trying to compute sizes; it was only
21075 approximate and thus did not catch overflow reliably. Instead, walk
21076 through the format just once, formatting and computing sizes as we go,
21077 checking for integer overflow at every step, and allocating a larger
21078 buffer as needed. Keep track separately whether the format is
21079 multibyte. Keep only the most-recently calculated precision, rather
21080 than them all. Record whether each argument has been converted to
21081 string. Use EMACS_INT, not int, for byte and char and arg counts.
21082 Support field widths and precisions larger than INT_MAX. Avoid
21083 sprintf's undefined behavior with conversion specifications such as %#d
21084 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
21085 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
21086 formatting out-of-range floating point numbers with int
21087 formats. (Bug#8668)
21088
21089 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
21090
21091 * data.c: Avoid integer truncation in expressions involving floats.
21092 * data.c: Include <intprops.h>.
21093 (arith_driver): When there's an integer overflow in an expression
21094 involving floating point, convert the integers to floating point
21095 so that the resulting value does not suffer from catastrophic
21096 integer truncation. For example, on a 64-bit host (* 4
21097 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
21098 Do not rely on undefined behavior after integer overflow.
21099
21100 merge count_size_as_multibyte, parse_str_to_multibyte
21101 * character.c, character.h (count_size_as_multibyte):
21102 Rename from parse_str_to_multibyte; all uses changed.
21103 Check for integer overflow.
21104 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
21105 since it's now a duplicate of the other. This is more of
21106 a character than a buffer op, so better that it's in character.c.
21107 * fns.c, print.c: Adjust to above changes.
21108
21109 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
21110
21111 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
21112
21113 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
21114
21115 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
21116 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
21117 (x_clipboard_manager_save): Now static.
21118 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
21119
21120 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
21121 (crypto_hash_function): Now static.
21122 Fix pointer signedness problems. Avoid unnecessary initializations.
21123
21124 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
21125
21126 * termhooks.h (Vselection_alist): Make it terminal-local.
21127
21128 * terminal.c (create_terminal): Initialize it.
21129
21130 * xselect.c: Support for clipboard managers.
21131 (Vselection_alist): Move to termhooks.h as terminal-local var.
21132 (LOCAL_SELECTION): New macro.
21133 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
21134 (symbol_to_x_atom): Remove gratuitous arg.
21135 (x_handle_selection_request, lisp_data_to_selection_data)
21136 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
21137 (x_own_selection, x_get_local_selection, x_convert_selection):
21138 New arg, specifying work frame. Use terminal-local Vselection_alist.
21139 (some_frame_on_display): Delete unused function.
21140 (Fx_own_selection_internal, Fx_get_selection_internal)
21141 (Fx_disown_selection_internal, Fx_selection_owner_p)
21142 (Fx_selection_exists_p): New optional frame arg.
21143 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
21144 (x_handle_selection_clear): Don't treat other terminals with the
21145 same keyboard specially. Use the terminal-local Vselection_alist.
21146 (x_clear_frame_selections): Use Frun_hook_with_args.
21147
21148 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
21149
21150 * xterm.h: Add support for those atoms.
21151
21152 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
21153
21154 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
21155 (converted_selections, conversion_fail_tag): New global variables.
21156 (x_selection_request_lisp_error): Free the above.
21157 (x_get_local_selection): Remove unnecessary code.
21158 (x_reply_selection_request): Args changed; handle arbitrary array
21159 of converted selections stored in converted_selections.
21160 Separate the XChangeProperty and SelectionNotify steps.
21161 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
21162 (x_convert_selection): New function.
21163 (x_handle_selection_event): Simplify.
21164 (x_get_foreign_selection): Don't ignore incoming requests while
21165 waiting for an answer; this will fail when we implement
21166 SAVE_TARGETS, and seems unnecessary anyway.
21167 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
21168 (Vx_sent_selection_functions): Doc fix.
21169
21170 2011-05-26 Leo Liu <sdl.web@gmail.com>
21171
21172 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
21173
21174 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21175
21176 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
21177
21178 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
21179 for fringe update if it has periodic bitmap.
21180 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
21181 and fringe_bitmap_periodic_p.
21182
21183 * fringe.c (get_fringe_bitmap_data): New function.
21184 (draw_fringe_bitmap_1, update_window_fringes): Use it.
21185 (update_window_fringes): Record periodicity of fringe bitmap in glyph
21186 row. Mark glyph row for fringe update if periodicity changed.
21187
21188 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
21189 for fringe update unless it has periodic bitmap.
21190
21191 2011-05-25 Kenichi Handa <handa@m17n.org>
21192
21193 * xdisp.c (get_next_display_element): Set correct it->face_id for
21194 a static composition.
21195
21196 2011-05-24 Leo Liu <sdl.web@gmail.com>
21197
21198 * deps.mk (fns.o):
21199 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
21200
21201 * fns.c (crypto_hash_function, Fsha1): New function.
21202 (Fmd5): Use crypto_hash_function.
21203 (syms_of_fns): Add Ssha1.
21204
21205 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
21206
21207 * gnutls.c: Remove unused macros.
21208 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
21209 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
21210 Remove macros that are defined and never used.
21211 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
21212
21213 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
21214
21215 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
21216 (Fx_get_selection_internal): Minor cleanup.
21217 (Fx_own_selection_internal): Rename arguments for consistency with
21218 select.el.
21219
21220 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
21221
21222 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
21223
21224 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
21225
21226 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
21227
21228 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21229
21230 * dispnew.c (scrolling_window): Don't exclude the case that the
21231 last enabled row in the desired matrix touches the bottom boundary.
21232
21233 2011-05-21 Glenn Morris <rgm@gnu.org>
21234
21235 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
21236 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
21237 and add some more files.
21238
21239 2011-05-20 Eli Zaretskii <eliz@gnu.org>
21240
21241 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
21242 report_file_error introduced by the change from 2011-05-07.
21243
21244 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
21245
21246 * systime.h (Time): Define only if emacs is defined.
21247 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
21248 where the include path doesn't have X11/X.h by default. See
21249 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
21250
21251 2011-05-20 Kenichi Handa <handa@m17n.org>
21252
21253 * composite.c (find_automatic_composition): Fix previous change.
21254
21255 2011-05-20 Glenn Morris <rgm@gnu.org>
21256
21257 * lisp.mk: New file, split from Makefile.in.
21258 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
21259 (shortlisp): Remove.
21260 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
21261
21262 2011-05-19 Glenn Morris <rgm@gnu.org>
21263
21264 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
21265 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
21266 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
21267 (lisp): Set the order to that of loadup.el.
21268 (shortlisp): Make it a copy of $lisp.
21269 (SOME_MACHINE_LISP): Remove.
21270 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
21271 Use just $shortlisp, not $SOME_MACHINE_LISP too.
21272
21273 2011-05-18 Kenichi Handa <handa@m17n.org>
21274
21275 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
21276 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
21277 (find_automatic_composition): Mostly rewrite for efficiency.
21278
21279 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
21280
21281 * makefile.w32-in: Update dependencies.
21282
21283 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
21284
21285 * menu.c: Include limits.h (fixes the MS-Windows build broken by
21286 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
21287
21288 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
21289
21290 Fix some integer overflow issues, such as string length overflow.
21291
21292 * insdel.c (count_size_as_multibyte): Check for string overflow.
21293
21294 * character.c (lisp_string_width): Check for string overflow.
21295 Use EMACS_INT, not int, for string indexes and lengths; in
21296 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
21297 the resulting string length overflows an EMACS_INT; instead,
21298 report a string overflow if no precision given. When checking for
21299 precision exhaustion, use a check that cannot possibly have
21300 integer overflow. (Bug#8675)
21301 * character.h (lisp_string_width): Adjust to new signature.
21302
21303 * alloc.c (string_overflow): New function.
21304 (Fmake_string): Use it. This doesn't change behavior, but saves
21305 a few bytes and will simplify future changes.
21306 * character.c (string_escape_byte8): Likewise.
21307 * lisp.h (string_overflow): New decl.
21308
21309 Fixups, following up to the user-interface timestamp change.
21310 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
21311 for UI timestamps, instead of unsigned long.
21312 * msdos.c (mouse_get_pos): Likewise.
21313 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
21314 * w32gui.h (Time): Define by including "systime.h" rather than by
21315 declaring it ourselves. (Bug#8664)
21316
21317 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
21318 * image.c (clear_image_cache): Likewise.
21319
21320 * term.c (term_mouse_position): Don't assume time_t wraparound.
21321
21322 Be more systematic about user-interface timestamps.
21323 Before, the code sometimes used 'Time', sometimes 'unsigned long',
21324 and sometimes 'EMACS_UINT', to represent these timestamps.
21325 This change causes it to use 'Time' uniformly, as that's what X uses.
21326 This makes the code easier to follow, and makes it easier to catch
21327 integer overflow bugs such as Bug#8664.
21328 * frame.c (Fmouse_position, Fmouse_pixel_position):
21329 Use Time, not unsigned long, for user-interface timestamps.
21330 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
21331 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
21332 * keyboard.h (last_event_timestamp): Likewise.
21333 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
21334 * menu.h (xmenu_show): Likewise.
21335 * term.c (term_mouse_position): Likewise.
21336 * termhooks.h (struct input_event.timestamp): Likewise.
21337 (struct terminal.mouse_position_hook): Likewise.
21338 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
21339 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
21340 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
21341 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
21342 what it was before.
21343 * menu.h, termhooks.h: Include "systime.h", for Time.
21344
21345 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
21346 Don't assume that the difference between two unsigned long values
21347 can fit into an integer. At this point, we know button_down_time
21348 <= event->timestamp, so the difference must be nonnegative, so
21349 there's no need to cast the result if double-click-time is
21350 nonnegative, as it should be; check that it's nonnegative, just in
21351 case. This bug is triggered when events are more than 2**31 ms
21352 apart (about 25 days). (Bug#8664)
21353
21354 * xselect.c (last_event_timestamp): Remove duplicate decl.
21355 (x_own_selection): Remove needless cast to unsigned long.
21356
21357 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
21358 that always fit in int. Use a sentinel instead of a counter, to
21359 avoid a temp and to allay GCC's concerns about possible int overflow.
21360 * frame.h (struct frame): Use int for menu_bar_items_used
21361 instead of EMACS_INT, since it always fits in int.
21362
21363 * menu.c (grow_menu_items): Check for int overflow.
21364
21365 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
21366
21367 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
21368 Before, the code was not consistent. These values cannot exceed
21369 2**31 - 1 so there's no need to make them unsigned.
21370 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
21371 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
21372 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
21373 as modifiers.
21374 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
21375
21376 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
21377 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
21378 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
21379 presumably because the widths might not match.
21380
21381 * window.c (size_window): Avoid needless test at loop start.
21382
21383 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
21384
21385 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
21386
21387 2011-05-12 Drew Adams <drew.adams@oracle.com>
21388
21389 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
21390
21391 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21392
21393 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
21394 `width' to `bar_area_x' and `bar_area_width', respectively.
21395 (x_scroll_run): Take account of fringe background extension.
21396
21397 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
21398 Rename local vars `left' and `width' to `bar_area_x' and
21399 `bar_area_width', respectively.
21400 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
21401 background extension.
21402
21403 2011-05-10 Jim Meyering <meyering@redhat.com>
21404
21405 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
21406
21407 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
21408
21409 * image.c (Finit_image_library): Return t for built-in image types,
21410 like pbm and xbm. (Bug#8640)
21411
21412 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
21413
21414 * w32menu.c (set_frame_menubar): Fix submenu allocation.
21415
21416 2011-05-07 Eli Zaretskii <eliz@gnu.org>
21417
21418 * w32console.c (Fset_screen_color): Doc fix.
21419 (Fget_screen_color): New function.
21420 (syms_of_ntterm): Defsubr it.
21421
21422 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
21423 unlink the temporary file if Fcall_process didn't create it in the
21424 first place.
21425 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
21426 child process will be redirected to a file specified with `:file'.
21427 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
21428 cue to call_process_cleanup not to close that handle.
21429
21430 2011-05-07 Ben Key <bkey76@gmail.com>
21431
21432 * makefile.w32-in: The bootstrap-temacs rule now makes use of
21433 one of two shell specific rules, either bootstrap-temacs-CMD or
21434 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
21435 to the previous implementation of the bootstrap-temacs rule.
21436 The bootstrap-temacs-CMD rule is similar to the previous
21437 implementation of the bootstrap-temacs rule except that it
21438 makes use of the ESC_CFLAGS variable instead of the CFLAGS
21439 variable.
21440
21441 These changes, along with some changes to nt/configure.bat,
21442 nt/gmake.defs, and nt/nmake.defs, are required to extend my
21443 earlier fix to add support for --cflags and --ldflags options
21444 that include quotes so that it works whether make uses cmd or
21445 sh as the shell.
21446
21447 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
21448
21449 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
21450 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
21451 is a constant.
21452 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
21453 a string. Handle both cases.
21454 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
21455 (Fdbus_register_method): Use Qinvalid_function.
21456
21457 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
21458
21459 * makefile.w32-in: Update dependencies.
21460 (LISP_H): Add inttypes.h and stdin.h.
21461 (PROCESS_H): Add unistd.h.
21462
21463 2011-05-06 Eli Zaretskii <eliz@gnu.org>
21464
21465 * lread.c: Include limits.h (fixes the MS-Windows build broken by
21466 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
21467
21468 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
21469
21470 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
21471
21472 * term.c (vfatal): Remove stray call to va_end.
21473 It's not needed and the C Standard doesn't allow it here anyway.
21474
21475 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
21476 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
21477
21478 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
21479 bytes.
21480
21481 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
21482
21483 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
21484
21485 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
21486
21487 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
21488
21489 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
21490
21491 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
21492 * charset.c (Fdefine_charset_internal): Don't initialize
21493 charset.code_space[15]. The value was garbage, on hosts with
21494 32-bit int (Bug#8600).
21495
21496 * lread.c (read_integer): Be more consistent with string-to-number.
21497 Use string_to_number to do the actual conversion; this avoids
21498 rounding errors and fixes some other screwups. Without this fix,
21499 for example, #x1fffffffffffffff was misread as -2305843009213693952.
21500 (digit_to_number): Move earlier, for benefit of read_integer.
21501 Return -1 if the digit is out of range for the base, -2 if it is
21502 not a digit in any supported base. (Bug#8602)
21503
21504 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
21505
21506 * dispnew.c (scrolling_window): Return 1 if we scrolled,
21507 to match comment at start of function. This also removes a
21508 GCC warning about overflow in a 32+64-bit port.
21509
21510 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
21511
21512 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
21513 Reported by Stefan Monnier in
21514 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
21515 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
21516 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
21517
21518 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
21519 (EMACS_UINTPTR): Likewise, with uintptr_t.
21520
21521 * lisp.h: Prefer 64-bit EMACS_INT if available.
21522 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
21523 on 32-bit hosts that have 64-bit int, so that they can access
21524 large files.
21525 However, temporarily disable this change unless the temporary
21526 symbol WIDE_EMACS_INT is defined.
21527
21528 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
21529
21530 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
21531 This removes an assumption that EMACS_INT and long are the same
21532 width as pointers. The assumption is true for Emacs porting targets
21533 now, but we want to make other targets possible.
21534 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
21535 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
21536 In the rest of the code, change types of integers that hold casted
21537 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
21538 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
21539 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
21540 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
21541 No need to cast type when ORing.
21542 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
21543 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
21544 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
21545 assume EMACS_INT is the same width as char *.
21546 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
21547 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
21548 Remove no-longer-needed casts.
21549 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
21550 (xg_tool_bar_help_callback, xg_make_tool_item):
21551 Use EMACS_INTPTR to hold an integer
21552 that will be cast to void *; this can avoid a GCC warning
21553 if EMACS_INT is not the same width as void *.
21554 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
21555 * xdisp.c (display_echo_area_1, resize_mini_window_1):
21556 (current_message_1, set_message_1):
21557 Use a local to convert to proper width without a cast.
21558 * xmenu.c (dialog_selection_callback): Likewise.
21559
21560 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
21561 Also, don't assume VALBITS / RAND_BITS is less than 5,
21562 and don't rely on undefined behavior when shifting a 1 left into
21563 the sign bit.
21564 * lisp.h (get_random): Change signature to match.
21565
21566 * lread.c (hash_string): Use size_t, not int, for hash computation.
21567 Normally we prefer signed values; but hashing is special, because
21568 it's better to use unsigned division on hash table sizes so that
21569 the remainder is nonnegative. Also, size_t is the natural width
21570 for hashing into memory. The previous code used 'int', which doesn't
21571 retain enough info to hash well into very large tables.
21572 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
21573
21574 * dbusbind.c: Don't possibly lose pointer info when converting.
21575 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
21576 Use XPNTR rather than XHASH, so that the high-order bits of
21577 the pointer aren't lost when converting through void *.
21578
21579 * eval.c (Fautoload): Don't double-shift a pointer.
21580
21581 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
21582
21583 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
21584
21585 * gnutls.c (DEF_GNUTLS_FN):
21586 * image.c (DEF_IMGLIB_FN): Make function pointers static.
21587
21588 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
21589
21590 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
21591 marker. (Bug#8610)
21592
21593 2011-05-05 Eli Zaretskii <eliz@gnu.org>
21594
21595 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
21596 New version that can reserve upto 2GB of heap space.
21597
21598 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
21599
21600 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
21601
21602 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
21603
21604 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
21605 `gnutls_certificate_set_x509_key_file'.
21606
21607 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
21608
21609 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
21610 Update dependencies.
21611
21612 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
21613
21614 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
21615 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
21616 Remove unused parameter `fildes'.
21617 * process.c (read_process_output, send_process): Don't pass it.
21618
21619 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
21620
21621 Fix previous change: the library cache is defined in w32.c.
21622 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
21623 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
21624
21625 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
21626
21627 Implement dynamic loading of GnuTLS on Windows.
21628
21629 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
21630 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
21631 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
21632 Declare.
21633
21634 * gnutls.c (Qgnutls_dll): Define.
21635 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
21636 (gnutls_*): Declare function pointers.
21637 (init_gnutls_functions): New function to initialize function pointers.
21638 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
21639 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
21640 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
21641 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
21642 (emacs_gnutls_write, emacs_gnutls_read)
21643 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
21644 (Fgnutls_available_p): New function.
21645 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
21646 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
21647 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
21648
21649 * image.c: Include w32.h.
21650 (Vimage_type_cache): Delete.
21651 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
21652 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
21653 (w32_delayed_load): Move to w32.c.
21654
21655 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
21656
21657 * w32.c (QCloaded_from, Vlibrary_cache): Define.
21658 (w32_delayed_load): Move from image.c. When loading a library, record
21659 its filename in the :loaded-from property of the library id.
21660 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
21661 Initialize and staticpro them.
21662 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
21663
21664 * process.c: Include lisp.h before w32.h, not after.
21665 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
21666 instead of gnutls_record_check_pending.
21667
21668 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
21669
21670 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
21671
21672 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
21673 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
21674 as passed in.
21675
21676 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
21677
21678 * xterm.c (x_set_frame_alpha): Do not set property on anything
21679 else than FRAME_X_OUTER_WINDOW (Bug#8608).
21680
21681 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
21682
21683 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
21684
21685 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
21686
21687 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
21688 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
21689 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
21690 (gnutls_global_initialized, Qgnutls_bootprop_priority)
21691 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
21692 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
21693 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
21694 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
21695 (Qgnutls_bootprop_callbacks_verify): Make static.
21696
21697 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
21698
21699 * callproc.c: Indentation fixup.
21700
21701 * sysdep.c (wait_for_termination_1): Make static.
21702 (wait_for_termination, interruptible_wait_for_termination):
21703 Move after wait_for_termination_1.
21704
21705 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
21706
21707 * sysdep.c (interruptible_wait_for_termination): New function
21708 which is like wait_for_termination, but allows keyboard
21709 interruptions.
21710
21711 * callproc.c (Fcall_process): Add (:file "file") as an option for
21712 the STDOUT buffer.
21713 (Fcall_process_region): Ditto.
21714
21715 2011-04-30 Eli Zaretskii <eliz@gnu.org>
21716
21717 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
21718 rather than `XVECTOR (FOO)->size'.
21719
21720 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
21721 inttypes.h, as a gnulib replacement is used if it not available in
21722 system headers.
21723
21724 2011-04-21 Eli Zaretskii <eliz@gnu.org>
21725
21726 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
21727 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
21728 of MOST_POSITIVE_FIXNUM. (Bug#8528)
21729
21730 * coding.c (coding_alloc_by_realloc): Error out if destination
21731 will grow beyond MOST_POSITIVE_FIXNUM.
21732 (decode_coding_emacs_mule): Abort if there isn't enough place in
21733 charbuf for the composition carryover bytes. Reserve an extra
21734 space for up to 2 characters produced in a loop.
21735 (decode_coding_iso_2022): Abort if there isn't enough place in
21736 charbuf for the composition carryover bytes.
21737
21738 2011-04-21 Eli Zaretskii <eliz@gnu.org>
21739
21740 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
21741 aborting when %lld or %lll format is passed.
21742 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
21743 %llo or %llx format is passed. (Bug#8545)
21744
21745 * window.c (window_scroll_line_based): Use a marker instead of
21746 simple variables to record original value of point. (Bug#7952)
21747
21748 * doprnt.c (doprnt): Fix the case where a multibyte sequence
21749 produced by %s or %c overflows available buffer space. (Bug#8545)
21750
21751 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
21752
21753 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
21754 (SIZE_MAX): Move defn after all includes, as they might #define it.
21755
21756 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
21757
21758 * w32.c (init_environment): Warn about defaulting HOME to C:\.
21759
21760 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
21761
21762 * keyboard.c (Qdelayed_warnings_hook): Define.
21763 (command_loop_1): Run `delayed-warnings-hook'
21764 if Vdelayed_warnings_list is non-nil.
21765 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
21766 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
21767
21768 2011-04-28 Eli Zaretskii <eliz@gnu.org>
21769
21770 * doprnt.c (doprnt): Don't return value smaller than the buffer
21771 size if the message was truncated. (Bug#8545).
21772
21773 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
21774
21775 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
21776 (Fx_window_property): #if-0 the whole functions, not just the bodies.
21777
21778 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
21779
21780 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
21781
21782 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
21783
21784 * makefile.w32-in: Update dependencies.
21785
21786 2011-04-27 Eli Zaretskii <eliz@gnu.org>
21787
21788 Improve `doprnt' and its usage. (Bug#8545)
21789 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
21790 `format_end'. Remove support for %l as a conversion specifier.
21791 Don't use xrealloc. Improve diagnostics when the %l size modifier
21792 is used. Update the commentary.
21793
21794 * eval.c (verror): Simplify calculation of size_t.
21795
21796 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
21797 messages.
21798
21799 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
21800
21801 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
21802 change.
21803
21804 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
21805
21806 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
21807 This makes this file independent of the recent pseudovector change.
21808
21809 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
21810
21811 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
21812
21813 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
21814 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
21815 Remove unused local.
21816 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
21817
21818 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
21819 GCC 4.6.0 optimizes based on type-based alias analysis.
21820 For example, if b is of type struct buffer * and v of type struct
21821 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
21822 != &v->size, and therefore "v->size = 1; b->size = 2; return
21823 v->size;" must therefore return 1. This assumption is incorrect
21824 for Emacs, since it type-puns struct Lisp_Vector * with many other
21825 types. To fix this problem, this patch adds a new type struct
21826 vectorlike_header that documents the constraints on layout of vectors
21827 and pseudovectors, and helps optimizing compilers not get fooled
21828 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
21829 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
21830 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
21831 the size member.
21832 (XSETPVECTYPE): Rewrite in terms of new macro.
21833 (XSETPVECTYPESIZE): New macro, specifying both type and size.
21834 This is a bit clearer, and further avoids the possibility of
21835 undesirable aliasing.
21836 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
21837 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
21838 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
21839 since Lisp_Subr is a special case (no "next" field).
21840 (ASIZE): Now uses header.size rather than size.
21841 All previous uses of XVECTOR (foo)->size replaced to use this macro,
21842 to avoid the hassle of writing XVECTOR (foo)->header.size.
21843 (struct vectorlike_header): New type.
21844 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
21845 object, to help avoid aliasing.
21846 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
21847 (SUBRP): Likewise, since Lisp_Subr is a special case.
21848 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
21849 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
21850 (struct Lisp_Hash_Table): Combine first two members into a single
21851 struct vectorlike_header member. All uses of "size" and "next" members
21852 changed to be "header.size" and "header.next".
21853 * buffer.h (struct buffer): Likewise.
21854 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
21855 * frame.h (struct frame): Likewise.
21856 * process.h (struct Lisp_Process): Likewise.
21857 * termhooks.h (struct terminal): Likewise.
21858 * window.c (struct save_window_data, struct saved_window): Likewise.
21859 * window.h (struct window): Likewise.
21860 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
21861 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
21862 * buffer.c (init_buffer_once): Likewise.
21863 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
21864 special case.
21865 * process.c (Fformat_network_address): Use local var for size,
21866 for brevity.
21867
21868 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
21869
21870 Make the Lisp reader and string-to-float more consistent (Bug#8525)
21871 * data.c (atof): Remove decl; no longer used or needed.
21872 (digit_to_number): Move to lread.c.
21873 (Fstring_to_number): Use new string_to_number function, to be
21874 consistent with how the Lisp reader treats infinities and NaNs.
21875 Do not assume that floating-point numbers represent EMACS_INT
21876 without losing information; this is not true on most 64-bit hosts.
21877 Avoid double-rounding errors, by insisting on integers when
21878 parsing non-base-10 numbers, as the documentation specifies.
21879 * lisp.h (string_to_number): New decl, replacing ...
21880 (isfloat_string): Remove.
21881 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
21882 (read1): Do not accept +. and -. as integers; this
21883 appears to have been a coding error. Similarly, do not accept
21884 strings like +-1e0 as floating point numbers. Do not report
21885 overflow for integer overflows unless the base is not 10 which
21886 means we have no simple and reliable way to continue.
21887 Break out the floating-point parsing into a new
21888 function string_to_number, so that Fstring_to_number parses
21889 floating point numbers consistently with the Lisp reader.
21890 (digit_to_number): Move here from data.c. Make it static inline.
21891 (E_CHAR, EXP_INT): Remove, replacing with ...
21892 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
21893 (string_to_number): New function, replacing isfloat_string.
21894 This function checks for valid syntax and produces the resulting
21895 Lisp float number too. Rework it so that string-to-number
21896 no longer mishandles examples like "1.0e+". Use strtoumax,
21897 so that overflow for non-base-10 numbers is reported only when
21898 there's no portable and simple way to convert to floating point.
21899
21900 * textprop.c (set_text_properties_1): Rewrite for clarity,
21901 and to avoid GCC warning about integer overflow.
21902
21903 * intervals.h (struct interval): Use EMACS_INT for members
21904 where EMACS_UINT might cause problems. See
21905 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
21906 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
21907 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
21908 All uses changed.
21909 (offset_intervals): Tell GCC not to worry about length overflow
21910 when negating a negative length.
21911
21912 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
21913 (overrun_check_free): Likewise.
21914
21915 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
21916 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
21917 word size.
21918
21919 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
21920 (gnutls_make_error): Rename local to avoid shadowing.
21921 (gnutls_emacs_global_deinit): ifdef out; not used.
21922 (Fgnutls_boot): Use const for pointer to readonly storage.
21923 Comment out unused local. Fix pointer signedness problems.
21924
21925 * lread.c (openp): Don't stuff size_t into an 'int'.
21926 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
21927 about possible signed overflow.
21928
21929 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
21930 (GDK_KEY_g): Don't define if already defined.
21931 (xg_prepare_tooltip): Avoid pointer signedness problem.
21932 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
21933
21934 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
21935 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
21936
21937 * xfns.c (Fx_window_property): Simplify a bit,
21938 to make a bit faster and to avoid GCC 4.6.0 warning.
21939 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
21940
21941 * fns.c (internal_equal): Don't assume size_t fits in int.
21942
21943 * alloc.c (compact_small_strings): Tighten assertion a little.
21944
21945 Replace pEd with more-general pI, and fix some printf arg casts.
21946 * lisp.h (pI): New macro, generalizing old pEd macro to other
21947 conversion specifiers. For example, use "...%"pI"d..." rather
21948 than "...%"pEd"...".
21949 (pEd): Remove. All uses replaced with similar uses of pI.
21950 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
21951 * alloc.c (check_pure_size): Don't overflow by converting size to int.
21952 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
21953 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
21954 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
21955 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
21956 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
21957 64-bit hosts.
21958 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
21959 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
21960 * print.c (safe_debug_print, print_object): Likewise.
21961 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
21962 to int.
21963 Use pI instead of if-then-else-abort. Use %p to avoid casts,
21964 avoiding the 0 flag, which is not portable.
21965 * process.c (Fmake_network_process): Use pI to avoid cast.
21966 * region-cache.c (pp_cache): Likewise.
21967 * xdisp.c (decode_mode_spec): Likewise.
21968 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
21969 behavior on 64-bit hosts with printf arg.
21970 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
21971 (x_stop_queuing_selection_requests): Likewise.
21972 (x_get_window_property): Don't truncate byte count to an 'int'
21973 when tracing.
21974
21975 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
21976 here, since it parses constructs like leading '-' and spaces,
21977 which are not wanted; and it overflows with large numbers.
21978 Instead, simply match F[0-9]+, which is what is wanted anyway.
21979
21980 * alloc.c: Remove unportable assumptions about struct layout.
21981 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
21982 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
21983 (allocate_vectorlike, make_pure_vector): Use the new macros,
21984 plus offsetof, to remove unportable assumptions about struct layout.
21985 These assumptions hold on all porting targets that I know of, but
21986 they are not guaranteed, they're easy to remove, and removing them
21987 makes further changes easier.
21988
21989 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
21990 This doesn't fix a bug but makes the code clearer.
21991 (string_overrun_cookie): Now const. Use initializers that
21992 don't formally overflow signed char, to avoid warnings.
21993 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
21994 can cause Emacs to crash when string overrun checking is enabled.
21995 (allocate_buffer): Don't assume sizeof (struct buffer) is a
21996 multiple of sizeof (EMACS_INT); it need not be, if
21997 alignof(EMACS_INT) < sizeof (EMACS_INT).
21998 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
21999
22000 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
22001
22002 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
22003
22004 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
22005
22006 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
22007 supposed to be handshaking. (Bug#8556)
22008 Reported by Paul Eggert <eggert@cs.ucla.edu>.
22009
22010 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
22011
22012 * lisp.h (Qdebug): List symbol.
22013 * eval.c (Qdebug): Restore global linkage.
22014 * keyboard.c (debug-on-event): New variable.
22015 (handle_user_signal): Break into debugger when debug-on-event
22016 matches the current signal symbol.
22017
22018 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
22019
22020 * alloc.c (check_sblock, check_string_bytes)
22021 (check_string_free_list): Convert to standard C.
22022
22023 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
22024
22025 * w32.c (emacs_gnutls_push): Fix typo.
22026
22027 2011-04-25 Eli Zaretskii <eliz@gnu.org>
22028
22029 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
22030 "cast to pointer from integer of different size".
22031
22032 Improve doprnt and its use in verror. (Bug#8545)
22033 * doprnt.c (doprnt): Document the set of format control sequences
22034 supported by the function. Use SAFE_ALLOCA instead of always
22035 using `alloca'.
22036
22037 * eval.c (verror): Don't limit the buffer size at size_max-1, that
22038 is one byte too soon. Don't use xrealloc; instead xfree and
22039 xmalloc anew.
22040
22041 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
22042
22043 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
22044 callbacks stage.
22045
22046 * gnutls.c: Renamed global_initialized to
22047 gnutls_global_initialized. Added internals for the
22048 :verify-hostname-error, :verify-error, and :verify-flags
22049 parameters of `gnutls-boot' and documented those parameters in the
22050 docstring. Start callback support.
22051 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
22052 unless a fatal error occurred. Call gnutls_alert_send_appropriate
22053 on error. Return error code.
22054 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
22055 (emacs_gnutls_read): Likewise.
22056 (Fgnutls_boot): Return handshake error code.
22057 (emacs_gnutls_handle_error): New function.
22058 (wsaerror_to_errno): Likewise.
22059
22060 * w32.h (emacs_gnutls_pull): Add prototype.
22061 (emacs_gnutls_push): Likewise.
22062
22063 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
22064 (emacs_gnutls_push): Likewise.
22065
22066 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
22067
22068 * process.c (wait_reading_process_output): Check if GnuTLS
22069 buffered some data internally if no FDs are set for TLS
22070 connections.
22071
22072 * makefile.w32-in (OBJ2): Add gnutls.$(O).
22073 (LIBS): Link to USER_LIBS.
22074 ($(BLD)/gnutls.$(0)): New target.
22075
22076 2011-04-24 Eli Zaretskii <eliz@gnu.org>
22077
22078 * xdisp.c (handle_single_display_spec): Rename the
22079 display_replaced_before_p argument into display_replaced_p, to
22080 make it consistent with the commentary. Fix typos in the
22081 commentary.
22082
22083 * textprop.c (syms_of_textprop): Remove dead code.
22084 (copy_text_properties): Delete obsolete commentary about an
22085 interface that was deleted long ago. Fix typos in the description
22086 of arguments.
22087
22088 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
22089 to changes in oldXMenu/XMenu.h from 2011-04-16.
22090 <menu_help_message, prev_menu_help_message>: Constify.
22091 (IT_menu_make_room): menu->help_text is now `const char **';
22092 adjust.
22093
22094 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
22095 to changes in oldXMenu/XMenu.h from 2011-04-16.
22096 (struct XMenu): Declare `help_text' `const char **'.
22097
22098 * xfaces.c <Qunspecified>: Make extern again.
22099
22100 * syntax.c: Include sys/types.h before including regex.h, as
22101 required by POSIX.
22102
22103 * doc.c (get_doc_string): Improve the format passed to `error'.
22104
22105 * doprnt.c (doprnt): Improve commentary.
22106
22107 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
22108
22109 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
22110 them with etags.
22111
22112 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
22113 changes in globals.h immediately force recompilation.
22114 (TAGS): Depend on $(CURDIR)/m/intel386.h and
22115 $(CURDIR)/s/ms-w32.h.
22116 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
22117
22118 * character.c (Fchar_direction): Function deleted.
22119 (syms_of_character): Don't defsubr it.
22120 <char-direction-table>: Deleted.
22121
22122 2011-04-23 Eli Zaretskii <eliz@gnu.org>
22123
22124 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
22125 * doprnt.c: Include limits.h.
22126 (SIZE_MAX): New macro.
22127 (doprnt): Return a size_t value. 2nd arg is now size_t.
22128 Many local variables are now size_t instead of int or unsigned.
22129 Improve overflow protection. Support `l' modifier for integer
22130 conversions. Support %l conversion. Don't assume an EMACS_INT
22131 argument for integer conversions and for %c.
22132
22133 * lisp.h (doprnt): Restore prototype.
22134
22135 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
22136 $(SRC)/character.h.
22137
22138 * Makefile.in (base_obj): Add back doprnt.o.
22139
22140 * deps.mk (doprnt.o): Add back prerequisites.
22141 (callint.o): Depend on character.h.
22142
22143 * eval.c (internal_lisp_condition_case): Include the handler
22144 representation in the error message.
22145 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
22146 when breaking from the loop.
22147
22148 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
22149
22150 * callint.c (Fcall_interactively): When displaying error message
22151 about invalid control letter, pass the character's codepoint, not
22152 a pointer to its multibyte form. Improve display of the character
22153 in octal and display also its hex code.
22154
22155 * character.c (char_string): Use %x to display the (unsigned)
22156 codepoint of an invalid character, to avoid displaying a bogus
22157 negative value.
22158
22159 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
22160 `error', not SYMBOL_NAME itself.
22161
22162 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
22163 character arguments to `error'.
22164
22165 * charset.c (check_iso_charset_parameter): Fix incorrect argument
22166 to `error' in error message about FINAL_CHAR argument. Make sure
22167 FINAL_CHAR is a character, and use %c when it is passed as
22168 argument to `error'.
22169
22170 2011-04-23 Eli Zaretskii <eliz@gnu.org>
22171
22172 * s/ms-w32.h (localtime): Redirect to sys_localtime.
22173
22174 * w32.c: Include <time.h>.
22175 (sys_localtime): New function.
22176
22177 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
22178
22179 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
22180
22181 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
22182
22183 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
22184
22185 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
22186 zombies (Bug#8467).
22187
22188 2011-04-19 Eli Zaretskii <eliz@gnu.org>
22189
22190 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
22191 gl_state.e_property when gl_state.object is Qt.
22192
22193 * insdel.c (make_gap_larger): Remove limitation of buffer size
22194 to <= INT_MAX.
22195
22196 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
22197
22198 * xdisp.c (lookup_glyphless_char_display)
22199 (produce_glyphless_glyph): Handle cons cell entry in
22200 glyphless-char-display.
22201 (Vglyphless_char_display): Document it.
22202
22203 * term.c (produce_glyphless_glyph): Handle cons cell entry in
22204 glyphless-char-display.
22205
22206 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
22207
22208 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
22209
22210 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
22211
22212 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
22213 definition for no-X builds.
22214
22215 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
22216
22217 Static checks with GCC 4.6.0 and non-default toolkits.
22218
22219 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
22220
22221 * process.c (keyboard_bit_set): Define only if SIGIO.
22222 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
22223 (send_process): Repair possible setjmp clobbering.
22224
22225 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
22226
22227 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
22228
22229 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
22230
22231 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
22232 Define only if needed.
22233
22234 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
22235 by pacifying GCC about it. Maybe it's time to retire it?
22236 * xfaces.c (USG, __TIMEVAL__): Likewise.
22237
22238 * dispextern.h (struct redisplay_interface): Rename param
22239 to avoid shadowing.
22240 * termhooks.h (struct terminal): Likewise.
22241 * xterm.c (xembed_send_message): Likewise.
22242
22243 * insdel.c (make_gap_smaller): Define only if
22244 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
22245
22246 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
22247 it.
22248
22249 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
22250 so that we aren't warned about unused symbols.
22251
22252 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
22253
22254 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
22255
22256 * xfns.c (x_real_positions): Mark locals as initialized.
22257
22258 * xmenu.c (xmenu_show): Don't use uninitialized vars.
22259
22260 * xterm.c: Fix problems found by static analysis with other toolkits.
22261 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
22262 (x_dispatch_event): Declare static if USE_GTK, and
22263 define if USE_GTK || USE_X_TOOLKIT.
22264 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
22265 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
22266 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
22267 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
22268
22269 * xmenu.c (menu_help_callback): Pointer type fixes.
22270 Use const pointers when pointing at readonly data. Avoid pointer
22271 signedness clashes.
22272 (FALSE): Remove unused macro.
22273 (update_frame_menubar): Remove unused decl.
22274
22275 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
22276
22277 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
22278 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
22279 (single_menu_item): Rename local to avoid shadowing.
22280
22281 * keyboard.c (make_lispy_event): Remove unused local var.
22282
22283 * frame.c, frame.h (x_get_resource_string): Bring this back, but
22284 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
22285
22286 * bitmaps: Change bitmaps from unsigned char back to the X11
22287 compatible char. Avoid the old compiler warnings about
22288 out-of-range initializers by using, for example, '\xab' rather
22289 than 0xab.
22290
22291 * xgselect.c (xgselect_initialize): Check vs interface
22292 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
22293
22294 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
22295
22296 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
22297 to read-only memory.
22298
22299 * fns.c (vector): Remove; this old hack is no longer needed.
22300
22301 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
22302 Remove unused var.
22303 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
22304
22305 * xrdb.c (x_load_resources): Omit unused local.
22306
22307 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
22308 (x_window): Rename locals to avoid shadowing.
22309 (USG): Use the kludged USG macro, to pacify gcc.
22310
22311 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
22312 (x_term_init): Remove local to avoid shadowing.
22313
22314 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
22315
22316 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
22317 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
22318
22319 2011-04-16 Eli Zaretskii <eliz@gnu.org>
22320
22321 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
22322
22323 Fix regex.c, syntax.c and friends for buffers > 2GB.
22324 * syntax.h (struct gl_state_s): Declare character position members
22325 EMACS_INT.
22326
22327 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
22328
22329 * textprop.c (verify_interval_modification, interval_of):
22330 Declare arguments EMACS_INT.
22331
22332 * intervals.c (adjust_intervals_for_insertion): Declare arguments
22333 EMACS_INT.
22334
22335 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
22336
22337 * indent.c (Fvertical_motion): Local variable it_start is now
22338 EMACS_INT.
22339
22340 * regex.c (re_match, re_match_2, re_match_2_internal)
22341 (bcmp_translate, regcomp, regexec, print_double_string)
22342 (group_in_compile_stack, re_search, re_search_2, regex_compile)
22343 (re_compile_pattern, re_exec): Declare arguments and local
22344 variables `size_t' and `ssize_t' and return values `regoff_t', as
22345 appropriate.
22346 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
22347 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
22348 <compile_stack_type>: `size' and `avail' are now `size_t'.
22349
22350 * regex.h <regoff_t>: Use ssize_t, not int.
22351 (re_search, re_search_2, re_match, re_match_2): Arguments that
22352 specify buffer/string position and length are now ssize_t and
22353 size_t. Return type is regoff_t.
22354
22355 2011-04-16 Ben Key <bkey76@gmail.com>
22356
22357 * nsfont.m: Fixed bugs in ns_get_family and
22358 ns_descriptor_to_entity that were caused by using free to
22359 deallocate memory blocks that were allocated by xmalloc (via
22360 xstrdup). This caused Emacs to crash when compiled with
22361 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
22362 --enable-checking=xmallocoverrun). xfree is now used to
22363 deallocate these memory blocks.
22364
22365 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
22366
22367 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
22368
22369 emacs_write: Accept and return EMACS_INT for sizes.
22370 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
22371 et seq.
22372 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
22373 Accept and return EMACS_INT.
22374 (emacs_gnutls_write): Return the number of bytes written on
22375 partial writes.
22376 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
22377 (emacs_read, emacs_write): Remove check for negative size, as the
22378 Emacs source code has been audited now.
22379 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
22380 (emacs_read, emacs_write): Use it.
22381 * process.c (send_process): Adjust to the new signatures of
22382 emacs_write and emacs_gnutls_write. Do not attempt to store
22383 a byte offset into an 'int'; it might overflow.
22384 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
22385
22386 * sound.c: Don't assume sizes fit in 'int'.
22387 (struct sound_device.period_size, alsa_period_size):
22388 Return EMACS_INT, not int.
22389 (struct sound_device.write, vox_write, alsa_write):
22390 Accept EMACS_INT, not int.
22391 (wav_play, au_play): Use EMACS_INT to store sizes and to
22392 record read return values.
22393
22394 2011-04-15 Ben Key <bkey76@gmail.com>
22395
22396 * keyboard.c (Qundefined): Don't declare static since it is used
22397 in nsfns.m.
22398 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
22399 static since they are used in nsfont.m.
22400
22401 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
22402
22403 * process.c (Qprocessp): Don't declare static.
22404 * lisp.h (Qprocessp): Declare again.
22405
22406 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
22407
22408 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
22409
22410 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
22411
22412 Improve C-level modularity by making more things 'static'.
22413
22414 Don't publish debugger-only interfaces to other modules.
22415 * lisp.h (safe_debug_print, debug_output_compilation_hack):
22416 (verify_bytepos, count_markers): Move decls to the only modules
22417 that need them.
22418 * region-cache.h (pp_cache): Likewise.
22419 * window.h (check_all_windows): Likewise.
22420 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
22421
22422 * sysdep.c (croak): Now static, if
22423 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
22424 * syssignal.h (croak): Declare only if not static.
22425
22426 * alloc.c (refill_memory_reserve): Now static if
22427 !defined REL_ALLOC || defined SYSTEM_MALLOC.
22428 * lisp.h (refill_memory_reserve): Declare only if not static.
22429
22430 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
22431 Define only if USE_LUCID.
22432
22433 * xrdb.c (x_customization_string, x_rm_string): Now static.
22434
22435 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
22436 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
22437
22438 * xdisp.c (draw_row_with_mouse_face): Now static.
22439 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
22440
22441 * window.h (check_all_windows): Mark externally visible.
22442
22443 * window.c (window_deletion_count): Now static.
22444
22445 * undo.c: Make symbols static if they're not exported.
22446 (last_undo_buffer, last_boundary_position, pending_boundary):
22447 Now static.
22448
22449 * textprop.c (interval_insert_behind_hooks): Now static.
22450 (interval_insert_in_front_hooks): Likewise.
22451
22452 * term.c: Make symbols static if they're not exported.
22453 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
22454 (max_frame_lines, tty_set_terminal_modes):
22455 (tty_reset_terminal_modes, tty_turn_off_highlight):
22456 (get_tty_terminal): Now static.
22457 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
22458 * termhooks.h (term_mouse_moveto): Do not declare if
22459 HAVE_WINDOW_SYSTEM.
22460 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
22461 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
22462
22463 * sysdep.c: Make symbols static if they're not exported.
22464 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
22465 Now static.
22466 (sigprocmask_set, full_mask): Remove; unused.
22467 (wait_debugging): Mark as visible.
22468 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
22469 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
22470
22471 * syntax.c (syntax_temp): Define only if !__GNUC__.
22472
22473 * sound.c (current_sound_device, current_sound): Now static.
22474
22475 * search.c (searchbufs, searchbuf_head): Now static.
22476
22477 * scroll.c (scroll_cost): Remove; unused.
22478 * dispextern.h (scroll_cost): Remove decl.
22479
22480 * region-cache.h (pp_cache): Mark as externally visible.
22481
22482 * process.c: Make symbols static if they're not exported.
22483 (process_tick, update_tick, create_process, chan_process):
22484 (Vprocess_alist, proc_buffered_char, datagram_access):
22485 (fd_callback_data, send_process_frame, process_sent_to): Now static.
22486 (deactivate_process): Mark defn as static, as well as decl.
22487 * lisp.h (create_process): Remove decl.
22488 * process.h (chan_process, Vprocess_alist): Remove decls.
22489
22490 * print.c: Make symbols static if they're not exported.
22491 (print_depth, new_backquote_output, being_printed, print_buffer):
22492 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
22493 (print_interval, print_number_index, initial_stderr_stream):
22494 Now static.
22495 * lisp.h (Fprinc): Remove decl.
22496 (debug_output_compilation_hack): Mark as externally visible.
22497
22498 * sysdep.c (croak): Move decl from here to syssignal.h.
22499 * syssignal.h (croak): Put it here, so the API can be checked when
22500 'croak' is called from dissociate_if_controlling_tty.
22501
22502 * minibuf.c: Make symbols static if they're not exported.
22503 (minibuf_save_list, choose_minibuf_frame): Now static.
22504 * lisp.h (choose_minibuf_frame): Remove decl.
22505
22506 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
22507
22508 * lread.c: Make symbols static if they're not exported.
22509 (read_objects, initial_obarray, oblookup_last_bucket_number):
22510 Now static.
22511 (make_symbol): Remove; unused.
22512 * lisp.h (initial_obarray, make_symbol): Remove decls.
22513
22514 * keyboard.c: Make symbols static if they're not exported.
22515 (single_kboard, recent_keys_index, total_keys, recent_keys):
22516 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
22517 (this_single_command_key_start, echoing, last_auto_save):
22518 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
22519 (command_loop, echo_now, keyboard_init_hook, help_char_p):
22520 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
22521 (Vlispy_mouse_stem, double_click_count):
22522 Now static.
22523 (force_auto_save_soon): Define only if SIGDANGER.
22524 (ignore_mouse_drag_p): Now static if
22525 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
22526 (print_help): Remove; unused.
22527 (stop_character, last_timer_event): Mark as externally visible.
22528 * keyboard.h (ignore_mouse_drag_p): Declare only if
22529 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
22530 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
22531 * lisp.h (echoing): Remove decl.
22532 (force_auto_save_soon): Declare only if SIGDANGER.
22533 * xdisp.c (redisplay_window): Simplify code, to make it more
22534 obvious that ignore_mouse_drag_p is not accessed if !defined
22535 USE_GTK && !defined HAVE_NS.
22536
22537 * intervals.c: Make symbols static if they're not exported.
22538 (merge_properties_sticky, merge_interval_right, delete_interval):
22539 Now static.
22540 * intervals.h (merge_interval_right, delete_interval): Remove decls.
22541
22542 * insdel.c: Make symbols static if they're not exported.
22543 However, leave prepare_to_modify_buffer alone. It's never
22544 called from outside this function, but that appears to be a bug.
22545 (combine_after_change_list, combine_after_change_buffer):
22546 (adjust_after_replace, signal_before_change): Now static.
22547 (adjust_after_replace_noundo): Remove; unused.
22548 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
22549 (signal_before_change): Remove decls.
22550
22551 * indent.c (val_compute_motion, val_vmotion): Now static.
22552
22553 * image.c: Make symbols static if they're not exported.
22554 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
22555 if USE_GTK.
22556 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
22557 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
22558
22559 * fringe.c (standard_bitmaps): Now static.
22560 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
22561
22562 * frame.c: Make symbols static if they're not exported.
22563 (x_report_frame_params, make_terminal_frame): Now static.
22564 (get_frame_param): Now static, unless HAVE_NS.
22565 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
22566 (x_get_resource_string): Remove; not used.
22567 * frame.h (make_terminal_frame, x_report_frame_params):
22568 (x_get_resource_string); Remove decls.
22569 (x_fullscreen_adjust): Declare only if WINDOWSNT.
22570 * lisp.h (get_frame_param): Declare only if HAVE_NS.
22571
22572 * font.c, fontset.c: Make symbols static if they're not exported.
22573 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
22574 (FACE_SUITABLE_FOR_CHAR_P): Use it.
22575 * font.c (font_close_object): Now static.
22576 * font.h (font_close_object): Remove.
22577 * fontset.c (FONTSET_OBJLIST): Remove.
22578 (free_realized_fontset) #if-0 the body, which does nothing.
22579 (face_suitable_for_char_p): #if-0, as it's never called.
22580 * fontset.h (face_suitable_for_char_p): Remove decl.
22581 * xfaces.c (face_at_string_position):
22582 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
22583 since 0 is always ASCII.
22584
22585 * fns.c (weak_hash_tables): Now static.
22586
22587 * fileio.c: Make symbols static if they're not exported.
22588 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
22589 (Vwrite_region_annotation_buffers): Now static.
22590
22591 * eval.c: Make symbols static if they're not exported.
22592 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
22593 * lisp.h (backtrace_list): Remove decl.
22594
22595 * emacs.c: Make symbols static if they're not exported.
22596 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
22597 (fatal_error_code, fatal_error_signal_hook, standard_args):
22598 Now static.
22599 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
22600 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
22601 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
22602 * lisp.h (fatal_error_signal_hook): Remove decl.
22603 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
22604
22605 * editfns.c: Move a (normally-unused) function to its only use.
22606 * editfns.c, lisp.h (get_operating_system_release): Remove.
22607 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
22608 worth the hassle of breaking this out.
22609
22610 * xterm.c: Make symbols static if they're not exported.
22611 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
22612 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
22613 (x_destroy_window, x_delete_display):
22614 Now static.
22615 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
22616 (x_mouse_leave): Remove; unused.
22617 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
22618 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
22619 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
22620 Remove decls.
22621 (x_mouse_leave): Declare only if WINDOWSNT.
22622 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
22623 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
22624 USE_X_TOOLKIT.
22625
22626 * ftxfont.c: Make symbols static if they're not exported.
22627 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
22628 HAVE_FREETYPE.
22629 * font.h (ftxfont_driver): Likewise.
22630
22631 * xfns.c: Make symbols static if they're not exported.
22632 (x_last_font_name, x_display_info_for_name):
22633 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
22634 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
22635 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
22636 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
22637 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
22638 (last_show_tip_args): Now static.
22639 (xic_defaut_fontset, xic_create_fontsetname): Define only if
22640 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
22641 (x_screen_planes): Remove; unused.
22642 * dispextern.h (x_screen_planes): Remove decl.
22643
22644 * dispnew.c: Make symbols static if they're not exported.
22645 * dispextern.h (redraw_garbaged_frames, scrolling):
22646 (increment_row_positions): Remove.
22647 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
22648 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
22649 Now static.
22650 (redraw_garbaged_frames): Remove; unused.
22651
22652 * xfaces.c: Make symbols static if they're not exported.
22653 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
22654 Remove decls.
22655 * xterm.h (defined_color): Remove decls.
22656 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
22657 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
22658 (menu_face_changed_default, defined_color, free_realized_face):
22659 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
22660 (ascii_face_of_lisp_face): Remove; unused.
22661
22662 * xdisp.c: Make symbols static if they're not exported.
22663 * dispextern.h (scratch_glyph_row, window_box_edges):
22664 (glyph_to_pixel_coords, set_cursor_from_row):
22665 (get_next_display_element, set_iterator_to_next):
22666 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
22667 (show_mouse_face): Remove decls
22668 * frame.h (message_buf_print): Likewise.
22669 * lisp.h (pop_message, set_message, check_point_in_composition):
22670 Likewise.
22671 * xterm.h (set_vertical_scroll_bar): Likewise.
22672 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
22673 (message_buf_print, scratch_glyph_row, displayed_buffer):
22674 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
22675 (get_next_display_element, show_mouse_face, window_box_edges):
22676 (frame_to_window_pixel_xy, check_point_in_composition):
22677 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
22678 (glyph_to_pixel_coords): Remove; unused.
22679
22680 * dired.c (file_name_completion): Now static.
22681
22682 * dbusbind.c (xd_in_read_queued_messages): Now static.
22683
22684 * lisp.h (circular_list_error, FOREACH): Remove; unused.
22685 * data.c (circular_list_error): Remove.
22686
22687 * commands.h (last_point_position, last_point_position_buffer):
22688 (last_point_position_window): Remove decls.
22689 * keyboard.c: Make these variables static.
22690
22691 * coding.h (coding, code_convert_region, encode_coding_gap):
22692 Remove decls.
22693 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
22694 (iso_code_class, detect_coding, code_convert_region): Now static.
22695 (encode_coding_gap): Remove; unused.
22696
22697 * chartab.c (chartab_chars, chartab_bits): Now static.
22698
22699 * charset.h (charset_iso_8859_1): Remove decl.
22700 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
22701 Now static.
22702
22703 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
22704 * ccl.c (Vccl_program_table): Now static.
22705 (check_ccl_update): Remove; unused.
22706
22707 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
22708 * category.h: ... from here.
22709 * category.c (check_category_table, set_category_set): Now static.
22710
22711 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
22712 * lisp.h: Remove these decls.
22713
22714 * buffer.c (buffer_count): Remove unused var.
22715
22716 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
22717 so that it's not optimized away.
22718 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
22719 * dispextern.h (bidi_dump_cached_states): Remove, since it's
22720 exported only to the debugger.
22721
22722 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
22723 * atimer.h (run_all_atimers): Remove; not exported.
22724
22725 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
22726 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
22727 was inaccessible from Lisp.
22728 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
22729 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
22730
22731 alloc.c: Import and export fewer symbols, and remove unused items.
22732 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
22733 is defined.
22734 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
22735 it's not optimized away by whole-program optimization.
22736 (message_enable_multibyte, free_misc): Remove.
22737 (catchlist, handlerlist, mark_backtrace):
22738 Declare only if BYTE_MARK_STACK.
22739 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
22740 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
22741 (message_enable_multibyte): Remove decl.
22742 (free_misc, interval_free_list, float_block, float_block_index):
22743 (n_float_blocks, float_free_list, cons_block, cons_block_index):
22744 (cons_free_list, last_marked_index):
22745 Now static.
22746 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
22747 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
22748 (mark_backtrace): Define only if BYTE_MARK_STACK.
22749 * xdisp.c (message_enable_multibyte): Now static.
22750
22751 Declare Lisp_Object Q* variables to be 'static' if not exported.
22752 This makes it easier for human readers (and static analyzers)
22753 to see whether these variables are used from other modules.
22754 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
22755 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
22756 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
22757 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
22758 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
22759 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
22760 * xmenu.c, xselect.c:
22761 Declare Q* vars static if they are not used in other modules.
22762 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
22763 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
22764 Remove decls of unexported vars.
22765 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
22766
22767 * lisp.h (DEFINE_FUNC): Make sname 'static'.
22768
22769 Make Emacs functions such as Fatom 'static' by default.
22770 This makes it easier for human readers (and static analyzers)
22771 to see whether these functions can be called from other modules.
22772 DEFUN now defines a static function. To make the function external
22773 so that it can be used in other C modules, use the new macro DEFUE.
22774 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
22775 (Finit_image_library):
22776 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
22777 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
22778 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
22779 Remove decls, since these functions are now static.
22780 (Funintern, Fget_internal_run_time): New decls, since these functions
22781 were already external.
22782
22783 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
22784 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
22785 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
22786 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
22787 * keyboard.c, keymap.c, lread.c:
22788 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
22789 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
22790 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
22791 Mark functions with DEFUE instead of DEFUN,
22792 if they are used in other modules.
22793 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
22794 decls for now-static functions.
22795 * buffer.h (Fdelete_overlay): Remove decl.
22796 * callproc.c (Fgetenv_internal): Mark as internal.
22797 * composite.c (Fremove_list_of_text_properties): Remove decl.
22798 (Fcomposition_get_gstring): New forward static decl.
22799 * composite.h (Fcomposite_get_gstring): Remove decl.
22800 * dired.c (Ffile_attributes): New forward static decl.
22801 * doc.c (Fdocumntation_property): New forward static decl.
22802 * eval.c (Ffetch_bytecode): New forward static decl.
22803 (Funintern): Remove extern decl; now in .h file where it belongs.
22804 * fileio.c (Fmake_symbolic_link): New forward static decl.
22805 * image.c (Finit_image_library): New forward static decl.
22806 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
22807 * intervals.h (Fprevious_property_change):
22808 (Fremove_list_of_text_properties): Remove decls.
22809 * keyboard.c (Fthis_command_keys): Remove decl.
22810 (Fcommand_execute): New forward static decl.
22811 * keymap.c (Flookup_key): New forward static decl.
22812 (Fcopy_keymap): Now static.
22813 * keymap.h (Flookup_key): Remove decl.
22814 * process.c (Fget_process): New forward static decl.
22815 (Fprocess_datagram_address): Mark as internal.
22816 * syntax.c (Fsyntax_table_p): New forward static decl.
22817 (skip_chars): Remove duplicate decl.
22818 * textprop.c (Fprevious_property_change): New forward static decl.
22819 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
22820 Now internal.
22821 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
22822 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
22823
22824 * editfns.c (Fformat): Remove unreachable code.
22825
22826 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
22827
22828 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
22829 change. (Bug#8496)
22830
22831 2011-04-13 Eli Zaretskii <eliz@gnu.org>
22832
22833 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
22834 when at ZV. (Bug#8487)
22835
22836 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
22837
22838 * charset.c (Fclear_charset_maps): Use xfree instead of free.
22839 (Bug#8437)
22840 * keyboard.c (parse_tool_bar_item): Likewise.
22841 * sound.c (sound_cleanup, alsa_close): Likewise.
22842 * termcap.c (tgetent): Likewise.
22843 * xfns.c (x_default_font_parameter): Likewise.
22844 * xsettings.c (read_and_apply_settings): Likewise.
22845
22846 * alloc.c (overrun_check_malloc, overrun_check_realloc)
22847 (overrun_check_free): Protoize.
22848
22849 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
22850
22851 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
22852 since callers should never pass a negative size.
22853 Change the signature to match that of plain 'read' and 'write'; see
22854 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
22855 * lisp.h: Update prototypes of emacs_write and emacs_read.
22856
22857 2011-04-11 Eli Zaretskii <eliz@gnu.org>
22858
22859 * xdisp.c (redisplay_window): Don't try to determine the character
22860 position of the scroll margin if the window start point w->startp
22861 is outside the buffer's accessible region. (Bug#8468)
22862
22863 2011-04-10 Eli Zaretskii <eliz@gnu.org>
22864
22865 Fix write-region and its subroutines for buffers > 2GB.
22866 * fileio.c (a_write, e_write): Modify declaration of arguments and
22867 local variables to support buffers larger than 2GB.
22868 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
22869
22870 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
22871 argument, local variables, and return value.
22872
22873 * lisp.h: Update prototypes of emacs_write and emacs_read.
22874
22875 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
22876
22877 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
22878
22879 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
22880
22881 Fix more problems found by GCC 4.6.0's static checks.
22882
22883 * xdisp.c (vmessage): Use a better test for character truncation.
22884
22885 * charset.c (load_charset_map): <, not <=, for optimization,
22886 and to avoid potential problems with integer overflow.
22887 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
22888 * casetab.c (set_identity, shuffle): Likewise.
22889 * editfns.c (Fformat): Likewise.
22890 * syntax.c (skip_chars): Likewise.
22891
22892 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
22893 This also lets GCC 4.6.0 generate slightly better loop code.
22894
22895 * callint.c (Fcall_interactively): <, not <=, for optimization.
22896 (Fcall_interactively): Count the number of arguments produced,
22897 not the number of arguments given. This is simpler and lets GCC
22898 4.6.0 generate slightly better code.
22899
22900 * ftfont.c: Distingish more carefully between FcChar8 and char.
22901 The previous code passed unsigned char * to a functions like
22902 strlen and xstrcasecmp that expect char *, which does not
22903 conform to the C standard.
22904 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
22905 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
22906 char * when the C standard requires it.
22907
22908 * keyboard.c (read_char): Remove unused var.
22909
22910 * eval.c: Port to Windows vsnprintf (Bug#8435).
22911 Include <limits.h>.
22912 (SIZE_MAX): Define if the headers do not.
22913 (verror): Do not give up if vsnprintf returns a negative count.
22914 Instead, grow the buffer. This ports to Windows vsnprintf, which
22915 does not conform to C99. Problem reported by Eli Zaretskii.
22916 Also, simplify the allocation scheme, by avoiding the need for
22917 calling realloc, and removing the ALLOCATED variable.
22918
22919 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
22920
22921 Remove invocations of doprnt, as Emacs now uses vsnprintf.
22922 But keep the doprint source code for now, as we might revamp it
22923 and use it again (Bug#8435).
22924 * lisp.h (doprnt): Remove.
22925 * Makefile.in (base_obj): Remove doprnt.o.
22926 * deps.mk (doprnt.o): Remove.
22927
22928 error: Print 32- and 64-bit integers portably (Bug#8435).
22929 Without this change, on typical 64-bit hosts error ("...%d...", N)
22930 was used to print both 32- and 64-bit integers N, which relied on
22931 undefined behavior.
22932 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
22933 * lisp.h (error, verror): Mark as printf-like functions.
22934 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
22935 Report overflow in size calculations when allocating printf buffer.
22936 Do not truncate output string at its first null byte.
22937 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
22938 Truncate the output at a character boundary, since vsnprintf does not
22939 do that.
22940 * charset.c (check_iso_charset_parameter): Convert internal
22941 character to string before calling 'error', since %c now has the
22942 printf meaning.
22943 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
22944 overflow when computing char to be passed to 'error'. Do not
22945 pass Lisp_Object to 'error'; pass the integer instead.
22946 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
22947 formatted with plain %d.
22948
22949 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
22950
22951 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
22952
22953 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
22954
22955 * xterm.c (x_catch_errors): Remove duplicate declaration.
22956
22957 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
22958
22959 * xdisp.c, lisp.h (message_nolog): Remove; unused.
22960
22961 2011-04-10 Jim Meyering <meyering@redhat.com>
22962
22963 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
22964 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
22965 return ssize_t not "int", and use size_t as the buffer length.
22966 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
22967 * gnutls.h: Update declarations.
22968 * process.c (read_process_output): Use ssize_t, to match.
22969 (send_process): Likewise.
22970
22971 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
22972
22973 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
22974
22975 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
22976
22977 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
22978 Use unsigned char, to match FcChar8 type definition.
22979
22980 * xterm.c (handle_one_xevent):
22981 * xmenu.c (create_and_show_popup_menu):
22982 * xselect.c (x_decline_selection_request)
22983 (x_reply_selection_request): Avoid type-punned deref of X events.
22984
22985 2011-04-09 Eli Zaretskii <eliz@gnu.org>
22986
22987 Fix some uses of `int' instead of EMACS_INT.
22988 * search.c (string_match_1, fast_string_match)
22989 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
22990 (scan_buffer, find_next_newline_no_quit)
22991 (find_before_next_newline, search_command, Freplace_match)
22992 (Fmatch_data): Make some `int' variables be EMACS_INT.
22993
22994 * xdisp.c (display_count_lines): 3rd argument and return value now
22995 EMACS_INT. All callers changed.
22996 (pint2hrstr): Last argument is now EMACS_INT.
22997
22998 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
22999 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
23000 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
23001 (decode_coding_utf_16, decode_coding_emacs_mule)
23002 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
23003 (decode_coding_ccl, decode_coding_charset)
23004 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
23005 (decode_coding_iso_2022, decode_coding_emacs_mule)
23006 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
23007 <char_offset, last_offset>: Declare EMACS_INT.
23008 (encode_coding_utf_8, encode_coding_utf_16)
23009 (encode_coding_emacs_mule, encode_invocation_designation)
23010 (encode_designation_at_bol, encode_coding_iso_2022)
23011 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
23012 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
23013 Declare EMACS_INT.
23014 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
23015 (encode_invocation_designation): Last argument P_NCHARS is now
23016 EMACS_INT.
23017 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
23018 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
23019
23020 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
23021 All users changed.
23022
23023 * ccl.c (Fccl_execute_on_string): Declare some variables
23024 EMACS_INT.
23025
23026 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
23027
23028 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
23029
23030 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
23031
23032 * process.c (Fformat_network_address): Doc fix.
23033
23034 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
23035
23036 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
23037
23038 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
23039
23040 * keyboard.c (read_char): Call Lisp function help-form-show,
23041 instead of using internal_with_output_to_temp_buffer.
23042 (Qhelp_form_show): New var.
23043 (syms_of_keyboard): Use DEFSYM macro.
23044
23045 * print.c (internal_with_output_to_temp_buffer): Function deleted.
23046
23047 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
23048
23049 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
23050
23051 * process.c (Flist_processes): Remove to Lisp.
23052 (list_processes_1): Delete.
23053
23054 2011-04-06 Eli Zaretskii <eliz@gnu.org>
23055
23056 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
23057
23058 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
23059
23060 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
23061
23062 Fix more problems found by GCC 4.6.0's static checks.
23063
23064 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
23065
23066 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
23067
23068 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
23069
23070 * xdisp.c (vmessage): Mark as a printf-like function.
23071
23072 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
23073
23074 * sound.c (sound_warning): Don't crash if arg contains a printf format.
23075
23076 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
23077 printf-like functions.
23078 (tiff_load): Add casts to remove these marks before passing them
23079 to system-supplied API.
23080
23081 * eval.c (Fsignal): Remove excess argument to 'fatal'.
23082
23083 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
23084 This avoids several warnings with gcc -Wstrict-overflow.
23085 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
23086 directly, rather than having caller test rule sign. This avoids
23087 some unnecessary tests.
23088 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
23089 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
23090 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
23091
23092 * xfont.c (xfont_text_extents): Remove var that was set but not used.
23093 (xfont_open): Avoid unnecessary tests.
23094
23095 * composite.c (composition_gstring_put_cache): Use unsigned integer.
23096
23097 * composite.h, composite.c (composition_gstring_put_cache):
23098 Use EMACS_INT, not int, for length.
23099
23100 * composite.h (COMPOSITION_DECODE_REFS): New macro,
23101 breaking out part of COMPOSITION_DECODE_RULE.
23102 (COMPOSITION_DECODE_RULE): Use it.
23103 * composite.c (get_composition_id): Remove unused local vars,
23104 by using the new macro.
23105
23106 * textprop.c (set_text_properties_1): Change while to do-while,
23107 since the condition is always true at first.
23108
23109 * intervals.c (graft_intervals_into_buffer): Mark var as used.
23110 (interval_deletion_adjustment): Return unsigned value.
23111 All uses changed.
23112
23113 * process.c (list_processes_1, create_pty, read_process_output):
23114 (exec_sentinel): Remove vars that were set but not used.
23115 (create_pty): Remove unnecessary "volatile"s.
23116 (Fnetwork_interface_info): Avoid possibility of int overflow.
23117 (read_process_output): Do adaptive read buffering even if carryover.
23118 (read_process_output): Simplify nbytes computation if buffered.
23119
23120 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
23121
23122 * syntax.c (scan_words): Remove var that was set but not used.
23123 (update_syntax_table): Use unsigned instead of int.
23124
23125 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
23126 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
23127 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
23128
23129 * print.c (print_error_message): Avoid int overflow.
23130
23131 * font.c (font_list_entities): Redo for clarity,
23132 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
23133
23134 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
23135 (font_score): Avoid potential overflow in diff calculation.
23136
23137 * fns.c (substring_both): Remove var that is set but not used.
23138 (sxhash): Redo loop for clarity and to avoid wraparound warning.
23139
23140 * eval.c (funcall_lambda): Rename local to avoid shadowing.
23141
23142 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
23143 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
23144 can always succeed if overflow has undefined behavior.
23145
23146 * search.c (boyer_moore, wordify): Remove vars set but not used.
23147 (wordify): Omit three unnecessary tests.
23148
23149 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
23150 All callers changed. This avoids the need for an unused var.
23151
23152 * casefiddle.c (casify_region): Remove var that is set but not used.
23153
23154 * dired.c (file_name_completion): Remove var that is set but not used.
23155
23156 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
23157
23158 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
23159 (Finsert_file_contents): Remove unnecessary code checking fd.
23160
23161 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
23162 Check for integer overflow on size calculations.
23163
23164 * buffer.c (Fprevious_overlay_change): Remove var that is set
23165 but not used.
23166
23167 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
23168 Remove vars that are set but not used.
23169 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
23170 (timer_check_2): Mark vars as initialized.
23171
23172 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
23173
23174 * image.c (lookup_image): Remove var that is set but not used.
23175 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
23176
23177 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
23178 that are set but not used.
23179
23180 * xfns.c (make_invisible_cursor): Don't return garbage
23181 if XCreateBitmapFromData fails (Bug#8410).
23182
23183 * xselect.c (x_get_local_selection, x_handle_property_notify):
23184 Remove vars that are set but not used.
23185
23186 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
23187 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
23188
23189 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
23190 Remove var that is set but not used.
23191 (scroll_bar_windows_size): Now size_t, not int.
23192 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
23193 Check for overflow.
23194
23195 * xfaces.c (realize_named_face): Remove vars that are set but not used.
23196 (map_tty_color) [!defined MSDOS]: Likewise.
23197
23198 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
23199
23200 * coding.c: Remove vars that are set but not used.
23201 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
23202 All callers changed.
23203 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
23204 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
23205 (decode_coding_charset): Remove vars that are set but not used.
23206
23207 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
23208 that is set but not used.
23209
23210 * print.c (print_object): Remove var that is set but not used.
23211
23212 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
23213 The gnulib version avoids calling malloc in the usual case,
23214 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
23215 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
23216 * filelock.c (current_lock_owner): Likewise.
23217 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
23218 * sysdep.c: Include allocator.h, careadlinkat.h.
23219 (emacs_no_realloc_allocator): New static constant.
23220 (emacs_readlink): New function.
23221 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
23222 ../lib/careadlinkat.h.
23223
23224 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
23225
23226 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
23227 first non-nil return value).
23228
23229 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
23230
23231 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
23232 if not defined (Bug#8403).
23233
23234 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
23235
23236 * xdisp.c (display_count_lines): Remove parameter `start',
23237 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
23238 (get_char_face_and_encoding): Remove parameter `multibyte_p',
23239 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
23240 (fill_stretch_glyph_string): Remove parameters `row' and `area',
23241 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
23242 and thereabouts. All callers changed.
23243 (get_per_char_metric): Remove parameter `f', unused since
23244 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
23245
23246 2011-04-02 Jim Meyering <meyering@redhat.com>
23247
23248 do not dereference NULL upon failed strdup
23249 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
23250 (ns_get_family): Likewise.
23251
23252 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
23253
23254 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
23255
23256 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
23257
23258 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
23259 later (Bug#8403).
23260
23261 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
23262
23263 Add lexical binding.
23264
23265 * window.c (Ftemp_output_buffer_show): New fun.
23266 (Fsave_window_excursion):
23267 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
23268
23269 * lread.c (lisp_file_lexically_bound_p): New function.
23270 (Fload): Bind Qlexical_binding.
23271 (readevalloop): Remove `evalfun' arg.
23272 Bind Qinternal_interpreter_environment.
23273 (Feval_buffer): Bind Qlexical_binding.
23274 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
23275 Mark as dynamic.
23276 (syms_of_lread): Declare `lexical-binding'.
23277
23278 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
23279
23280 * keyboard.c (eval_dyn): New fun.
23281 (menu_item_eval_property): Use it.
23282
23283 * image.c (parse_image_spec): Use Ffunctionp.
23284
23285 * fns.c (concat, mapcar1): Accept byte-code-functions.
23286
23287 * eval.c (Fsetq): Handle lexical vars.
23288 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
23289 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
23290 (FletX, Flet): Obey lexical binding.
23291 (Fcommandp): Handle closures.
23292 (Feval): New `lexical' arg.
23293 (eval_sub): New function extracted from Feval. Use it almost
23294 everywhere where Feval was used. Look up vars in lexical env.
23295 Handle closures.
23296 (Ffunctionp): Move from subr.el.
23297 (Ffuncall): Handle closures.
23298 (apply_lambda): Remove `eval_flags'.
23299 (funcall_lambda): Handle closures and new byte-code-functions.
23300 (Fspecial_variable_p): New function.
23301 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
23302 but without exporting it to Lisp.
23303
23304 * doc.c (Fdocumentation, store_function_docstring):
23305 * data.c (Finteractive_form): Handle closures.
23306
23307 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
23308 interactive spec.
23309
23310 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
23311 New byte-codes.
23312 (exec_byte_code): New function extracted from Fbyte_code to handle new
23313 calling convention for byte-code-functions. Add new byte-codes.
23314
23315 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
23316
23317 * alloc.c (Fmake_symbol): Init new `declared_special' field.
23318
23319 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
23320
23321 * xdisp.c (redisplay_internal): Fix prototype.
23322
23323 2011-03-31 Eli Zaretskii <eliz@gnu.org>
23324
23325 * xdisp.c (SCROLL_LIMIT): New macro.
23326 (try_scrolling): Use it when setting scroll_limit.
23327 Limit scrolling to 100 screen lines.
23328 (redisplay_window): Even when falling back on "recentering",
23329 position point in the window according to scroll-conservatively,
23330 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
23331
23332 (try_scrolling): When point is above the window, allow searching
23333 as far as scroll_max, or one screenful, to compute vertical
23334 distance from PT to the scroll margin position. This prevents
23335 try_scrolling from unnecessarily failing when
23336 scroll-conservatively is set to a value slightly larger than the
23337 window height. Clean up the case of PT below the margin at bottom
23338 of window: scroll_max can no longer be INT_MAX. When aggressive
23339 scrolling is in use, don't let point enter the opposite scroll
23340 margin as result of the scroll.
23341 (syms_of_xdisp) <scroll-conservatively>: Document the
23342 threshold of 100 lines for never-recentering scrolling.
23343
23344 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
23345
23346 * dispextern.h (move_it_by_lines):
23347 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
23348 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
23349 (message_log_check_duplicate): Remove parameters `prev_bol' and
23350 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
23351 (redisplay_internal): Remove parameter `preserve_echo_area',
23352 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
23353
23354 * indent.c (Fvertical_motion):
23355 * window.c (window_scroll_pixel_based, Frecenter):
23356 Don't pass `need_y_p' to `move_it_by_lines'.
23357
23358 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
23359
23360 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
23361 steal a few bits to be more compact.
23362 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
23363 Remove unneeded casts.
23364
23365 * bytecode.c (Fbyte_code): CAR and CDR can GC.
23366
23367 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
23368
23369 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
23370 binding" message (bug#7967).
23371
23372 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
23373
23374 Fix more problems found by GCC 4.6.0's static checks.
23375
23376 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
23377 Remove unused local var.
23378
23379 * editfns.c (Fmessage_box): Remove unused local var.
23380
23381 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
23382 (note_mode_line_or_margin_highlight, note_mouse_highlight):
23383 Omit unused local vars.
23384 * window.c (shrink_windows): Omit unused local var.
23385 * menu.c (digest_single_submenu): Omit unused local var.
23386 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
23387 Omit unused local var.
23388
23389 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
23390 Don't assume string length fits in int.
23391 (keyremap_step, read_key_sequence): Use size_t for sizes.
23392 (read_key_sequence): Don't check last_real_key_start redundantly.
23393
23394 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
23395 instead of alloca (Bug#8344).
23396
23397 * eval.c (Fbacktrace): Don't assume nargs fits in int.
23398 (Fbacktrace_frame): Don't assume nframes fits in int.
23399
23400 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
23401
23402 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
23403 concerns.
23404
23405 * term.c (produce_glyphless_glyph): Remove unnecessary test.
23406
23407 * cm.c (calccost): Turn while-do into do-while, for clarity.
23408
23409 * keyboard.c (syms_of_keyboard): Use the same style as later
23410 in this function when indexing through an array. This also
23411 works around GCC bug 48267.
23412
23413 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
23414
23415 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
23416
23417 * chartab.c (sub_char_table_ref_and_range): Redo for slight
23418 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
23419
23420 * keyboard.c, keyboard.h (num_input_events): Now size_t.
23421 This avoids undefined behavior on integer overflow, and is a bit
23422 more convenient anyway since it is compared to a size_t variable.
23423
23424 Variadic C functions now count arguments with size_t, not int.
23425 This avoids an unnecessary limitation on 64-bit machines, which
23426 caused (substring ...) to crash on large vectors (Bug#8344).
23427 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
23428 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
23429 All variadic functions and their callers changed accordingly.
23430 (struct gcpro.nvars): Now size_t, not int. All uses changed.
23431 * data.c (arith_driver, float_arith_driver): Likewise.
23432 * editfns.c (general_insert_function): Likewise.
23433 * eval.c (struct backtrace.nargs, interactive_p)
23434 (internal_condition_case_n, run_hook_with_args, apply_lambda)
23435 (funcall_lambda, mark_backtrace): Likewise.
23436 * fns.c (concat): Likewise.
23437 * frame.c (x_set_frame_parameters): Likewise.
23438 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
23439 0 if not found, not -1. All callers changed.
23440
23441 * alloc.c (garbage_collect): Don't assume stack size fits in int.
23442 (stack_copy_size): Now size_t, not int.
23443 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
23444
23445 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
23446
23447 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
23448 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
23449 All callers changed.
23450
23451 * lisp.h (multibyte_char_to_unibyte):
23452 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
23453 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
23454 * character.h (CHAR_TO_BYTE8):
23455 * cmds.c (internal_self_insert):
23456 * editfns.c (general_insert_function):
23457 * keymap.c (push_key_description):
23458 * search.c (Freplace_match):
23459 * xdisp.c (message_dolog, set_message_1): All callers changed.
23460
23461 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
23462
23463 * keyboard.c (safe_run_hook_funcall): New function.
23464 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
23465 don't set the hook to nil, but remove the offending function instead.
23466 (Qcommand_hook_internal): Remove, unused.
23467 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
23468 Vcommand_hook_internal.
23469
23470 * eval.c (enum run_hooks_condition): Remove.
23471 (funcall_nil, funcall_not): New functions.
23472 (run_hook_with_args): Call each function through a `funcall' argument.
23473 Remove `cond' argument, now redundant.
23474 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
23475 (Frun_hook_with_args_until_failure): Adjust accordingly.
23476 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
23477
23478 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
23479
23480 * dispextern.h (string_buffer_position): Remove declaration.
23481
23482 * print.c (strout): Remove parameter `multibyte', unused since
23483 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
23484
23485 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
23486 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
23487 All callers changed.
23488
23489 * w32.c (_wsa_errlist): Use braces for struct initializers.
23490
23491 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
23492 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
23493 All callers changed.
23494 (string_buffer_position): Likewise. Also, make static (it's never
23495 used outside xdisp.c).
23496 (cursor_row_p): Remove parameter `w', unused since
23497 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
23498 (decode_mode_spec): Remove parameter `precision', introduced during
23499 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
23500 All callers changed.
23501
23502 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
23503
23504 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
23505
23506 2011-03-27 Anders Lindgren <andlind@gmail.com>
23507
23508 * nsterm.m (ns_menu_bar_is_hidden): New variable.
23509 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
23510 (ns_update_auto_hide_menu_bar): New functions.
23511 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
23512 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
23513 ns_constrain_all_frames.
23514 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
23515 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
23516
23517 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
23518
23519 * nsmenu.m (runDialogAt): Remove argument to timer_check.
23520
23521 2011-03-27 Glenn Morris <rgm@gnu.org>
23522
23523 * syssignal.h: Replace RETSIGTYPE with void.
23524 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
23525 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
23526 Replace SIGTYPE with void everywhere.
23527 * s/usg5-4-common.h (SIGTYPE): Remove definition.
23528 * s/template.h (SIGTYPE): Remove commented out definition.
23529
23530 2011-03-26 Eli Zaretskii <eliz@gnu.org>
23531
23532 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
23533 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
23534
23535 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
23536
23537 * w32.c (read_unc_volume): Use parameter `henum', instead of
23538 global variable `wget_enum_handle'.
23539
23540 * keymap.c (describe_vector): Remove parameters `indices' and
23541 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
23542 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
23543
23544 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
23545
23546 * keyboard.c (timer_check): Remove parameter `do_it_now',
23547 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
23548 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
23549 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
23550
23551 * keyboard.c (read_char):
23552 * w32menu.c (w32_menu_display_help):
23553 * xmenu.c (show_help_event, menu_help_callback):
23554 Adjust calls to `show_help_echo'.
23555
23556 * gtkutil.c (xg_maybe_add_timer):
23557 * keyboard.c (readable_events):
23558 * process.c (wait_reading_process_output):
23559 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
23560
23561 * insdel.c (adjust_markers_gap_motion):
23562 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
23563 (gap_left, gap_right): Don't call it.
23564
23565 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
23566
23567 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
23568 incurred during fontification.
23569
23570 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
23571
23572 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
23573 (DEFVAR_PER_BUFFER): Don't pass it.
23574
23575 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
23576 (scrolling_window): Don't pass it.
23577
23578 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
23579
23580 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
23581
23582 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
23583 and `suffix'.
23584 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
23585 of variables specific to SELinux and computation of `encoded_absname'.
23586
23587 * image.c (XPutPixel): Remove unused variable `height'.
23588
23589 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
23590
23591 * unexw32.c (get_section_info): Remove unused variable `section'.
23592
23593 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
23594 (system_process_attributes): Remove unused variable `sess'.
23595 (sys_read): Remove unused variable `err'.
23596
23597 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
23598 (w32_wnd_proc): Remove unused variable `isdead'.
23599 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
23600 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
23601 (x_create_tip_frame): Remove unused variable `tem'.
23602
23603 * w32inevt.c (w32_console_read_socket):
23604 Remove unused variable `no_events'.
23605
23606 * w32term.c (x_draw_composite_glyph_string_foreground):
23607 Remove unused variable `width'.
23608
23609 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
23610
23611 * w32term.c (x_set_glyph_string_clipping):
23612 Don't pass uninitialized region to CombineRgn.
23613
23614 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
23615
23616 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
23617 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
23618 (Fx_close_connection): Remove unused variable `i'.
23619
23620 * w32font.c (w32font_draw): Return number of glyphs.
23621 (w32font_open_internal): Remove unused variable `i'.
23622 (w32font_driver): Add missing initializer.
23623
23624 * w32menu.c (utf8to16): Remove unused variable `utf16'.
23625 (fill_in_menu): Remove unused variable `items_added'.
23626
23627 * w32term.c (last_mouse_press_frame): Remove static global variable.
23628 (w32_clip_to_row): Remove unused variable `f'.
23629 (x_delete_terminal): Remove unused variable `i'.
23630
23631 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
23632 (NOTHING): Remove unused static global variable.
23633 (uniscribe_check_otf): Remove unused variable `table'.
23634 (uniscribe_font_driver): Add missing initializers.
23635
23636 2011-03-23 Julien Danjou <julien@danjou.info>
23637
23638 * term.c (Fsuspend_tty, Fresume_tty):
23639 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
23640 * window.c (temp_output_buffer_show):
23641 * insdel.c (signal_before_change):
23642 * frame.c (Fhandle_switch_frame):
23643 * fileio.c (Fdo_auto_save):
23644 * emacs.c (Fkill_emacs):
23645 * editfns.c (save_excursion_restore):
23646 * cmds.c (internal_self_insert):
23647 * callint.c (Fcall_interactively):
23648 * buffer.c (Fkill_all_local_variables):
23649 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
23650 Use Frun_hooks.
23651 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
23652 unconditionally since it does the check itself.
23653
23654 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
23655
23656 Fix more problems found by GCC 4.5.2's static checks.
23657
23658 * coding.c (encode_coding_raw_text): Avoid unnecessary test
23659 the first time through the loop, since we know p0 < p1 then.
23660 This also avoids a gcc -Wstrict-overflow warning.
23661
23662 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
23663 leading to a memory leak, possible in functions like
23664 load_charset_map_from_file that can allocate an unbounded number
23665 of objects (Bug#8318).
23666
23667 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
23668 that could (at least in theory) be that large.
23669
23670 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
23671 This is less likely to overflow, and avoids undefined behavior if
23672 overflow does occur. All callers changed. Use strtoul to scan
23673 for the unsigned long integer.
23674 (pint2hrstr): Simplify and tune code slightly.
23675 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
23676
23677 * scroll.c (do_scrolling): Work around GCC bug 48228.
23678 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
23679
23680 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
23681 This also avoids a warning with gcc -Wstrict-overflow.
23682 (validate_x_resource_name): Simplify count usage.
23683 This also avoids a warning with gcc -Wstrict-overflow.
23684
23685 * fileio.c (Fcopy_file): Report error if fchown or fchmod
23686 fail (Bug#8306).
23687
23688 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
23689
23690 * process.c (Fmake_network_process): Use socklen_t, not int,
23691 where POSIX says socklen_t is required in portable programs.
23692 This fixes a porting bug on hosts like 64-bit HP-UX, where
23693 socklen_t is wider than int (Bug#8277).
23694 (Fmake_network_process, server_accept_connection):
23695 (wait_reading_process_output, read_process_output):
23696 Likewise.
23697
23698 * process.c: Rename or move locals to avoid shadowing.
23699 (list_processes_1, Fmake_network_process):
23700 (read_process_output_error_handler, exec_sentinel_error_handler):
23701 Rename or move locals.
23702 (Fmake_network_process): Define label "retry_connect" only if needed.
23703 (Fnetwork_interface_info): Fix pointer signedness.
23704 (process_send_signal): Add cast to avoid pointer signedness problem.
23705 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
23706 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
23707
23708 Make tparam.h and terminfo.c consistent.
23709 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
23710 Include tparam.h instead, since it declares them.
23711 * cm.h (PC): Remove extern decl; tparam.h now does this.
23712 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
23713 * terminfo.c: Include tparam.h, to check interfaces.
23714 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
23715 (tparam): Adjust signature to match interface in tparam.h;
23716 this removes some undefined behavior. Check that outstring and len
23717 are zero, which they always are with Emacs.
23718 * tparam.h (PC, BC, UP): New extern decls.
23719
23720 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
23721 (xftfont_open): Rename locals to avoid shadowing.
23722
23723 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
23724 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
23725 (OTF_TAG_SYM): Omit macro if not needed.
23726 (ftfont_list): Remove unused local.
23727 (get_adstyle_property, ftfont_pattern_entity):
23728 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
23729 Rename locals to avoid shadowing.
23730
23731 * xfont.c (xfont_list_family): Mark var as initialized.
23732
23733 * xml.c (make_dom): Now static.
23734
23735 * composite.c (composition_compute_stop_pos): Rename local to
23736 avoid shadowing.
23737 (composition_reseat_it): Remove unused locals.
23738 (find_automatic_composition, composition_adjust_point): Likewise.
23739 (composition_update_it): Mark var as initialized.
23740 (find_automatic_composition): Mark vars as initialized,
23741 with a FIXME (Bug#8290).
23742
23743 character.h: Rename locals to avoid shadowing.
23744 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
23745 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
23746 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
23747 (BUF_DEC_POS): Be more systematic about renaming local temporaries
23748 to avoid shadowing.
23749
23750 * textprop.c (property_change_between_p): Remove; unused.
23751
23752 * intervals.c (interval_start_pos): Now static.
23753
23754 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
23755
23756 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
23757 Rename locals to avoid shadowing.
23758
23759 * sound.c (wav_play, au_play, Fplay_sound_internal):
23760 Fix pointer signedness.
23761 (alsa_choose_format): Remove unused local var.
23762 (wav_play): Initialize a variable to 0, to prevent undefined
23763 behavior (Bug#8278).
23764
23765 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
23766
23767 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
23768
23769 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
23770 clobbering (Bug#8298).
23771 * sysdep.c (sys_subshell): Likewise.
23772 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
23773
23774 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
23775 This should get cleaned up, so that child_setup has the
23776 same signature on all platforms.
23777
23778 * callproc.c (call_process_cleanup): Now static.
23779 (relocate_fd): Rename locals to avoid shadowing.
23780
23781 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
23782
23783 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
23784 not to be necessary, and produces flickering.
23785
23786 2011-03-20 Glenn Morris <rgm@gnu.org>
23787
23788 * config.in: Remove file.
23789
23790 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
23791
23792 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
23793 are now in src/globals.h.
23794 (syms_of_minibuf): Remove spurious & from previous change.
23795
23796 2011-03-20 Leo Liu <sdl.web@gmail.com>
23797
23798 * minibuf.c (completing-read-function): New variable.
23799 (completing-read-default): Rename from completing-read.
23800 (completing-read): Call completing-read-function.
23801
23802 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
23803
23804 * xfaces.c (Fx_load_color_file):
23805 Read color file from absolute filename (bug#8250).
23806
23807 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
23808
23809 * makefile.w32-in: Update dependencies.
23810
23811 2011-03-17 Eli Zaretskii <eliz@gnu.org>
23812
23813 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
23814
23815 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
23816
23817 Fix more problems found by GCC 4.5.2's static checks.
23818
23819 * process.c (make_serial_process_unwind, send_process_trap):
23820 (sigchld_handler): Now static.
23821
23822 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
23823 That way, the code declares only the vars that it needs.
23824 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
23825 * s/cygwin.h (PTY_ITERATION): Likewise.
23826 * s/darwin.h (PTY_ITERATION): Likewise.
23827 * s/gnu-linux.h (PTY_ITERATION): Likewise.
23828
23829 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
23830 * process.c (allocate_pty): Don't declare stb unless it's needed.
23831
23832 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
23833 (CONSTANTLIM): Remove; unused.
23834 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
23835 Define only if needed.
23836
23837 * unexelf.c (unexec): Name an expression,
23838 to avoid gcc -Wbad-function-cast warning.
23839 Use a different way to cause a compilation error if anyone uses
23840 n rather than nn, a way that does not involve shadowing.
23841 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
23842
23843 * deps.mk (unexalpha.o): Remove; unused.
23844
23845 New file unexec.h, the (simple) interface for unexec (Bug#8267).
23846 * unexec.h: New file.
23847 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
23848 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
23849 Depend on unexec.h.
23850 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
23851 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
23852 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
23853 Change as necessary to match prototype in unexec.h.
23854
23855 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
23856 shadowing.
23857 (back_comment, skip_chars): Mark vars as initialized.
23858
23859 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
23860 Rename locals to avoid shadowing.
23861
23862 * lread.c (read1): Rewrite so as not to use empty "else".
23863 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
23864
23865 * print.c (Fredirect_debugging_output): Fix pointer signedess.
23866
23867 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
23868 warning when compiling print.c.
23869
23870 * font.c (font_unparse_fcname): Abort in an "impossible" situation
23871 instead of using an uninitialized var.
23872 (font_sort_entities): Mark var as initialized.
23873
23874 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
23875
23876 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
23877 pointers to constants.
23878 (font_parse_fcname): Remove unused vars.
23879 (font_delete_unmatched): Now static.
23880 (font_get_spec): Remove; unused.
23881 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
23882 (font_update_drivers, Ffont_get_glyphs, font_add_log):
23883 Rename or move locals to avoid shadowing.
23884
23885 * fns.c (require_nesting_list, require_unwind): Now static.
23886 (Ffillarray): Rename locals to avoid shadowing.
23887
23888 * floatfns.c (domain_error2): Define only if needed.
23889 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
23890
23891 * alloc.c (mark_backtrace): Move decl from here ...
23892 * lisp.h: ... to here, so that it can be checked.
23893
23894 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
23895 (Fdefvar): Rewrite so as not to use empty "else".
23896 (lisp_indirect_variable): Name an expression,
23897 to avoid gcc -Wbad-function-cast warning.
23898 (Fdefvar): Rename locals to avoid shadowing.
23899
23900 * callint.c (quotify_arg, quotify_args): Now static.
23901 (Fcall_interactively): Rename locals to avoid shadowing.
23902 Use const pointer when appropriate.
23903
23904 * lisp.h (get_system_name, get_operating_system_release):
23905 Move decls here, to check interfaces.
23906 * process.c (get_operating_system_release): Move decl to lisp.h.
23907 * xrdb.c (get_system_name): Likewise.
23908 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
23909 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
23910 some of which prompt warnings from gcc -Wbad-function-cast.
23911 (Fformat_time_string, Fencode_time, Finsert_char):
23912 (Ftranslate_region_internal, Fformat):
23913 Rename or remove local vars to avoid shadowing.
23914 (Ftranslate_region_internal): Mark var as initialized.
23915
23916 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
23917 avoid shadowing.
23918
23919 * lisp.h (eassert): Check that the argument compiles, even if
23920 ENABLE_CHECKING is not defined.
23921
23922 * data.c (Findirect_variable): Name an expression, to avoid
23923 gcc -Wbad-function-cast warning.
23924 (default_value, arithcompare, arith_driver, arith_error): Now static.
23925 (store_symval_forwarding): Rename local to avoid shadowing.
23926 (Fmake_variable_buffer_local, Fmake_local_variable):
23927 Mark variables as initialized.
23928 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
23929
23930 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
23931 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
23932 Rename locals to avoid shadowing.
23933 (mark_stack): Move local variables into the #ifdef region where
23934 they're used.
23935 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
23936 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
23937 needed otherwise.
23938 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
23939 (GC_STRING_CHARS): Remove; not used.
23940 (Fmemory_limit): Cast sbrk's returned value to char *.
23941
23942 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
23943 avoids undefined behavior in theory.
23944
23945 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
23946
23947 Use functions, not macros, for up- and down-casing (Bug#8254).
23948 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
23949 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
23950 to use the following functions instead of these macros.
23951 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
23952 EMACS_INT, since callers assume the returned value fits in int.
23953 (upcase1): Likewise, for UPCASE_TABLE.
23954 (uppercasep, lowercasep, upcase): New static inline functions.
23955 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
23956 the race-condition problem in the old DOWNCASE.
23957
23958 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
23959 Rename locals to avoid shadowing.
23960 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
23961 (regex_compile, re_search_2, re_match_2_internal):
23962 Remove unused local vars.
23963 (FREE_VAR): Rewrite so as not to use empty "else",
23964 which gcc can warn about.
23965 (regex_compile, re_match_2_internal): Mark locals as initialized.
23966 (RETALLOC_IF): Define only if needed.
23967 (WORDCHAR_P): Likewise. This one is never needed, but is used
23968 only in a comment talking about a compiler bug, so put inside
23969 the #if 0 of that comment.
23970 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
23971 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
23972 Remove; unused.
23973
23974 * search.c (boyer_moore): Rename locals to avoid shadowing.
23975 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
23976 (PREV_CHAR_BOUNDARY): Likewise.
23977
23978 * search.c (simple_search): Remove unused var.
23979
23980 * dired.c (compile_pattern): Move decl from here ...
23981 * lisp.h: ... to here, so that it can be checked.
23982 (struct re_registers): New forward decl.
23983
23984 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
23985
23986 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
23987 All uses changed.
23988 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
23989 Rename locals to avoid shadowing.
23990 (Fvertical_motion): Mark locals as initialized.
23991
23992 * casefiddle.c (casify_object, casify_region): Now static.
23993 (casify_region): Mark local as initialized.
23994
23995 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
23996
23997 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
23998 New macros, so that the caller can use some names other than
23999 gcpro1, gcpro2, etc.
24000 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
24001 of the new macros.
24002 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
24003 argument, for consistency with GCPRO2_VAR, etc: it is now the
24004 prefix of the variable, not the variable itself. All uses
24005 changed.
24006 * dired.c (directory_files_internal, file_name_completion):
24007 Rename locals to avoid shadowing.
24008
24009 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
24010 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
24011 dired.c's scmp function, had undefined behavior.
24012 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
24013 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
24014 * buffer.h: ... to here, because these macros use current_buffer,
24015 and the new implementation with inline functions needs to have
24016 current_buffer in scope now, rather than later when the macros
24017 are used.
24018 (downcase, upcase1): New static inline functions.
24019 (DOWNCASE, UPCASE1): Reimplement using these functions.
24020 This avoids undefined behavior in expressions like
24021 DOWNCASE (x) == DOWNCASE (y), which previously suffered
24022 from race conditions in accessing the global variables
24023 case_temp1 and case_temp2.
24024 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
24025 * lisp.h (case_temp1, case_temp2): Remove their decls.
24026 * character.h (ASCII_CHAR_P): Move from here ...
24027 * lisp.h: ... to here, so that the inline functions mentioned
24028 above can use them.
24029
24030 * dired.c (directory_files_internal_unwind): Now static.
24031
24032 * fileio.c (file_name_as_directory, directory_file_name):
24033 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
24034 Now static.
24035 (file_name_as_directory): Use const pointers when appropriate.
24036 (Fexpand_file_name): Likewise. In particular, newdir might
24037 point at constant storage, so make it a const pointer.
24038 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
24039 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
24040 signedness issues.
24041 (Fset_file_times, Finsert_file_contents, auto_save_error):
24042 Rename locals to avoid shadowing.
24043
24044 * minibuf.c (choose_minibuf_frame_1): Now static.
24045 (Ftry_completion, Fall_completions): Rename or remove locals
24046 to avoid shadowing.
24047
24048 * marker.c (bytepos_to_charpos): Remove; unused.
24049
24050 * lisp.h (verify_bytepos, count_markers): New decls,
24051 so that gcc does not warn that these functions aren't declared.
24052
24053 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
24054 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
24055 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
24056 (copy_text): Remove unused local var.
24057
24058 * filelock.c (within_one_second): Now static.
24059 (lock_file_1): Rename local to avoid shadowing.
24060
24061 * buffer.c (fix_overlays_before): Mark locals as initialized.
24062 (fix_start_end_in_overlays): Likewise. This function should be
24063 simplified by using pointers-to-pointers, but that's a different
24064 matter.
24065 (switch_to_buffer_1): Now static.
24066 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
24067 (report_overlay_modification): Rename locals to avoid shadowing.
24068
24069 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
24070 Fix pointer signedness issue.
24071 (sys_subshell): Mark local as volatile if checking for lint,
24072 to suppress a gcc -Wclobbered warning that does not seem to be right.
24073 (MAXPATHLEN): Define only if needed.
24074
24075 * process.c (serial_open, serial_configure): Move decls from here ...
24076 * systty.h: ... to here, so that they can be checked.
24077
24078 * fns.c (get_random, seed_random): Move extern decls from here ...
24079 * lisp.h: ... to here, so that they can be checked.
24080
24081 * sysdep.c (reset_io): Now static.
24082 (wait_for_termination_signal): Remove; unused.
24083
24084 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
24085 (copy_keymap_item, append_key, push_text_char_description):
24086 Now static.
24087 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
24088 (DENSE_TABLE_SIZE): Remove; unused.
24089 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
24090 (describe_map_tree):
24091 Rename locals to avoid shadowing.
24092
24093 * keyboard.c: Declare functions static if they are not used elsewhere.
24094 (echo_char, echo_dash, cmd_error, top_level_2):
24095 (poll_for_input, handle_async_input): Now static.
24096 (read_char, kbd_buffer_get_event, make_lispy_position):
24097 (make_lispy_event, make_lispy_movement, apply_modifiers):
24098 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
24099 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
24100 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
24101 (read_key_sequence, read_char): Mark locals as initialized.
24102 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
24103
24104 * keyboard.h (make_ctrl_char): New decl.
24105 (mark_kboards): Move decl here ...
24106 * alloc.c (mark_kboards): ... from here.
24107
24108 * lisp.h (force_auto_save_soon): New decl.
24109
24110 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
24111 (DEFINE_DUMMY_FUNCTION): New macro.
24112 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
24113 Use it.
24114 (main): Add casts to avoid warnings
24115 if GCC considers string literals to be constants.
24116
24117 * lisp.h (fatal_error_signal): Add decl, since it's exported.
24118
24119 * dbusbind.c: Pointer signedness fixes.
24120 (xd_signature, xd_append_arg, xd_initialize):
24121 (Fdbus_call_method, Fdbus_call_method_asynchronously):
24122 (Fdbus_method_return_internal, Fdbus_method_error_internal):
24123 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
24124 (Fdbus_register_signal): Use SSDATA when the context wants char *.
24125
24126 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
24127 if GCC considers string literals to be constants.
24128 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
24129
24130 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
24131
24132 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
24133 (print_preprocess, print_object): New macro to fix last change.
24134
24135 * print.c (print_preprocess): Don't forget font objects.
24136
24137 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
24138
24139 * emacs.c (USAGE3): Doc fixes.
24140
24141 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
24142
24143 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
24144 structure.
24145
24146 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
24147
24148 * lisp.h (VWindow_system, Qfile_name_history):
24149 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
24150 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
24151 (w32_system_caret_x, w32_system_caret_y): Declare extern.
24152
24153 * w32select.c: Don't #include "keyboard.h".
24154 (run_protected): Add extern declaration for waiting_for_input.
24155
24156 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
24157 * w32console.c (detect_input_pending, read_input_pending)
24158 (encode_terminal_code):
24159 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
24160 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
24161 (w32_system_caret_y, Qfile_name_history):
24162 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
24163 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
24164 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
24165 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
24166 * w32proc.c (Qlocal, report_file_error):
24167 * w32term.c (Vwindow_system, updating_frame):
24168 * w32uniscribe.c (initialized, uniscribe_font_driver):
24169 Remove unneeded extern declarations.
24170
24171 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
24172
24173 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
24174
24175 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
24176
24177 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
24178 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
24179 These macros can no longer be used for assignment.
24180
24181 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
24182 Assign struct members directly, instead of using BUF_BEGV etc.
24183 (record_buffer_markers, fetch_buffer_markers): New functions for
24184 recording and fetching special buffer markers.
24185 (set_buffer_internal_1, set_buffer_temp): Use them.
24186
24187 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
24188
24189 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
24190
24191 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
24192 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
24193
24194 * xdisp.c (hscroll_window_tree):
24195 (reconsider_clip_changes): Use PT instead of BUF_PT.
24196
24197 2011-03-13 Eli Zaretskii <eliz@gnu.org>
24198
24199 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
24200 $(EMACS_ROOT)/lib/intprops.h.
24201
24202 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
24203
24204 Fix more problems found by GCC 4.5.2's static checks.
24205
24206 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
24207 to unsigned char * to avoid compiler diagnostic.
24208 (xg_free_frame_widgets): Make it clear that a local variable is
24209 needed only if USE_GTK_TOOLTIP.
24210 (gdk_window_get_screen): Make it clear that this macro is needed
24211 only if USE_GTK_TOOLTIP.
24212 (int_gtk_range_get_value): New function, which avoids a diagnostic
24213 from gcc -Wbad-function-cast.
24214 (xg_set_toolkit_scroll_bar_thumb): Use it.
24215 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
24216 diagnostic from gcc -Wbad-function-cast.
24217 (get_utf8_string, xg_get_file_with_chooser):
24218 Rename locals to avoid shadowing.
24219 (create_dialog): Move locals to avoid shadowing.
24220
24221 * xgselect.c (xg_select): Remove unused var.
24222
24223 * image.c (four_corners_best): Mark locals as initialized.
24224 (gif_load): Initialize transparent_p to zero (Bug#8238).
24225 Mark another local as initialized.
24226 (my_png_error, my_error_exit): Mark with NO_RETURN.
24227
24228 * image.c (clear_image_cache): Now static.
24229 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
24230 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
24231 (x_edge_detection): Remove unnecessary cast that
24232 gcc -Wbad-function-cast diagnoses.
24233 (gif_load): Fix pointer signedness.
24234 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
24235 (jpeg_load, gif_load): Rename locals to avoid shadowing.
24236
24237 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
24238
24239 Improve quality of tests for time stamp overflow.
24240 For example, without this patch (encode-time 0 0 0 1 1
24241 1152921504606846976) returns the obviously-bogus value (-948597
24242 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
24243 reports time overflow. See
24244 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
24245 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
24246 * editfns.c: Include limits.h and intprops.h.
24247 (TIME_T_MIN, TIME_T_MAX): New macros.
24248 (time_overflow): Move earlier, to before first use.
24249 (hi_time, lo_time): New functions, for an accurate test for
24250 out-of-range times.
24251 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
24252 (Fget_internal_run_time): Don't assume time_t fits in int.
24253 (make_time): Use list2 instead of Fcons twice.
24254 (Fdecode_time): More accurate test for out-of-range times.
24255 (check_tm_member): New function.
24256 (Fencode_time): Use it, to test for out-of-range times.
24257 (lisp_time_argument): Don't rely on undefined left-shift and
24258 right-shift behavior when checking for time stamp overflow.
24259
24260 * editfns.c (time_overflow): New function, refactoring common code.
24261 (Fformat_time_string, Fdecode_time, Fencode_time):
24262 (Fcurrent_time_string): Use it.
24263
24264 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
24265 * dired.c (make_time): Move to ...
24266 * editfns.c (make_time): ... here.
24267 * systime.h: Note the move.
24268
24269 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24270
24271 * fringe.c (update_window_fringes): Remove unused variables.
24272
24273 * unexmacosx.c (copy_data_segment): Also copy __got section.
24274 (Bug#8223)
24275
24276 2011-03-12 Eli Zaretskii <eliz@gnu.org>
24277
24278 * termcap.c [MSDOS]: Include "msdos.h".
24279 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
24280 Constify `char *' arguments and their references according to
24281 prototypes in tparam.h.
24282
24283 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
24284
24285 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
24286 Adapt all references accordingly.
24287
24288 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
24289
24290 2011-03-11 Tom Tromey <tromey@redhat.com>
24291
24292 * buffer.c (syms_of_buffer): Remove obsolete comment.
24293
24294 2011-03-11 Eli Zaretskii <eliz@gnu.org>
24295
24296 * termhooks.h (encode_terminal_code): Declare prototype.
24297
24298 * msdos.c (encode_terminal_code): Don't declare prototype.
24299
24300 * term.c (encode_terminal_code): Now external again, used by
24301 w32console.c and msdos.c.
24302
24303 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
24304 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
24305
24306 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
24307
24308 Fix some minor problems found by GCC 4.5.2's static checks.
24309
24310 * fringe.c (update_window_fringes): Mark locals as initialized
24311 (Bug#8227).
24312 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
24313
24314 * alloc.c (mark_fringe_data): Move decl from here ...
24315 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
24316 to check its interface.
24317 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
24318
24319 * fontset.c (free_realized_fontset): Now static.
24320 (Fset_fontset_font): Rename local to avoid shadowing.
24321 (fontset_font): Mark local as initialized.
24322 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
24323
24324 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
24325
24326 * xselect.c (x_disown_buffer_selections): Remove; not used.
24327 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
24328 (x_own_selection, Fx_disown_selection_internal): Rename locals
24329 to avoid shadowing.
24330 (x_handle_dnd_message): Remove local to avoid shadowing.
24331
24332 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
24333 so that the caller can use some name other than gcpro1.
24334 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
24335 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
24336 (Fx_backspace_delete_keys_p):
24337 Use them to avoid shadowing, and rename vars to avoid shadowing.
24338 (x_decode_color, x_set_name, x_window): Now static.
24339 (Fx_create_frame): Add braces to silence GCC warning.
24340 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
24341 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
24342 Remove unused locals.
24343 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
24344 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
24345 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
24346 macros.
24347
24348 * xterm.h (x_mouse_leave): New decl.
24349
24350 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
24351 Remove unused functions.
24352 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
24353 (x_calc_absolute_position): Now static.
24354 (XTread_socket): Don't define label "out" unless it's used.
24355 Don't declare local "event" unless it's used.
24356 (x_iconify_frame, x_free_frame_resources): Don't declare locals
24357 unless they are used.
24358 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
24359 (x_fatal_error_signal): Remove; not used.
24360 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
24361 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
24362 (x_error_catcher, x_connection_closed, x_error_handler):
24363 (x_error_quitter, xembed_send_message, x_iconify_frame):
24364 (my_log_handler): Rename locals to avoid shadowing.
24365 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
24366 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
24367
24368 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
24369 Rename or move locals to avoid shadowing.
24370 (tty_defined_color, merge_face_heights): Now static.
24371 (free_realized_faces_for_fontset): Remove; not used.
24372 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
24373 does not deduce is never used uninitialized.
24374 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
24375 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
24376
24377 * terminal.c (store_terminal_param): Now static.
24378
24379 * xmenu.c (menu_highlight_callback): Now static.
24380 (set_frame_menubar): Remove unused local.
24381 (xmenu_show): Rename parameter to avoid shadowing.
24382 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
24383 since they might point to immutable storage.
24384 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
24385 since it's unused otherwise.
24386
24387 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
24388 Add a FIXME, since the code still doesn't look right. (Bug#8215)
24389 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
24390 avoids a gcc -Wuninitialized diagnostic.
24391 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
24392 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
24393 does not deduce are never used uninitialized.
24394
24395 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
24396
24397 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
24398 * window.c (window_loop, size_window):
24399 (run_window_configuration_change_hook, enlarge_window): Likewise.
24400
24401 * window.c (display_buffer): Now static.
24402 (size_window): Mark variables that gcc -Wuninitialized
24403 does not deduce are never used uninitialized.
24404 * window.h (check_all_windows): New decl, to forestall
24405 gcc -Wmissing-prototypes diagnostic.
24406 * dispextern.h (bidi_dump_cached_states): Likewise.
24407
24408 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
24409 shadowing.
24410 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
24411 Include <limits.h>.
24412 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
24413 and to avoid gcc -Wuninitialized warning.
24414 (load_charset_map): Mark variables that gcc -Wuninitialized
24415 does not deduce are never used uninitialized.
24416 (load_charset): Abort instead of using uninitialized var (Bug#8229).
24417
24418 * coding.c (coding_set_source, coding_set_destination):
24419 Use "else { /* comment */ }" rather than "else /* comment */;"
24420 for clarity, and to avoid gcc -Wempty-body warning.
24421 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
24422 a block, when the outer 'i' will do.
24423 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
24424 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
24425 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
24426 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
24427 (Fdecode_sjis_char, Fdefine_coding_system_internal):
24428 Rename locals to avoid shadowing.
24429 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
24430 * coding.c (emacs_mule_char, encode_invocation_designation):
24431 Now static, since they're not used elsewhere.
24432 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
24433 (decode_coding_object, encode_coding_object, detect_coding_system):
24434 (decode_coding_emacs_mule): Mark variables that gcc
24435 -Wuninitialized does not deduce are never used uninitialized.
24436 (detect_coding_iso_2022): Initialize a local variable that might
24437 be used uninitialized. Leave a FIXME because it's not clear that
24438 this initialization is needed. (Bug#8211)
24439 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
24440 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
24441 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
24442 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
24443 Remove unused macros.
24444
24445 * category.c (hash_get_category_set): Remove unused local var.
24446 (copy_category_table): Now static, since it's not used elsewhere.
24447 * character.c (string_count_byte8): Likewise.
24448
24449 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
24450 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
24451
24452 * chartab.c (copy_sub_char_table): Now static, since it's not used
24453 elsewhere.
24454 (sub_char_table_ref_and_range, char_table_ref_and_range):
24455 Rename locals to avoid shadowing.
24456 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
24457
24458 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
24459 (BIDI_BOB): Remove unused macro.
24460
24461 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
24462 deduce are never used uninitialized.
24463 * term.c (encode_terminal_code): Likewise.
24464
24465 * term.c (encode_terminal_code): Now static. Remove unused local.
24466
24467 * tparam.h: New file.
24468 * term.c, tparam.h: Include it.
24469 * deps.mk (term.o, tparam.o): Depend on tparam.h.
24470 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
24471 Move these decls to tparam.h, and make them agree with what
24472 is actually in tparam.c. The previous trick of using incompatible
24473 decls in different modules does not conform to the C standard.
24474 All callers of tparam changed to use tparam's actual API.
24475 * tparam.c (tparam1, tparam, tgoto):
24476 Use const pointers where appropriate.
24477
24478 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
24479 * cm.h (struct cm): Likewise.
24480 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
24481 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
24482 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
24483 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
24484 (turn_on_face, init_tty): Likewise.
24485 * termchar.h (struct tty_display_info): Likewise.
24486
24487 * term.c (term_mouse_position): Rename local to avoid shadowing.
24488
24489 * alloc.c (mark_ttys): Move decl from here ...
24490 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
24491
24492 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
24493
24494 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
24495
24496 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
24497
24498 * search.c (compile_pattern_1): Remove argument regp, unused since
24499 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
24500 (compile_pattern): Don't pass it.
24501
24502 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
24503
24504 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
24505 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
24506 for ! HAVE_GTK3.
24507 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
24508
24509 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
24510
24511 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
24512 gdk_window_get_screen, gdk_window_get_geometry,
24513 gdk_x11_window_lookup_for_display and GDK_KEY_g.
24514 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
24515 (xg_get_pixbuf_from_pixmap): New function.
24516 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
24517 to Pixmap, take frame as parameter, remove GdkColormap parameter.
24518 Call xg_get_pixbuf_from_pixmap instead of
24519 gdk_pixbuf_get_from_drawable.
24520 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
24521 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
24522 (xg_check_special_colors): Use GtkStyleContext and its functions
24523 for HAVE_GTK3.
24524 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
24525 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
24526 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
24527 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
24528 Call gtk_widget_get_preferred_size.
24529 (xg_frame_resized): gdk_window_get_geometry only takes 5
24530 parameters.
24531 (xg_win_to_widget, xg_event_is_for_menubar):
24532 Call gdk_x11_window_lookup_for_display.
24533 (xg_set_widget_bg): New function.
24534 (delete_cb): New function.
24535 (xg_create_frame_widgets): Connect delete-event to delete_cb.
24536 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
24537 (xg_set_background_color): Call xg_set_widget_bg.
24538 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
24539 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
24540 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
24541 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
24542 if ! HAVE_GTK3.
24543 (update_frame_tool_bar): Call gtk_widget_hide.
24544 (xg_initialize): Use GDK_KEY_g.
24545
24546 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
24547 if ! HAVE_GTK3
24548 (x_session_initialize): Call gdk_x11_set_sm_client_id.
24549
24550 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
24551 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
24552 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
24553
24554 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
24555
24556 * w32xfns.c (select_palette): Check success of RealizePalette against
24557 GDI_ERROR, not zero.
24558
24559 See ChangeLog.11 for earlier changes.
24560
24561 ;; Local Variables:
24562 ;; coding: utf-8
24563 ;; End:
24564
24565 Copyright (C) 2011-2013 Free Software Foundation, Inc.
24566
24567 This file is part of GNU Emacs.
24568
24569 GNU Emacs is free software: you can redistribute it and/or modify
24570 it under the terms of the GNU General Public License as published by
24571 the Free Software Foundation, either version 3 of the License, or
24572 (at your option) any later version.
24573
24574 GNU Emacs is distributed in the hope that it will be useful,
24575 but WITHOUT ANY WARRANTY; without even the implied warranty of
24576 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24577 GNU General Public License for more details.
24578
24579 You should have received a copy of the GNU General Public License
24580 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.