Re: [Orgmode] Re: Comments in Org-mode

2009-07-15 Thread Manuel Amador
Sebastian, The proposed fix by Samuel did seem to correct this problem for me. This is what I added to my .emacs file: (require 'filladapt) ;; fixes problems with autofill in orgmode (if (featurep 'filladapt) (filladapt-mode 1)) (setq filladapt-token-table '( ;; this must be first ("^

Re: [Orgmode] Re: Comments in Org-mode

2009-07-15 Thread Sebastian Rose
Matthew Lundin writes: > Manuel Amador writes: > >> I think I have found a bug (or a feature!). Sometimes when >> writing documents I tend to comment out a line by adding a "#" >> in the column 0. However, after doing this in a line at the >> middle of the document, I get the following behavior:

[Orgmode] Re: Comments in Org-mode

2009-07-15 Thread Manuel Amador
Samuel, Your previous fix does seem to work for me. Thanks! Manuel On Wed, Jul 15, 2009 at 09:03:44AM -0700, Samuel Wales wrote: > If it does not fully solve the problem, make comment-start a local > variable, check fill-prefix, and make sure your load and mode hooks > don't affect filling, or

[Orgmode] Re: Comments in Org-mode

2009-07-15 Thread Samuel Wales
If it does not fully solve the problem, make comment-start a local variable, check fill-prefix, and make sure your load and mode hooks don't affect filling, or if they do, that they are idempotent. (setq comment-empty-lines t) (set (make-local-variable 'comment-start) "#") On Wed, J

[Orgmode] Re: Comments in Org-mode

2009-07-15 Thread Matthew Lundin
Manuel Amador writes: > I think I have found a bug (or a feature!). Sometimes when > writing documents I tend to comment out a line by adding a "#" > in the column 0. However, after doing this in a line at the > middle of the document, I get the following behavior: > > ---