diff options
| author | Karl Fogel | 2007-07-15 01:34:15 +0000 |
|---|---|---|
| committer | Karl Fogel | 2007-07-15 01:34:15 +0000 |
| commit | 36ae4ff74e439d0624dc06969b1f9f542eb19671 (patch) | |
| tree | c3a4491781cccb37461b16a956763b3121bd3645 | |
| parent | 4207db9aafd92bd6d03c994f18390a58d278210d (diff) | |
| download | emacs-36ae4ff74e439d0624dc06969b1f9f542eb19671.tar.gz emacs-36ae4ff74e439d0624dc06969b1f9f542eb19671.zip | |
Revert recent bookmark keybinding changes, thus returning to using
three slots under C-x r. See this message and its thread for details:
http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html.
* lisp/bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com.
* etc/NEWS: Revert 2007-07-13T23:20:21Z!kfogel@red-bean.com, which
documented bookmark keybinding changes that were later reverted.
* man/ChangeLog: Remove ChangeLog entry for accidentally uncommitted
changes to regs.texi that would have documented the keybinding
change reverted above.
| -rw-r--r-- | etc/ChangeLog | 5 | ||||
| -rw-r--r-- | etc/NEWS | 3 | ||||
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/bookmark.el | 6 | ||||
| -rw-r--r-- | man/ChangeLog | 6 |
5 files changed, 15 insertions, 11 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index be966266ee0..3b459fc952b 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-07-15 Karl Fogel <kfogel@red-bean.com> | ||
| 2 | |||
| 3 | * NEWS: Revert 2007-07-13T23:20:21Z!kfogel@red-bean.com, which | ||
| 4 | documented bookmark keybinding changes that were later reverted. | ||
| 5 | |||
| 1 | 2007-07-14 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 6 | 2007-07-14 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 7 | ||
| 3 | * PROBLEMS: Mention gtk-engines-qt problem. | 8 | * PROBLEMS: Mention gtk-engines-qt problem. |
| @@ -57,9 +57,6 @@ recenter the visited source file. Its value can be a number (for example, | |||
| 57 | 57 | ||
| 58 | ** New command kill-matching-buffers kills buffers whose name matches a regexp. | 58 | ** New command kill-matching-buffers kills buffers whose name matches a regexp. |
| 59 | 59 | ||
| 60 | ** Bookmark commands live under prefix C-x p now, instead of C-x r. Some of | ||
| 61 | the individual bindings have changed; do C-x p C-h for details. | ||
| 62 | |||
| 63 | 60 | ||
| 64 | * New Modes and Packages in Emacs 23.1 | 61 | * New Modes and Packages in Emacs 23.1 |
| 65 | 62 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1e206d111f4..526d7d021e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2007-07-15 Karl Fogel <kfogel@red-bean.com> | ||
| 2 | |||
| 3 | * bookmark.el: Revert 2007-07-13T18:16:17Z!kfogel@red-bean.com, | ||
| 4 | thus restoring bookmark bindings to three slots under C-x r. See | ||
| 5 | http://lists.gnu.org/archive/html/emacs-devel/2007-07/msg00705.html. | ||
| 6 | |||
| 1 | 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change) | 7 | 2007-07-15 Jeff Miller <jmiller@cablespeed.com> (tiny change) |
| 2 | 8 | ||
| 3 | * calendar/cal-bahai.el (calendar-goto-bahai-date): Add autoload | 9 | * calendar/cal-bahai.el (calendar-goto-bahai-date): Add autoload |
diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 6ef2ea198d3..75c4826ae0b 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el | |||
| @@ -224,6 +224,10 @@ following in your `.emacs' file: | |||
| 224 | ;; Set up these bindings dumping time *only*; | 224 | ;; Set up these bindings dumping time *only*; |
| 225 | ;; if the user alters them, don't override the user when loading bookmark.el. | 225 | ;; if the user alters them, don't override the user when loading bookmark.el. |
| 226 | 226 | ||
| 227 | ;;;###autoload (define-key ctl-x-map "rb" 'bookmark-jump) | ||
| 228 | ;;;###autoload (define-key ctl-x-map "rm" 'bookmark-set) | ||
| 229 | ;;;###autoload (define-key ctl-x-map "rl" 'bookmark-bmenu-list) | ||
| 230 | |||
| 227 | ;;;###autoload | 231 | ;;;###autoload |
| 228 | (defvar bookmark-map nil | 232 | (defvar bookmark-map nil |
| 229 | "Keymap containing bindings to bookmark functions. | 233 | "Keymap containing bindings to bookmark functions. |
| @@ -234,8 +238,6 @@ functions have a binding in this keymap.") | |||
| 234 | 238 | ||
| 235 | ;;;###autoload (define-prefix-command 'bookmark-map) | 239 | ;;;###autoload (define-prefix-command 'bookmark-map) |
| 236 | 240 | ||
| 237 | ;;;###autoload (define-key ctl-x-map "p" bookmark-map) | ||
| 238 | |||
| 239 | ;; Read the help on all of these functions for details... | 241 | ;; Read the help on all of these functions for details... |
| 240 | ;;;###autoload (define-key bookmark-map "x" 'bookmark-set) | 242 | ;;;###autoload (define-key bookmark-map "x" 'bookmark-set) |
| 241 | ;;;###autoload (define-key bookmark-map "m" 'bookmark-set) ;"m"ark | 243 | ;;;###autoload (define-key bookmark-map "m" 'bookmark-set) ;"m"ark |
diff --git a/man/ChangeLog b/man/ChangeLog index 8afb01ed216..ad39b9fce15 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,9 +1,3 @@ | |||
| 1 | 2007-07-13 Karl Fogel <kfogel@red-bean.com> | ||
| 2 | |||
| 3 | * regs.texi (Bookmarks): Adjust for recent keybinding changes in | ||
| 4 | bookmark.el, namely 2007-07-13T18:16:17Z!kfogel@red-bean.com and | ||
| 5 | 2007-07-13T18:20:55Z!kfogel@red-bean.com. | ||
| 6 | |||
| 7 | 2007-07-13 Eli Zaretskii <eliz@gnu.org> | 1 | 2007-07-13 Eli Zaretskii <eliz@gnu.org> |
| 8 | 2 | ||
| 9 | * Makefile.in (../info/emacs-mime): Use --enable-encoding. | 3 | * Makefile.in (../info/emacs-mime): Use --enable-encoding. |