aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-07-29 02:27:00 +0000
committerRichard M. Stallman2006-07-29 02:27:00 +0000
commit0de8dcc97732834702d25e2be92f62d4b9ae4e35 (patch)
tree573b3fd51d1878ee7f93525e6895ac42e787fd36
parente3b4d8490c3c2a45f2d38a7afb25ed83d1aa1b42 (diff)
downloademacs-0de8dcc97732834702d25e2be92f62d4b9ae4e35.tar.gz
emacs-0de8dcc97732834702d25e2be92f62d4b9ae4e35.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lispref/ChangeLog4
-rw-r--r--man/ChangeLog5
-rw-r--r--src/ChangeLog20
4 files changed, 38 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f0099a15514..9312730c06f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12006-07-28 Richard Stallman <rms@gnu.org>
2
3 * bindings.el (mode-line-frame-identification)
4 (propertized-buffer-identification): Centralize the code
5 to initialize the variable.
6
7 * progmodes/grep.el (grep-default-command): Catch errors from
8 wildcard-to-regexp.
9
12006-07-29 Kim F. Storm <storm@cua.dk> 102006-07-29 Kim F. Storm <storm@cua.dk>
2 11
3 * progmodes/grep.el (grep-tag-default): New function. 12 * progmodes/grep.el (grep-tag-default): New function.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 7bc5e51062e..0e0936db0a3 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,5 +1,9 @@
12006-07-28 Richard Stallman <rms@gnu.org> 12006-07-28 Richard Stallman <rms@gnu.org>
2 2
3 * display.texi (Face Attributes): Simplify wording.
4 (Attribute Functions): Clarify meaning of new-frame default
5 attribute settings.
6
3 * customize.texi (Common Keywords): Document how to use 7 * customize.texi (Common Keywords): Document how to use
4 :package-version in a package not in Emacs. 8 :package-version in a package not in Emacs.
5 9
diff --git a/man/ChangeLog b/man/ChangeLog
index 6385b4393a0..479d9d5af92 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,8 @@
12006-07-28 Richard Stallman <rms@gnu.org>
2
3 * mark.texi (Transient Mark): Clarify that region never disappears
4 when Transient Mark mode is off, and not when it is on.
5
12006-07-27 Richard Stallman <rms@gnu.org> 62006-07-27 Richard Stallman <rms@gnu.org>
2 7
3 * search.texi (Non-ASCII Isearch): Clarify. Mention C-q. 8 * search.texi (Non-ASCII Isearch): Clarify. Mention C-q.
diff --git a/src/ChangeLog b/src/ChangeLog
index 2f51ce899f5..029b7368be1 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,15 @@
12006-07-28 Richard Stallman <rms@gnu.org>
2
3 * xfaces.c (lookup_named_face, Fdisplay_supports_face_attributes_p):
4 Add conditional aborts for clarity.
5
6 * xdisp.c (update_menu_bar): New arg HOOKS_RUN. Callers changed.
7 Used to avoid running the hooks over and over for each frame.
8 (prepare_menu_bars): Pass value from update_menu_bar
9 as HOOKS_RUN of next call.
10
11 * keyboard.c (safe_run_hooks_1): Don't crash if Vrun_hooks is nil.
12
12006-07-28 Kim F. Storm <storm@cua.dk> 132006-07-28 Kim F. Storm <storm@cua.dk>
2 14
3 * alloc.c (valid_pointer_p): New function (from valid_lisp_object_p). 15 * alloc.c (valid_pointer_p): New function (from valid_lisp_object_p).
@@ -182,6 +194,14 @@
182 (mac_initialize_display_info) [MAC_OSX]: Use CGDisplaySamplesPerPixel. 194 (mac_initialize_display_info) [MAC_OSX]: Use CGDisplaySamplesPerPixel.
183 (x_delete_display): Apply 2006-07-04 change for xterm.c. 195 (x_delete_display): Apply 2006-07-04 change for xterm.c.
184 196
1972006-07-17 Richard Stallman <rms@gnu.org>
198
199 * keyboard.c (Vcommand_error_function): New variable.
200 (syms_of_keyboard): Defvar it.
201 (cmd_error_internal): Simplify, and handle Vcommand_error_function.
202
203 * dispnew.c (init_display): Mention DISPLAY as well as TERM in err msg.
204
1852006-07-17 Kim F. Storm <storm@cua.dk> 2052006-07-17 Kim F. Storm <storm@cua.dk>
186 206
187 * xdisp.c (handle_single_display_spec): Ensure the right value of 207 * xdisp.c (handle_single_display_spec): Ensure the right value of