]> code.delx.au - gnu-emacs/blobdiff - src/ChangeLog
*** empty log message ***
[gnu-emacs] / src / ChangeLog
index 05613acdf969064e34261ffcad472c55a3ee1484..182dea1afda7731ef8ca8ec6d787305f519d834b 100644 (file)
@@ -1,3 +1,108 @@
+2006-07-11  Kim F. Storm  <storm@cua.dk>
+
+       * dispnew.c (sit_for): Reduce number of args from 5 to 3.
+       Now just one TIMEOUT arg that can be a Lisp float or Lisp int.
+       Combine args DISPLAY and INITIAL_DISPLAY into one arg DO_DISPLAY.
+       Undo 2006-06-14 change for non-preemptive display if TIMEOUT < 0.
+       The rework of sit_for args also fixes several incorrect Qt args
+       which should have been 1.
+       (Fredisplay): Pass 1 instead of Qt to swallow_events and
+       detect_input_pending_run_timers.
+
+       * lisp.h (sit_for): Update prototype.
+       (Fredisplay): Add EXFUN.
+
+       * dispextern.h (sit_for): Remove prototype.
+
+       * callint.c (Fcall_interactively):
+       * minibuf.c (temp_echo_area_glyphs):
+       * keyboard.c (command_loop_1, read_char, Fexecute_extended_command):
+       * fileio.c (Fdo_auto_save): Update/simplify sit_for calls.
+
+2006-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * syntax.c (forw_comment): Also use EMACS_INT for buffer positions.
+
+2006-07-11  Kim F. Storm  <storm@cua.dk>
+
+       * dispnew.c (Fredisplay): Add FORCE argument to force redisplay when
+       input is available.  Fix test for redisplay_dont_pause non-nil.
+       Specbind redisplay-dont-pause to t if FORCE non-nil.
+
+2006-07-10  Chong Yidong  <cyd@stupidchicken.com>
+
+       * puresize.h (BASE_PURESIZE): Increment to 1211000.
+
+       * dispnew.c (Fredisplay): New function, equivalent to (sit-for 0).
+       (Fsit_for): Function deleted.
+
+       * keyboard.c (command_loop_1, Fexecute_extended_command):
+       Call sit_for instead of Fsit_for.
+
+       * minibuf.c (temp_echo_area_glyphs): Likewise.
+
+2006-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * syntax.c (Fforward_comment): Revert the reversion.
+       (back_comment, scan_lists): Also use EMACS_INT for buffer positions.
+
+2006-07-09  John Paul Wallington  <jpw@pobox.com>
+
+       * syntax.c (Fforward_comment): Revert previous change.
+
+2006-07-09  Kim F. Storm  <storm@cua.dk>
+
+       * window.c (Fforce_window_update): Doc fix.
+
+2006-07-08  Stephen Gildea  <gildea@stop.mail-abuse.org>
+
+       * fileio.c (do_auto_save_make_dir): Make the auto-save-list-file
+       directory unreadable for better user privacy.
+
+2006-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * syntax.c (Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.
+
+       * lread.c (read_filtered_event): Remove `register' qualifier because it
+       causes compilation problem with gcc-4.0.2-20051125 on amd64.
+       (readevalloop): Remove unused var `bpos'.
+       Yet another int/Lisp_Object mixup (YAILOM).
+
+2006-07-07  Eli Zaretskii  <eliz@gnu.org>
+
+       * keyboard.c (Fexecute_extended_command): Mention the argument
+       PREFIXARG in the doc string.
+
+2006-07-07  Kim F. Storm  <storm@cua.dk>
+
+       * fringe.c (Fdefine_fringe_bitmap): Doc fix.
+
+2006-07-05  Chong Yidong  <cyd@stupidchicken.com>
+
+       * insdel.c (prepare_to_modify_buffer): For an indirect buffer, do
+       clash detection using the base buffer.
+
+       * puresize.h (BASE_PURESIZE): Increment to 1210500.
+
+2006-07-04  Kim F. Storm  <storm@cua.dk>
+
+       * xterm.c (x_delete_display): Don't free or derefence NULL pointers.
+
+2006-07-04  Kenichi Handa  <handa@m17n.org>
+
+       * fontset.c (Fset_overriding_fontspec_internal): Check if we need
+       to update Voverriding_fontspec_alist.
+
+2006-07-03  Richard Stallman  <rms@gnu.org>
+
+       * xfns.c (Fx_create_frame): Move unwind_create_frame setup down.
+
+       * xfaces.c (Fface_attribute_relative_p): Doc fix.
+
+       * textprop.c (Fget_char_property_and_overlay): Doc fix.
+
+       * eval.c (Fdefvaralias): Doc fix.
+
 2006-07-03  Kim F. Storm  <storm@cua.dk>
 
        * dispnew.c (sit_for): Fix preempt condition.