aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Francoise2006-03-24 13:59:22 +0000
committerRomain Francoise2006-03-24 13:59:22 +0000
commit3095ccf511e7783bdde6b83001401650c187d900 (patch)
tree95f353396fe911b8d31890e889bee92b92142ce0
parentf4517e516bff4013b84102bfe04700d257bd4e79 (diff)
downloademacs-3095ccf511e7783bdde6b83001401650c187d900.tar.gz
emacs-3095ccf511e7783bdde6b83001401650c187d900.zip
(ctl-x-5-map): Really bind C-x 5 C-o to `display-buffer-other-frame'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/files.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d3a9d146c02..82aca189fe9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12006-03-24 Romain Francoise <romain@orebokech.com>
2
3 * files.el (ctl-x-5-map): Really bind C-x 5 C-o to
4 `display-buffer-other-frame'.
5
12006-03-24 Kim F. Storm <storm@cua.dk> 62006-03-24 Kim F. Storm <storm@cua.dk>
2 7
3 * apropos.el (apropos-synonyms): Add selection => region. 8 * apropos.el (apropos-synonyms): Add selection => region.
diff --git a/lisp/files.el b/lisp/files.el
index fc44193838d..affb22b2586 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -5151,7 +5151,7 @@ With prefix arg, silently save all file-visiting buffers, then kill."
5151(define-key ctl-x-5-map "f" 'find-file-other-frame) 5151(define-key ctl-x-5-map "f" 'find-file-other-frame)
5152(define-key ctl-x-5-map "\C-f" 'find-file-other-frame) 5152(define-key ctl-x-5-map "\C-f" 'find-file-other-frame)
5153(define-key ctl-x-5-map "r" 'find-file-read-only-other-frame) 5153(define-key ctl-x-5-map "r" 'find-file-read-only-other-frame)
5154(define-key ctl-x-4-map "\C-o" 'display-buffer-other-frame) 5154(define-key ctl-x-5-map "\C-o" 'display-buffer-other-frame)
5155 5155
5156;; arch-tag: bc68d3ea-19ca-468b-aac6-3a4a7766101f 5156;; arch-tag: bc68d3ea-19ca-468b-aac6-3a4a7766101f
5157;;; files.el ends here 5157;;; files.el ends here