aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2007-02-11 22:30:21 +0000
committerKim F. Storm2007-02-11 22:30:21 +0000
commitb58cb59f101418679f72f75fbbee692997339e1a (patch)
tree87568ae099e686ba582dbf786a37eef4d64bbfc9
parente3441e506a7c17d817b2f22365adc1115de54e66 (diff)
downloademacs-b58cb59f101418679f72f75fbbee692997339e1a.tar.gz
emacs-b58cb59f101418679f72f75fbbee692997339e1a.zip
*** empty log message ***
-rw-r--r--admin/FOR-RELEASE2
-rw-r--r--etc/NEWS8
-rw-r--r--lisp/ChangeLog13
3 files changed, 19 insertions, 4 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 4f61f189803..42f7ff76d67 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -12,6 +12,8 @@ make sure all the pages really look ok in the manual as formatted.
12 12
13** Update AUTHORS. 13** Update AUTHORS.
14 14
15** Cleanup temporary +++/--- lines in etc/NEWS.
16
15** Regenerate the postscript files of the reference cards in etc. 17** Regenerate the postscript files of the reference cards in etc.
16 18
17** Ask maintainers of refcard translations to update them. 19** Ask maintainers of refcard translations to update them.
diff --git a/etc/NEWS b/etc/NEWS
index d29a7bee5fa..98814ba2593 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -346,6 +346,14 @@ special treatment in `dired-do-shell-command'.
346** Adaptive filling misfeature removed. 346** Adaptive filling misfeature removed.
347It no longer treats `NNN.' or `(NNN)' as a prefix. 347It no longer treats `NNN.' or `(NNN)' as a prefix.
348 348
349---
350** The register compatibility key bindings (deprecated since Emacs 19)
351have been removed:
352 C-x / point-to-register (Use: C-x r SPC)
353 C-x j jump-to-register (Use: C-x r j)
354 C-x x copy-to-register (Use: C-x r s)
355 C-x g insert-register (Use: C-x r i)
356
349 357
350* Editing Changes in Emacs 22.1 358* Editing Changes in Emacs 22.1
351 359
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 82417c2f4d0..4d9f1b3c047 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-02-11 Kim F. Storm <storm@cua.dk>
2
3 * bindings.el (ctl-x-map): Remove register compatibility bindings
4 C-x /, C-x j, C-x x, and C-x g (deprecated since Emacs 19).
5
12007-02-11 Richard Stallman <rms@gnu.org> 62007-02-11 Richard Stallman <rms@gnu.org>
2 7
3 * loadhist.el (unload-feature): Handle (t . SYMBOL) entries 8 * loadhist.el (unload-feature): Handle (t . SYMBOL) entries
@@ -8,10 +13,10 @@
8 13
92007-02-11 Carsten Dominik <dominik@science.uva.nl> 142007-02-11 Carsten Dominik <dominik@science.uva.nl>
10 15
11 * textmodes/org.el (org-agenda-get-todos) 16 * textmodes/org.el (org-agenda-get-todos)
12 (org-agenda-get-timestamps, org-agenda-get-closed) 17 (org-agenda-get-timestamps, org-agenda-get-closed)
13 (org-agenda-get-deadlines, org-agenda-get-scheduled) 18 (org-agenda-get-deadlines, org-agenda-get-scheduled)
14 (org-agenda-get-blocks, org-format-agenda-item) 19 (org-agenda-get-blocks, org-format-agenda-item)
15 (org-agenda-change-all-lines, org-scan-tags): Rename text property 20 (org-agenda-change-all-lines, org-scan-tags): Rename text property
16 from `category' to `org-category'. 21 from `category' to `org-category'.
17 22