From: Kim F. Storm Date: Tue, 11 Jul 2006 20:13:40 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~1535 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/2e42ee7bfb8ce50dd829b4b15d2013cd1e2ace9f *** empty log message *** --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 749f7cc352..3575c3441d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-07-11 Kim F. Storm + + * ido.el (ido-copy-current-file-name): Use buffer-name if + buffer-file-name is nil. + 2006-07-11 Chong Yidong * simple.el (undo-ask-before-discard): Set to nil. diff --git a/src/ChangeLog b/src/ChangeLog index 8a69f99cc4..182dea1afd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,24 @@ +2006-07-11 Kim F. Storm + + * 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 * syntax.c (forw_comment): Also use EMACS_INT for buffer positions.