aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2006-07-11 20:13:40 +0000
committerKim F. Storm2006-07-11 20:13:40 +0000
commit2e42ee7bfb8ce50dd829b4b15d2013cd1e2ace9f (patch)
tree98e261901cdfd2b9783faf48dde470150f5c6d5b
parent27313250fb0126a311a53777e6a84233c05fd2dc (diff)
downloademacs-2e42ee7bfb8ce50dd829b4b15d2013cd1e2ace9f.tar.gz
emacs-2e42ee7bfb8ce50dd829b4b15d2013cd1e2ace9f.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog21
2 files changed, 26 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 749f7cc352f..3575c3441d0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-07-11 Kim F. Storm <storm@cua.dk>
2
3 * ido.el (ido-copy-current-file-name): Use buffer-name if
4 buffer-file-name is nil.
5
12006-07-11 Chong Yidong <cyd@stupidchicken.com> 62006-07-11 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * simple.el (undo-ask-before-discard): Set to nil. 8 * simple.el (undo-ask-before-discard): Set to nil.
diff --git a/src/ChangeLog b/src/ChangeLog
index 8a69f99cc48..182dea1afda 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,24 @@
12006-07-11 Kim F. Storm <storm@cua.dk>
2
3 * dispnew.c (sit_for): Reduce number of args from 5 to 3.
4 Now just one TIMEOUT arg that can be a Lisp float or Lisp int.
5 Combine args DISPLAY and INITIAL_DISPLAY into one arg DO_DISPLAY.
6 Undo 2006-06-14 change for non-preemptive display if TIMEOUT < 0.
7 The rework of sit_for args also fixes several incorrect Qt args
8 which should have been 1.
9 (Fredisplay): Pass 1 instead of Qt to swallow_events and
10 detect_input_pending_run_timers.
11
12 * lisp.h (sit_for): Update prototype.
13 (Fredisplay): Add EXFUN.
14
15 * dispextern.h (sit_for): Remove prototype.
16
17 * callint.c (Fcall_interactively):
18 * minibuf.c (temp_echo_area_glyphs):
19 * keyboard.c (command_loop_1, read_char, Fexecute_extended_command):
20 * fileio.c (Fdo_auto_save): Update/simplify sit_for calls.
21
12006-07-11 Stefan Monnier <monnier@iro.umontreal.ca> 222006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
2 23
3 * syntax.c (forw_comment): Also use EMACS_INT for buffer positions. 24 * syntax.c (forw_comment): Also use EMACS_INT for buffer positions.