emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-cut-subtree, bug?
@ 2013-06-06  7:58 Andreas Röhler
  2013-06-06  8:11 ` Carsten Dominik
  0 siblings, 1 reply; 9+ messages in thread
From: Andreas Röhler @ 2013-06-06  7:58 UTC (permalink / raw)
  To: emacs-orgmode

Hi,

I'm misusing org-mode for a review of (slightly transformed) diffs as below.
When done, want to delete the current section.

Unfortunatly a call of M-x `org-cut-subtree' not just deletes the current section, but also
deletes the header-start of section beneath.

A bug? Better ways to do this?

TIA,

Andreas

;;;;;;;;;;

* mlib_ImageAffineTransform_Fp.3mlib.vorher	2013-06-05 21:13:34.285757559 +0200
+++ mlib_ImageAffineTransform_Fp.3mlib.nachher	2013-06-05 21:13:40.824756887 +0200

-       mtx       Transformation matrix. mtx[0] holds a; mtx[1] holds b; mtx[2]
-                 holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds ty.
+       mtx       Transformation  matrix.   mtx[0]  holds  a;  mtx[1]  holds b;
+                 mtx[2] holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds
+                 ty.

         filter    Type of resampling filter. It can be one of the following:

* mlib_ImageAffineTransform.3mlib.vorher	2013-06-05 21:36:17.119617652 +0200
+++ mlib_ImageAffineTransform.3mlib.nachher	2013-06-05 21:36:19.487617409 +0200
@@ -52,8 +52,9 @@
         src       Pointer to source image.

-       mtx       Transformation matrix. mtx[0] holds a; mtx[1] holds b; mtx[2]
-                 holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds ty.
+       mtx       Transformation matrix.   mtx[0]  holds  a;  mtx[1]  holds  b;
+                 mtx[2] holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds
+                 ty.

         filter    Type of resampling filter. It can be one of the following:

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  7:58 org-cut-subtree, bug? Andreas Röhler
@ 2013-06-06  8:11 ` Carsten Dominik
  2013-06-06  8:30   ` Andreas Röhler
  0 siblings, 1 reply; 9+ messages in thread
From: Carsten Dominik @ 2013-06-06  8:11 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: emacs-orgmode


On 6 jun. 2013, at 09:58, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:

> Hi,
> 
> I'm misusing org-mode for a review of (slightly transformed) diffs as below.
> When done, want to delete the current section.
> 
> Unfortunatly a call of M-x `org-cut-subtree' not just deletes the current section, but also
> deletes the header-start of section beneath.


Hi Andreas,

I am not sure I understand the problem.  What do you mean by header-start of section?

- Carsten


> 
> A bug? Better ways to do this?
> 
> TIA,
> 
> Andreas
> 
> ;;;;;;;;;;
> 
> * mlib_ImageAffineTransform_Fp.3mlib.vorher	2013-06-05 21:13:34.285757559 +0200
> +++ mlib_ImageAffineTransform_Fp.3mlib.nachher	2013-06-05 21:13:40.824756887 +0200
> 
> -       mtx       Transformation matrix. mtx[0] holds a; mtx[1] holds b; mtx[2]
> -                 holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds ty.
> +       mtx       Transformation  matrix.   mtx[0]  holds  a;  mtx[1]  holds b;
> +                 mtx[2] holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds
> +                 ty.
> 
>        filter    Type of resampling filter. It can be one of the following:
> 
> * mlib_ImageAffineTransform.3mlib.vorher	2013-06-05 21:36:17.119617652 +0200
> +++ mlib_ImageAffineTransform.3mlib.nachher	2013-06-05 21:36:19.487617409 +0200
> @@ -52,8 +52,9 @@
>        src       Pointer to source image.
> 
> -       mtx       Transformation matrix. mtx[0] holds a; mtx[1] holds b; mtx[2]
> -                 holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds ty.
> +       mtx       Transformation matrix.   mtx[0]  holds  a;  mtx[1]  holds  b;
> +                 mtx[2] holds tx; mtx[3] holds c; mtx[4] holds d; mtx[5] holds
> +                 ty.
> 
>        filter    Type of resampling filter. It can be one of the following:
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  8:11 ` Carsten Dominik
@ 2013-06-06  8:30   ` Andreas Röhler
  2013-06-06  8:44     ` Carsten Dominik
  0 siblings, 1 reply; 9+ messages in thread
