From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Dr. Volker Zell" Subject: Error when switching on org-table minor mode in mail/message buffers Date: Thu, 28 Feb 2008 18:06:24 +0100 Message-ID: <7ztzjtxb73.fsf@vzell-de.de.oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JUmDg-0002Ti-Ux for emacs-orgmode@gnu.org; Thu, 28 Feb 2008 12:06:57 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JUmDf-0002Rp-36 for emacs-orgmode@gnu.org; Thu, 28 Feb 2008 12:06:56 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JUmDe-0002Rh-Tr for emacs-orgmode@gnu.org; Thu, 28 Feb 2008 12:06:54 -0500 Received: from agminet01.oracle.com ([141.146.126.228]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JUmDe-0004Vx-DZ for emacs-orgmode@gnu.org; Thu, 28 Feb 2008 12:06:54 -0500 Received: from agmgw1.us.oracle.com (agmgw1.us.oracle.com [152.68.180.212]) by agminet01.oracle.com (Switch-3.2.4/Switch-3.1.7) with ESMTP id m1SH6SVB011144 for ; Thu, 28 Feb 2008 11:06:29 -0600 Received: from acsmt356.oracle.com (acsmt356.oracle.com [141.146.40.156]) by agmgw1.us.oracle.com (Switch-3.2.0/Switch-3.2.0) with ESMTP id m1SGugka002046 for ; Thu, 28 Feb 2008 10:06:28 -0700 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi When trying to switch on org table minor mode in mail or message buffers I get: not a keyword: (org-at-table-p), ["Sort lines in region" org-table-sort-lines (org-at-table-p) :keys "C-c ^"] The folowing fixes it for me: --- org.el 2008-02-19 09:14:57.000000000 +0100 +++ /tmp/org.el 2008-02-28 17:42:08.093750000 +0100 @@ -11393,7 +11393,7 @@ ["Move Row Down" org-metadown :active (org-at-table-p) :keys "M-"] ["Delete Row" org-shiftmetaup :active (org-at-table-p) :keys "M-S-"] ["Insert Row" org-shiftmetadown :active (org-at-table-p) :keys "M-S-"] - ["Sort lines in region" org-table-sort-lines (org-at-table-p) :keys "C-c ^"] + ["Sort lines in region" org-table-sort-lines :active (org-at-table-p) :keys "C-c ^"] "--" ["Insert Hline" org-table-insert-hline :active (org-at-table-p) :keys "C-c -"]) ("Rectangle" Ciao Volker