Nick Dokos <nicholas.do...@hp.com> wrote:

> 31ceed47ffd3070418dd34316fef8869d2434c26 is first bad commit
> commit 31ceed47ffd3070418dd34316fef8869d2434c26
> Author: Carsten Dominik <carsten.domi...@gmail.com>
> Date:   Tue Jun 30 07:24:57 2009 +0200
> 
>     New minor mode org-indent-mode
>     
>     This mode implements outline indentation similar to clean view, but in
>     a dynamic and virtual way, at display time.
> 

I looked over the commit and saw this change to org-table.el:

    ...
    (if (equal (char-before) ?\n)
        ;; This hack is for org-indent, to force redisplay of the
        ;; line prefix of the first line. Apparently the redisplay
        ;; is tied to the newline, which is, I think, a bug.
        ;; To force this redisplay, we remove and re-insert the
        ;; newline, so that the redisplay engine thinks it belongs
        ;; to the changed text.
        (progn
          (backward-delete-char 1)
          (insert "\n")))
    ...

I commented it out and the export of the table worked - but I have no
idea why.

Nick




_______________________________________________
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