aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-10-28 23:35:13 +0000
committerStefan Monnier2004-10-28 23:35:13 +0000
commit2d5864780c735e5ec88c609435a35177b052ccc3 (patch)
tree1f07d76ffceeac05acd5a2f50f786a58b5703cf0
parenta122087b889271c792b62147a9f633060d903cb3 (diff)
downloademacs-2d5864780c735e5ec88c609435a35177b052ccc3.tar.gz
emacs-2d5864780c735e5ec88c609435a35177b052ccc3.zip
*** empty log message ***
-rw-r--r--etc/NEWS6
-rw-r--r--lisp/ChangeLog13
-rw-r--r--src/ChangeLog7
-rw-r--r--src/ChangeLog.812
4 files changed, 30 insertions, 8 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 713ddea4521..27e3d815f3c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3106,11 +3106,13 @@ KEEP-MARGINS which will preserve the window's current margin, fringe,
3106and scroll-bar settings if non-nil. 3106and scroll-bar settings if non-nil.
3107 3107
3108+++ 3108+++
3109** Renamed file hooks to follow the convention: 3109** Renamed hooks to better follow the naming convention:
3110find-file-hooks to find-file-hook, 3110find-file-hooks to find-file-hook,
3111find-file-not-found-hooks to find-file-not-found-functions, 3111find-file-not-found-hooks to find-file-not-found-functions,
3112write-file-hooks to write-file-functions, 3112write-file-hooks to write-file-functions,
3113write-contents-hooks to write-contents-functions. 3113write-contents-hooks to write-contents-functions,
3114x-lost-selection-hooks to x-lost-selection-functions,
3115x-sent-selection-hooks to x-sent-selection-functions.
3114Marked local-write-file-hooks as obsolete (use the LOCAL arg of `add-hook'). 3116Marked local-write-file-hooks as obsolete (use the LOCAL arg of `add-hook').
3115 3117
3116+++ 3118+++
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3db9724a749..43df724bb4c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,16 @@
12004-10-28 Stefan <monnier@iro.umontreal.ca>
2
3 * mouse.el (mouse-show-mark): Adjust to new name and don't assume
4 x-lost-selection-functions is bound.
5
6 * mouse-sel.el (mouse-sel-mode):
7 * emacs-lisp/lselect.el: Adjust to new names for
8 x-(lost|sent)-selection-functions.
9
10 * subr.el (x-lost-selection-hooks, x-sent-selection-hooks):
11 New obsolete aliases of x-lost-selection-functions and
12 x-sent-selection-functions.
13
12004-10-28 Kim F. Storm <storm@cua.dk> 142004-10-28 Kim F. Storm <storm@cua.dk>
2 15
3 * imenu.el (imenu-scanning-message): Remove. 16 * imenu.el (imenu-scanning-message): Remove.
diff --git a/src/ChangeLog b/src/ChangeLog
index 891c165ab01..3b327c24548 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,10 @@
12004-10-28 Stefan <monnier@iro.umontreal.ca>
2
3 * xselect.c (Vx_lost_selection_functions, Vx_sent_selection_functions):
4 Rename from Vx_lost_selection_hooks and Vx_sent_selection_hooks.
5 (x_handle_selection_request, x_handle_selection_clear)
6 (x_clear_frame_selections, syms_of_xselect): Adjust accordingly.
7
12004-10-28 Richard M. Stallman <rms@gnu.org> 82004-10-28 Richard M. Stallman <rms@gnu.org>
2 9
3 * w32fns.c (Fx_server_vendor, Fx_server_version): Doc fixes. 10 * w32fns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
diff --git a/src/ChangeLog.8 b/src/ChangeLog.8
index 91fcdd1c899..a9465058194 100644
--- a/src/ChangeLog.8
+++ b/src/ChangeLog.8
@@ -6,25 +6,25 @@
6 6
71999-12-31 William M. Perry <wmperry@aventail.com> 71999-12-31 William M. Perry <wmperry@aventail.com>
8 8
9 * xfns.c (jpeg_format): Added the :data keyword 9 * xfns.c (jpeg_format): Add the :data keyword
10 (jpeg_image_p): JPEG is valid with :file _or_ :data 10 (jpeg_image_p): JPEG is valid with :file _or_ :data
11 (jpeg_memory_src): Defined new JPEG image source to read from a 11 (jpeg_memory_src): Define new JPEG image source to read from a
12 memory buffer. 12 memory buffer.
13 (jpeg_load): Pay attention to the :data keyword if specified. 13 (jpeg_load): Pay attention to the :data keyword if specified.
14 Instantiates a jpeg_memory_src instead of jpeg_stdio_src if found. 14 Instantiates a jpeg_memory_src instead of jpeg_stdio_src if found.
15 (png_format): Added the :data keyword 15 (png_format): Add the :data keyword
16 (png_image_p): PNG is valid with :file _or_ :data 16 (png_image_p): PNG is valid with :file _or_ :data
17 (png_read_from_memory): New PNG read function to read from a 17 (png_read_from_memory): New PNG read function to read from a
18 memory buffer. 18 memory buffer.
19 (png_load): Pay attention to the :data keyword if specified. 19 (png_load): Pay attention to the :data keyword if specified.
20 Use png_set_read_fn() instead of png_init_io() if specified. 20 Use png_set_read_fn() instead of png_init_io() if specified.
21 (tiff_format): Added the :data keyword for TIFF images. 21 (tiff_format): Add the :data keyword for TIFF images.
22 (tiff_image_p): TIFF is valid with :file _or_ :data 22 (tiff_image_p): TIFF is valid with :file _or_ :data
23 (tiff_read_from_memory): Defined new TIFF I/O functions to read 23 (tiff_read_from_memory): Define new TIFF I/O functions to read
24 from a memory buffer. 24 from a memory buffer.
25 (tiff_load): Pay attention to the :data keyword if specified. 25 (tiff_load): Pay attention to the :data keyword if specified.
26 Uses TIFFClientOpen() instead of TIFFOpen() if specified. 26 Uses TIFFClientOpen() instead of TIFFOpen() if specified.
27 (gif_format): Added the :data keyword 27 (gif_format): Add the :data keyword
28 (gif_image_p): GIF is valid with :file _or_ :data 28 (gif_image_p): GIF is valid with :file _or_ :data
29 (gif_read_from_memory): New GIF input function to read from a 29 (gif_read_from_memory): New GIF input function to read from a
30 memory buffer. 30 memory buffer.