From: Andreas Röhler @ 2013-06-06  8:30 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Am 06.06.2013 10:11, schrieb Carsten Dominik:
>
> On 6 jun. 2013, at 09:58, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>
>> Hi,
>>
>> I'm misusing org-mode for a review of (slightly transformed) diffs as below.
>> When done, want to delete the current section.
>>
>> Unfortunatly a call of M-x `org-cut-subtree' not just deletes the current section, but also
>> deletes the header-start of section beneath.
>
>
> Hi Andreas,
>
> I am not sure I understand the problem.  What do you mean by header-start of section?
>
> - Carsten
>
>

The star, `*', introducing the header below. Which get's killed.

Thanks,

Andreas

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  8:30   ` Andreas Röhler
@ 2013-06-06  8:44     ` Carsten Dominik
  2013-06-06  8:56       ` Andreas Röhler
  0 siblings, 1 reply; 9+ messages in thread
From: Carsten Dominik @ 2013-06-06  8:44 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: emacs-orgmode


On 6 jun. 2013, at 10:30, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:

> Am 06.06.2013 10:11, schrieb Carsten Dominik:
>> 
>> On 6 jun. 2013, at 09:58, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>> 
>>> Hi,
>>> 
>>> I'm misusing org-mode for a review of (slightly transformed) diffs as below.
>>> When done, want to delete the current section.
>>> 
>>> Unfortunatly a call of M-x `org-cut-subtree' not just deletes the current section, but also
>>> deletes the header-start of section beneath.
>> 
>> 
>> Hi Andreas,
>> 
>> I am not sure I understand the problem.  What do you mean by header-start of section?
>> 
>> - Carsten
>> 
>> 
> 
> The star, `*', introducing the header below. Which get's killed.


I am not able to reproduce this.

- Carsten

> 
> Thanks,
> 
> Andreas
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  8:56       ` Andreas Röhler
@ 2013-06-06  8:56         ` Carsten Dominik
  2013-06-06  9:28           ` Andreas Röhler
  2013-06-10  5:39           ` Andreas Röhler
  0 siblings, 2 replies; 9+ messages in thread
From: Carsten Dominik @ 2013-06-06  8:56 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: emacs-orgmode


On 6 jun. 2013, at 10:56, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:

> Am 06.06.2013 10:44, schrieb Carsten Dominik:
>> 
>> On 6 jun. 2013, at 10:30, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>> 
>>> Am 06.06.2013 10:11, schrieb Carsten Dominik:
>>>> 
>>>> On 6 jun. 2013, at 09:58, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>>>> 
>>>>> Hi,
>>>>> 
>>>>> I'm misusing org-mode for a review of (slightly transformed) diffs as below.
>>>>> When done, want to delete the current section.
>>>>> 
>>>>> Unfortunatly a call of M-x `org-cut-subtree' not just deletes the current section, but also
>>>>> deletes the header-start of section beneath.
>>>> 
>>>> 
>>>> Hi Andreas,
>>>> 
>>>> I am not sure I understand the problem.  What do you mean by header-start of section?
>>>> 
>>>> - Carsten
>>>> 
>>>> 
>>> 
>>> The star, `*', introducing the header below. Which get's killed.
>> 
>> 
>> I am not able to reproduce this.
>> 
>> - Carsten
>> 
>>> 
>>> Thanks,
>>> 
>>> Andreas
>>> 
>> 
>> 
> 
> Okay, registered a kbd-macro which restores the star.  Fine for me.

I would still be interested if anyone else sees this problem.

- Carsten

> 
> Thanks again,
> 
> Andreas
> 
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  8:44     ` Carsten Dominik
@ 2013-06-06  8:56       ` Andreas Röhler
  2013-06-06  8:56         ` Carsten Dominik
  0 siblings, 1 reply; 9+ messages in thread
