*** empty log message ***

This commit is contained in:
Kim F. Storm
2006-07-11 20:13:40 +00:00
parent 27313250fb
commit 2e42ee7bfb
2 changed files with 26 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2006-07-11 Kim F. Storm <storm@cua.dk>
* ido.el (ido-copy-current-file-name): Use buffer-name if
buffer-file-name is nil.
2006-07-11 Chong Yidong <cyd@stupidchicken.com>
* simple.el (undo-ask-before-discard): Set to nil.

View File

@@ -1,3 +1,24 @@
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.