From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: orgtbl in latex files, problem Date: Thu, 10 Dec 2015 14:05:09 +0000 Message-ID: <87vb86v1pm.fsf@mat.ucm.es> 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]:50450) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a71qV-00035E-Qw for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 09:05:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a71qR-0005CM-H7 for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 09:05:23 -0500 Received: from plane.gmane.org ([80.91.229.3]:47806) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a71qR-0005C6-Ad for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 09:05:19 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1a71qN-0004TA-7Q for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 15:05:15 +0100 Received: from gilgamesch.quim.ucm.es ([147.96.12.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Dec 2015 15:05:15 +0100 Received: from oub by gilgamesch.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Dec 2015 15:05:15 +0100 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello I swear that usually worked in my latex files. Situation: In my latex file I have orgtbl-mode enabled, I insert A radio table and I obtain ,---- | | \documentclass[12pt]{article} | \begin{document} | % BEGIN RECEIVE ORGTBL test | % END RECEIVE ORGTBL test | \begin{comment} | #+ORGTBL: SEND test orgtbl-to-latex :lend "\\\\ \\hline" | | 3 | 4 | | | | | | \end{comment} `---- \end{document} Now when the cursor is on the table, decribe key C-c C-c returns ,---- | | C-c C-c runs the command orgtbl-hijacker-command-1002 (found in | orgtbl-mode-map), which is an interactive Lisp function. | | It is bound to C-c C-c. | | (orgtbl-hijacker-command-1002 ARG) | | In tables, run ‘org-ctrl-c-ctrl-c’. | Outside of tables, run the binding of ‘C-c C-c’. `---- Since I have the setting (add-hook 'orgtbl-mode-hook (lambda () (org-defkey orgtbl-mode-map "\C-c\C-c" (orgtbl-make-binding 'org-ctrl-c-ctrl-c 1002 "\C-c\C-c")))) However when I put the cursor on the table and run C-c C-c it returns user-error: C-c C-c can do nothing useful at this location What is wrong? I am sure that worked before. Uwe Brauer