Browse Source

Minor fixes.

Carsten Dominik 16 years ago
parent
commit
5a890b3473
4 changed files with 10 additions and 1 deletions
  1. 3 0
      lisp/ChangeLog
  2. 5 0
      lisp/org-export-latex.el
  3. 1 0
      lisp/org-table.el
  4. 1 1
      lisp/org.el

+ 3 - 0
lisp/ChangeLog

@@ -1,5 +1,8 @@
 2008-09-02  Carsten Dominik  <dominik@science.uva.nl>
 
+	* org-export-latex.el (org-export-latex): New customization
+	group.
+
 	* org-agenda.el (org-write-agenda): Erase buffer for txt export.
 
 2008-09-01  Carsten Dominik  <dominik@science.uva.nl>

+ 5 - 0
lisp/org-export-latex.el

@@ -76,6 +76,11 @@
 
 ;;; User variables:
 
+(defgroup org-export-latex nil
+  "Options for exporting Org-mode files to LaTeX."
+  :tag "Org Export LaTeX"
+  :group 'org-export)
+
 (defcustom org-export-latex-default-class "article"
   "The default LaTeX class."
   :group 'org-export-latex

+ 1 - 0
lisp/org-table.el

@@ -3552,6 +3552,7 @@ a radio table."
 	(delete-region beg (point))))
     (insert txt "\n")))
 
+;;;###autoload
 (defun org-table-to-lisp (&optional txt)
   "Convert the table at point to a Lisp structure.
 The structure will be a list.  Each item is either the symbol `hline'

+ 1 - 1
lisp/org.el

@@ -2344,7 +2344,7 @@ outside the table.")
    org-table-rotate-recalc-marks org-table-sort-lines org-table-sum
    org-table-toggle-coordinate-overlays
    org-table-toggle-formula-debugger org-table-wrap-region
-   orgtbl-mode turn-on-orgtbl)))
+   orgtbl-mode turn-on-orgtbl org-table-to-lisp)))
 
 (defun org-at-table-p (&optional table-type)
   "Return t if the cursor is inside an org-type table.