From 2fd51203647c6fd5bf28542288e743901440c3d2 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 14 Apr 2013 10:31:05 +0200 Subject: [PATCH] org.el (org-open-line): Rename from `org-ctrl-o' * org.el (org-open-line): Rename from `org-ctrl-o'. (org-mode-map): Use `remap'. Thanks to Sean O'Halpin for pointing this. --- lisp/org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index e9a37b769..92d75982a 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -18974,7 +18974,7 @@ BEG and END default to the buffer boundaries." (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c) (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches) (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies) -(org-defkey org-mode-map "\C-o" 'org-ctrl-o) +(org-defkey org-mode-map [remap open-line] 'org-open-line) (org-defkey org-mode-map "\C-m" 'org-return) (org-defkey org-mode-map "\C-j" 'org-return-indent) (org-defkey org-mode-map "\C-c?" 'org-table-field-info) @@ -20233,7 +20233,7 @@ Also updates the keyword regular expressions." (let ((org-note-abort t)) (funcall org-finish-function)))) -(defun org-ctrl-o (n) +(defun org-open-line (n) "Insert a new row in tables, call `open-line' elsewhere." (interactive "*p") (if (org-at-table-p)