* Please test 6.19a
@ 2009-01-25 16:06 Carsten Dominik
2009-01-25 22:50 ` Christopher Suckling
0 siblings, 1 reply; 5+ messages in thread
From: Carsten Dominik @ 2009-01-25 16:06 UTC (permalink / raw)
To: Org Mode List
Dear all,
I just uploaded org 6.19a into Emacs CVS, so that it can still
be part of the Emacs 23.1 pretest and release.
Please test the latest release and let me know as soon as possible
if there are any regressions.
Thanks.
- Carsten
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Please test 6.19a
2009-01-25 16:06 Please test 6.19a Carsten Dominik
@ 2009-01-25 22:50 ` Christopher Suckling
2009-01-26 7:24 ` Carsten Dominik
0 siblings, 1 reply; 5+ messages in thread
From: Christopher Suckling @ 2009-01-25 22:50 UTC (permalink / raw)
To: Carsten Dominik; +Cc: Org Mode List
On 25 Jan 2009, at 16:06, Carsten Dominik wrote:
> I just uploaded org 6.19a into Emacs CVS, so that it can still
> be part of the Emacs 23.1 pretest and release.
>
> Please test the latest release and let me know as soon as possible
> if there are any regressions.
Two small niggles.
1) :VISIBILITY: property
Suppose I have the headings
* Foo
* Bar
* COMMENT setup for buffer
:PROPERTIES:
:VISIBILITY: folded
:END:
#+STARTUP: overview
#+Rest of options go here
On loading the file, *Foo and *Bar are folder, as expected. *COMMENT,
however shows its content. Changing value of :VISIBILITY: has no effect.
I'm afraid I can't pinpoint in which version this started to happen,
but I'm fairly certain it was in the last fortnight.
2) LaTeX export, tables and timestamps
** Foo
** Bar
|Foo|[2009-02-25 Sun]|Bar|
If I select a region from ** Bar to Bar|, and then org-export-latex-to-
buffer, then the timestamp is omitted. If I select a region from **
Foo to Bar| and then org-export-latex-to-buffer, then the timestamp is
included.
Not sure if this is recent behaviour of not; it's a few months since
I've had cause to export a table.
Apologies that I can't further narrow down these bugs; it's a daft
couple of weeks.
Best wishes,
Christopher
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Please test 6.19a
2009-01-25 22:50 ` Christopher Suckling
@ 2009-01-26 7:24 ` Carsten Dominik
2009-01-26 19:20 ` Christopher Suckling
0 siblings, 1 reply; 5+ messages in thread
From: Carsten Dominik @ 2009-01-26 7:24 UTC (permalink / raw)
To: Christopher Suckling; +Cc: Org Mode List
On Jan 25, 2009, at 11:50 PM, Christopher Suckling wrote:
>
> On 25 Jan 2009, at 16:06, Carsten Dominik wrote:
>
>> I just uploaded org 6.19a into Emacs CVS, so that it can still
>> be part of the Emacs 23.1 pretest and release.
>>
>> Please test the latest release and let me know as soon as possible
>> if there are any regressions.
>
> Two small niggles.
>
> 1) :VISIBILITY: property
>
> Suppose I have the headings
>
> * Foo
> * Bar
> * COMMENT setup for buffer
> :PROPERTIES:
> :VISIBILITY: folded
> :END:
> #+STARTUP: overview
> #+Rest of options go here
>
> On loading the file, *Foo and *Bar are folder, as expected.
> *COMMENT, however shows its content. Changing value of :VISIBILITY:
> has no effect.
>
> I'm afraid I can't pinpoint in which version this started to happen,
> but I'm fairly certain it was in the last fortnight.
I cannot reproduce this, works fine for me.
Anything the the *Messages* buffer that indicates that visiting a new
buffer
in Org-mode crashes half-way, i.e. before the ful setup has finished?
>
>
> 2) LaTeX export, tables and timestamps
>
> ** Foo
> ** Bar
> |Foo|[2009-02-25 Sun]|Bar|
>
> If I select a region from ** Bar to Bar|, and then org-export-latex-
> to-buffer, then the timestamp is omitted. If I select a region from
> ** Foo to Bar| and then org-export-latex-to-buffer, then the
> timestamp is included.
Yes, this is a bug, thank you very much for the report.
This made me realize that it is probably a mistake to remove
time stamps from tables, even if `org-export-with-timestamps'
is nil. So from now on, time stamps in tables will not be
removed.
- Carsten
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Please test 6.19a
2009-01-26 7:24 ` Carsten Dominik
@ 2009-01-26 19:20 ` Christopher Suckling
2009-01-27 7:19 ` Carsten Dominik
0 siblings, 1 reply; 5+ messages in thread
From: Christopher Suckling @ 2009-01-26 19:20 UTC (permalink / raw)
To: Carsten Dominik; +Cc: Org Mode List
On 26 Jan 2009, at 07:24, Carsten Dominik wrote:
>
> On Jan 25, 2009, at 11:50 PM, Christopher Suckling wrote:
>
>>
>> On 25 Jan 2009, at 16:06, Carsten Dominik wrote:
>>
>>> I just uploaded org 6.19a into Emacs CVS, so that it can still
>>> be part of the Emacs 23.1 pretest and release.
>>>
>>> Please test the latest release and let me know as soon as possible
>>> if there are any regressions.
>>
>> Two small niggles.
>>
>> 1) :VISIBILITY: property
>>
>> Suppose I have the headings
>>
>> * Foo
>> * Bar
>> * COMMENT setup for buffer
>> :PROPERTIES:
>> :VISIBILITY: folded
>> :END:
>> #+STARTUP: overview
>> #+Rest of options go here
>>
>> On loading the file, *Foo and *Bar are folder, as expected.
>> *COMMENT, however shows its content. Changing value of :VISIBILITY:
>> has no effect.
>>
>> I'm afraid I can't pinpoint in which version this started to
>> happen, but I'm fairly certain it was in the last fortnight.
>
> I cannot reproduce this, works fine for me.
>
> Anything the the *Messages* buffer that indicates that visiting a
> new buffer
> in Org-mode crashes half-way, i.e. before the ful setup has finished?
Nothing in *Messages*, but I suspect:
My fault: I had (setq org-show-entry-below t) in my .emacs from
playing around with sparse trees. Setting it to (default . nil) fixes
the VISIBILITY problem. So I learn that org-show-entry-below takes
priority over VISIBILITY properties...
Best wishes,
Christopher
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Please test 6.19a
2009-01-26 19:20 ` Christopher Suckling
@ 2009-01-27 7:19 ` Carsten Dominik
0 siblings, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2009-01-27 7:19 UTC (permalink / raw)
To: Christopher Suckling; +Cc: Org Mode List
On Jan 26, 2009, at 8:20 PM, Christopher Suckling wrote:
>
> On 26 Jan 2009, at 07:24, Carsten Dominik wrote:
>
>>
>> On Jan 25, 2009, at 11:50 PM, Christopher Suckling wrote:
>>
>>>
>>> On 25 Jan 2009, at 16:06, Carsten Dominik wrote:
>>>
>>>> I just uploaded org 6.19a into Emacs CVS, so that it can still
>>>> be part of the Emacs 23.1 pretest and release.
>>>>
>>>> Please test the latest release and let me know as soon as possible
>>>> if there are any regressions.
>>>
>>> Two small niggles.
>>>
>>> 1) :VISIBILITY: property
>>>
>>> Suppose I have the headings
>>>
>>> * Foo
>>> * Bar
>>> * COMMENT setup for buffer
>>> :PROPERTIES:
>>> :VISIBILITY: folded
>>> :END:
>>> #+STARTUP: overview
>>> #+Rest of options go here
>>>
>>> On loading the file, *Foo and *Bar are folder, as expected.
>>> *COMMENT, however shows its content. Changing value
>>> of :VISIBILITY: has no effect.
>>>
>>> I'm afraid I can't pinpoint in which version this started to
>>> happen, but I'm fairly certain it was in the last fortnight.
>>
>> I cannot reproduce this, works fine for me.
>>
>> Anything the the *Messages* buffer that indicates that visiting a
>> new buffer
>> in Org-mode crashes half-way, i.e. before the ful setup has finished?
>
> Nothing in *Messages*, but I suspect:
>
> My fault: I had (setq org-show-entry-below t) in my .emacs from
> playing around with sparse trees. Setting it to (default . nil)
> fixes the VISIBILITY problem. So I learn that org-show-entry-below
> takes priority over VISIBILITY properties...
Which is actually a bug, fixed now, thanks.
>
>
> Best wishes,
>
> Christopher
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-01-27 7:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-25 16:06 Please test 6.19a Carsten Dominik
2009-01-25 22:50 ` Christopher Suckling
2009-01-26 7:24 ` Carsten Dominik
2009-01-26 19:20 ` Christopher Suckling
2009-01-27 7:19 ` Carsten Dominik
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).