From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gregor Zattler Subject: [PATCH] ; * doc/org.texi (Key bindings and useful functions): Beautify table. Date: Sun, 8 Jan 2017 22:56:50 +0100 Message-ID: <20170108215650.uqbi64ijsr34d73u@len.workgroup> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48094) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cQLTB-0004vU-TO for emacs-orgmode@gnu.org; Sun, 08 Jan 2017 16:57:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cQLT8-0003Mw-Sz for emacs-orgmode@gnu.org; Sun, 08 Jan 2017 16:57:41 -0500 Received: from mout.gmx.net ([212.227.15.18]:64556) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cQLT8-0003MM-IP for emacs-orgmode@gnu.org; Sun, 08 Jan 2017 16:57:38 -0500 Received: from boo.workgroup ([84.189.146.230]) by mail.gmx.com (mrgmx001 [212.227.17.190]) with ESMTPSA (Nemesis) id 0MEGIi-1cFIrH1tQO-00FQst for ; Sun, 08 Jan 2017 22:57:35 +0100 Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode Correctly render table of org-babel key bindings even in info mode. [tiny change] Copyright-paperwork-exempt: yes --- in http://orgmode.org/manual/Key-bindings-and-useful-functions.html#Key-bindings-and-useful-functions there is a table with two key bindings on every line where as in (info "Key bindings an useful functions")) these lines are split up so that part of the second key binding is on a separate line: #+BEGIN_EXAMPLE Active key bindings in Org mode buffer: ‘C-c C-v p’ or ‘C-c C-v ‘org-babel-previous-src-block’ C-p’ ‘C-c C-v n’ or ‘C-c C-v ‘org-babel-next-src-block’ C-n’ #+END_EXAMPLE This is how I would expect this lines to look: #+BEGIN_EXAMPLE Active key bindings in Org mode buffer: ‘C-c C-v p’ or ‘C-c C-v C-p’ ‘org-babel-previous-src-block’ ‘C-c C-v n’ or ‘C-c C-v C-n’ ‘org-babel-next-src-block’ #+END_EXAMPLE I consider this to be a bug. This trivial patch fixes this. doc/org.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/org.texi b/doc/org.texi index 2d153ac25..7772d8b84 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -16716,7 +16716,7 @@ Active key bindings in code blocks: Active key bindings in Org mode buffer: -@multitable @columnfractions 0.45 0.55 +@multitable @columnfractions 0.5 0.5 @kindex C-c C-v p @kindex C-c C-v C-p @item @kbd{C-c C-v p} @ @ @r{or} @ @ @kbd{C-c C-v C-p} @tab @code{org-babel-previous-src-block} -- 2.11.0