aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-01-21 00:33:07 +0000
committerRichard M. Stallman2005-01-21 00:33:07 +0000
commit6f771c32b0b66240cbb2214e6977ba072155fd16 (patch)
tree80917e94fac6555432f9bde86609a4abb5a23746
parent674a954a1deba3f9a5a382f2bfe4a0b48e71e204 (diff)
downloademacs-6f771c32b0b66240cbb2214e6977ba072155fd16.tar.gz
emacs-6f771c32b0b66240cbb2214e6977ba072155fd16.zip
*** empty log message ***
-rw-r--r--etc/TODO4
-rw-r--r--lispref/ChangeLog4
-rw-r--r--man/ChangeLog24
-rw-r--r--src/ChangeLog9
4 files changed, 39 insertions, 2 deletions
diff --git a/etc/TODO b/etc/TODO
index 95f7fa8f469..e8845c03ee1 100644
--- a/etc/TODO
+++ b/etc/TODO
@@ -20,6 +20,10 @@ to the FSF.
20** Redefine define-generic-mode as a macro, so the compiler 20** Redefine define-generic-mode as a macro, so the compiler
21 sees the definitions it generates. 21 sees the definitions it generates.
22 22
23** Change the way define-minor-mode handles autoloading.
24 It should not generate :require. Or :require in defcustom
25 should not be recorded in the user's custom-set-variables call.
26
23* Important features: 27* Important features:
24 28
25** Provide user-friendly ways to list all available font families, 29** Provide user-friendly ways to list all available font families,
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index e31f6530afa..12b67ac30b3 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -3,6 +3,10 @@
3 * keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses 3 * keymaps.texi (Changing Key Bindings): `suppress-keymap' now uses
4 command remapping. 4 command remapping.
5 5
62005-01-15 Richard M. Stallman <rms@gnu.org>
7
8 * display.texi (Defining Images): Mention DATA-P arg of create-image.
9
62005-01-14 Kim F. Storm <storm@cua.dk> 102005-01-14 Kim F. Storm <storm@cua.dk>
7 11
8 * commands.texi (Accessing Events): Add WHOLE arg to posn-at-x-y. 12 * commands.texi (Accessing Events): Add WHOLE arg to posn-at-x-y.
diff --git a/man/ChangeLog b/man/ChangeLog
index e3f04332cf6..f2015a33187 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,8 +1,16 @@
12005-01-20 Richard M. Stallman <rms@gnu.org>
2
3 * calendar.texi (Time Intervals): Delete special stuff for MS-DOS.
4
12005-01-19 Jay Belanger <belanger@truman.edu> 52005-01-19 Jay Belanger <belanger@truman.edu>
2 6
3 * calc.texi (Keep Arguments): Mention that keeping arguments 7 * calc.texi (Keep Arguments): Mention that keeping arguments
4 doesn't work with keyboard macros. 8 doesn't work with keyboard macros.
5 9
102005-01-16 Richard M. Stallman <rms@gnu.org>
11
12 * autotype.texi (Autoinserting): Fix small error.
13
62005-01-16 Michael Albinus <michael.albinus@gmx.de> 142005-01-16 Michael Albinus <michael.albinus@gmx.de>
7 15
8 Sync with Tramp 2.0.47. 16 Sync with Tramp 2.0.47.
@@ -11,8 +19,20 @@
11 remote files. 19 remote files.
12 20
132005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net> 212005-01-15 Sergey Poznyakoff <gray@Mirddin.farlep.net>
14 22
15 * man/rmail.texi: Document support for GNU mailutils in rmail.el. 23 * man/rmail.texi (Movemail): Explain differences
24 between standard and mailutils versions of movemail.
25 Describe command line and configuration options introduced
26 with the latter.
27 Explain the notion of mailbox URL, provide examples and
28 cross-references to mailutils documentation.
29 Describe various methods of specifying mailbox names,
30 user names and user passwords for rmail.
31 (Remote Mailboxes): New section. Describe
32 how movemail handles remote mailboxes. Describe configuration
33 options used to control its behavior.
34 (Other Mailbox Formats): Explain handling of various mailbox
35 formats.
16 36
172005-01-13 Richard M. Stallman <rms@gnu.org> 372005-01-13 Richard M. Stallman <rms@gnu.org>
18 38
diff --git a/src/ChangeLog b/src/ChangeLog
index 4b33af4bc4a..105e2f296f2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12005-01-20 Richard M. Stallman <rms@gnu.org>
2
3 * editfns.c (Fmessage): If arg is "", return "" (as before).
4
5 * keymap.c (access_keymap): Protect from bad value of meta_prefix_char.
6
7 * .gdbinit (xgetptr, xgetint, xgettype): Copy $arg0 into a temp
8 variable.
9
12005-01-20 Steven Tamm <steventamm@mac.com> 102005-01-20 Steven Tamm <steventamm@mac.com>
2 11
3 * editfns.c (Voperating_system_release): Added. 12 * editfns.c (Voperating_system_release): Added.