diff options
| author | Romain Francoise | 2006-03-24 13:59:22 +0000 |
|---|---|---|
| committer | Romain Francoise | 2006-03-24 13:59:22 +0000 |
| commit | 3095ccf511e7783bdde6b83001401650c187d900 (patch) | |
| tree | 95f353396fe911b8d31890e889bee92b92142ce0 | |
| parent | f4517e516bff4013b84102bfe04700d257bd4e79 (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/files.el | 2 |
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 @@ | |||
| 1 | 2006-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 | |||
| 1 | 2006-03-24 Kim F. Storm <storm@cua.dk> | 6 | 2006-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 |