From: Andreas Röhler @ 2013-06-06  8:56 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Am 06.06.2013 10:44, schrieb Carsten Dominik:
>
> On 6 jun. 2013, at 10:30, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>
>> Am 06.06.2013 10:11, schrieb Carsten Dominik:
>>>
>>> On 6 jun. 2013, at 09:58, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:
>>>
>>>> Hi,
>>>>
>>>> I'm misusing org-mode for a review of (slightly transformed) diffs as below.
>>>> When done, want to delete the current section.
>>>>
>>>> Unfortunatly a call of M-x `org-cut-subtree' not just deletes the current section, but also
>>>> deletes the header-start of section beneath.
>>>
>>>
>>> Hi Andreas,
>>>
>>> I am not sure I understand the problem.  What do you mean by header-start of section?
>>>
>>> - Carsten
>>>
>>>
>>
>> The star, `*', introducing the header below. Which get's killed.
>
>
> I am not able to reproduce this.
>
> - Carsten
>
>>
>> Thanks,
>>
>> Andreas
>>
>
>

Okay, registered a kbd-macro which restores the star.  Fine for me.

Thanks again,

Andreas

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  8:56         ` Carsten Dominik
@ 2013-06-06  9:28           ` Andreas Röhler
  2013-06-10  5:39           ` Andreas Röhler
  1 sibling, 0 replies; 9+ messages in thread
From: Andreas Röhler @ 2013-06-06  9:28 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Am 06.06.2013 10:56, schrieb Carsten Dominik:
>

>>>> The star, `*', introducing the header below. Which get's killed.
>>>
>>>
>>> I am not able to reproduce this.
>>>
>>> - Carsten
>>>
>>>>
>>>> Thanks,
>>>>
>>>> Andreas
>>>>
>>>
>>>
>>
>> Okay, registered a kbd-macro which restores the star.  Fine for me.
>
> I would still be interested if anyone else sees this problem.
>
> - Carsten
>
>>
>> Thanks again,
>>
>> Andreas
>>
>>
>
>

Provided stars making a header --by replacing the diffs header--, but did not indent the following section. Might be related to this.

Andreas

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-06  8:56         ` Carsten Dominik
  2013-06-06  9:28           ` Andreas Röhler
@ 2013-06-10  5:39           ` Andreas Röhler
  2013-06-10  7:41             ` Carsten Dominik
  1 sibling, 1 reply; 9+ messages in thread
From: Andreas Röhler @ 2013-06-10  5:39 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode

Issue doesn't show up with Emacs built from trunk

GNU Emacs 24.3.50.1 (i686-pc-linux-gnu, GTK+ Version 2.24.18) of 2013-06-07

Thanks,

Andreas

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: org-cut-subtree, bug?
  2013-06-10  5:39           ` Andreas Röhler
@ 2013-06-10  7:41             ` Carsten Dominik
  0 siblings, 0 replies; 9+ messages in thread
From: Carsten Dominik @ 2013-06-10  7:41 UTC (permalink / raw)
  To: Andreas Röhler; +Cc: emacs-orgmode


On 10 jun. 2013, at 07:39, Andreas Röhler <andreas.roehler@easy-emacs.de> wrote:

> Issue doesn't show up with Emacs built from trunk

Thank your for following up, Andreas.

- Carsten


> 
> GNU Emacs 24.3.50.1 (i686-pc-linux-gnu, GTK+ Version 2.24.18) of 2013-06-07
> 
> Thanks,
> 
> Andreas
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-06-10  7:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-06  7:58 org-cut-subtree, bug? Andreas Röhler
2013-06-06  8:11 ` Carsten Dominik
2013-06-06  8:30   ` Andreas Röhler
2013-06-06  8:44     ` Carsten Dominik
2013-06-06  8:56       ` Andreas Röhler
2013-06-06  8:56         ` Carsten Dominik
2013-06-06  9:28           ` Andreas Röhler
2013-06-10  5:39           ` Andreas Röhler
2013-06-10  7:41             ` 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).