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-<down>"]
         ["Delete Row" org-shiftmetaup :active (org-at-table-p) :keys 
"M-S-<up>"]
         ["Insert Row" org-shiftmetadown :active (org-at-table-p) :keys 
"M-S-<down>"]
-        ["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

  


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to