From: Romain Francoise Date: Fri, 24 Mar 2006 13:59:22 +0000 (+0000) Subject: (ctl-x-5-map): Really bind C-x 5 C-o to `display-buffer-other-frame'. X-Git-Tag: emacs-pretest-22.0.90~3444 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3095ccf511e7783bdde6b83001401650c187d900;p=emacs.git (ctl-x-5-map): Really bind C-x 5 C-o to `display-buffer-other-frame'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d3a9d146c02..82aca189fe9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-03-24 Romain Francoise + + * files.el (ctl-x-5-map): Really bind C-x 5 C-o to + `display-buffer-other-frame'. + 2006-03-24 Kim F. Storm * 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." (define-key ctl-x-5-map "f" 'find-file-other-frame) (define-key ctl-x-5-map "\C-f" 'find-file-other-frame) (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame) -(define-key ctl-x-4-map "\C-o" 'display-buffer-other-frame) +(define-key ctl-x-5-map "\C-o" 'display-buffer-other-frame) ;; arch-tag: bc68d3ea-19ca-468b-aac6-3a4a7766101f ;;; files.el ends here