emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Crash of emacs when using SHIFT-TAB
@ 2010-07-05  9:23 Rainer M Krug
  2010-07-05 12:47 ` Carsten Dominik
  0 siblings, 1 reply; 5+ messages in thread
From: Rainer M Krug @ 2010-07-05  9:23 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 703 bytes --]

Hi

my emacs is crashing quite regularly when I am using org-babel. Is there a
way to get a traceback or something similar which I could submit to get an
idea what is causing it?

Thanks,

Rainer


-- 
NEW GERMAN FAX NUMBER!!!

Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,
UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

[-- Attachment #1.2: Type: text/html, Size: 891 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: Crash of emacs when using SHIFT-TAB
  2010-07-05  9:23 Crash of emacs when using SHIFT-TAB Rainer M Krug
@ 2010-07-05 12:47 ` Carsten Dominik
  2010-07-05 17:40   ` Jason Dunsmore
  0 siblings, 1 reply; 5+ messages in thread
From: Carsten Dominik @ 2010-07-05 12:47 UTC (permalink / raw)
  To: Rainer M Krug; +Cc: emacs-orgmode


On Jul 5, 2010, at 11:23 AM, Rainer M Krug wrote:

> Hi
>
> my emacs is crashing quite regularly when I am using org-babel. Is  
> there a way to get a traceback or something similar which I could  
> submit to get an idea what is causing it?

I think this has probably nothing to do with org-babel.  More likely,  
you are using org-indent-mode, on an Emacs version where it does not  
work.  Check the Org manual for the exact version of Emacs you need.

- Carsten

>
> Thanks,
>
> Rainer
>
>
> -- 
> NEW GERMAN FAX NUMBER!!!
>
> Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation  
> Biology, UCT), Dipl. Phys. (Germany)
>
> Centre of Excellence for Invasion Biology
> Natural Sciences Building
> Office Suite 2039
> Stellenbosch University
> Main Campus, Merriman Avenue
> Stellenbosch
> South Africa
>
> Cell:           +27 - (0)83 9479 042
> Fax:            +27 - (0)86 516 2782
> Fax:            +49 - (0)321 2125 2244
> email:          Rainer@krugs.de
>
> Skype:          RMkrug
> Google:         R.M.Krug@gmail.com
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten

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

* Re: Crash of emacs when using SHIFT-TAB
  2010-07-05 12:47 ` Carsten Dominik
@ 2010-07-05 17:40   ` Jason Dunsmore
  2010-07-05 20:34     ` Rainer M Krug
  2010-07-06  8:25     ` Carsten Dominik
  0 siblings, 2 replies; 5+ messages in thread
From: Jason Dunsmore @ 2010-07-05 17:40 UTC (permalink / raw)
  To: emacs-orgmode

Carsten Dominik <carsten.dominik@gmail.com> writes:

>> Hi
>>
>> my emacs is crashing quite regularly when I am using org-babel. Is
>> there a way to get a traceback or something similar which I could
>> submit to get an idea what is causing it?
>
> I think this has probably nothing to do with org-babel.  More likely,
> you are using org-indent-mode, on an Emacs version where it does not
> work.  Check the Org manual for the exact version of Emacs you need.

I was bitten by this same bug.  I narrowed it down to org-indent, but I
had no idea I should look in the manual to see which version of emacs
org-indent was compatible with.

Here's a patch that will make emacs display an error if org-indent is
loaded with an incompatible version of emacs:

--8<---------------cut here---------------start------------->8---
diff --git a/lisp/org-indent.el b/lisp/org-indent.el
index 77411af..0ef8456 100644
--- a/lisp/org-indent.el
+++ b/lisp/org-indent.el
@@ -131,6 +131,18 @@ FIXME:  How to update when broken?"
       (setq org-indent-mode nil)
     (if org-indent-mode
        (progn
+          (destructuring-bind (maj min bld)
+              (mapcar 'string-to-number (split-string emacs-version "[.]"))
+            (let ((msg "Emacs 23.1.50.3 or greater is recommended for org-indent 
+              (when (< maj 23)
+                (display-warning 'org msg :warning))
+              (when (= maj 23)
+                (unless (>= bld 50)
+                  (display-warning 'org msg :warning)))
+              (when (and (= maj 23)
+                         (= bld 50))
+                (unless (>= min 1)
+                  (display-warning 'org msg :warning)))))
          (org-set-local 'indent-tabs-mode nil)
          (or org-indent-strings (org-indent-initialize))
          (when org-indent-mode-turns-off-org-adapt-indentation
--8<---------------cut here---------------end--------------->8---

Perhaps this would be better as a separate function:

--8<---------------cut here---------------start------------->8---
(defun org-version-check (version feature level)
  (destructuring-bind (rmaj rmin rbld)
      (mapcar 'string-to-number (split-string version "[.]"))
    (destructuring-bind (maj min bld)
	(mapcar 'string-to-number (split-string emacs-version "[.]"))
      (let ((msg (format "Emacs %s or greater is recommended for %s" version
			 feature)))
	(when (< maj rmaj)
	  (display-warning 'org msg level))
	(when (= maj rmaj)
	  (unless (>= min rmin)
	    (display-warning 'org msg level)))
	(when (and (= maj rmaj)
		   (= min rmin))
	  (unless (>= bld rbld)
	    (display-warning 'org msg level)))))))
--8<---------------cut here---------------end--------------->8---

It could then be called with:

(org-version-check "23.1.50" "org-indent" :warning)

I made it display a warning because org-indent seems to work almost
perfectly with the version of emacs I'm running (23.1.1).

Regards,
Jason

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

* Re: Re: Crash of emacs when using SHIFT-TAB
  2010-07-05 17:40   ` Jason Dunsmore
@ 2010-07-05 20:34     ` Rainer M Krug
  2010-07-06  8:25     ` Carsten Dominik
  1 sibling, 0 replies; 5+ messages in thread
From: Rainer M Krug @ 2010-07-05 20:34 UTC (permalink / raw)
  To: Jason Dunsmore; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 4073 bytes --]

On Mon, Jul 5, 2010 at 7:40 PM, Jason Dunsmore <emacs-orgmode@dunsmor.com>wrote:

> Carsten Dominik <carsten.dominik@gmail.com> writes:
>
> >> Hi
> >>
> >> my emacs is crashing quite regularly when I am using org-babel. Is
> >> there a way to get a traceback or something similar which I could
> >> submit to get an idea what is causing it?
> >
> > I think this has probably nothing to do with org-babel.  More likely,
> > you are using org-indent-mode, on an Emacs version where it does not
> > work.  Check the Org manual for the exact version of Emacs you need.
>
> I was bitten by this same bug.  I narrowed it down to org-indent, but I
> had no idea I should look in the manual to see which version of emacs
> org-indent was compatible with.
>
> Here's a patch that will make emacs display an error if org-indent is
> loaded with an incompatible version of emacs:
>
> --8<---------------cut here---------------start------------->8---
> diff --git a/lisp/org-indent.el b/lisp/org-indent.el
> index 77411af..0ef8456 100644
> --- a/lisp/org-indent.el
> +++ b/lisp/org-indent.el
> @@ -131,6 +131,18 @@ FIXME:  How to update when broken?"
>       (setq org-indent-mode nil)
>     (if org-indent-mode
>        (progn
> +          (destructuring-bind (maj min bld)
> +              (mapcar 'string-to-number (split-string emacs-version
> "[.]"))
> +            (let ((msg "Emacs 23.1.50.3 or greater is recommended for
> org-indent
> +              (when (< maj 23)
> +                (display-warning 'org msg :warning))
> +              (when (= maj 23)
> +                (unless (>= bld 50)
> +                  (display-warning 'org msg :warning)))
> +              (when (and (= maj 23)
> +                         (= bld 50))
> +                (unless (>= min 1)
> +                  (display-warning 'org msg :warning)))))
>          (org-set-local 'indent-tabs-mode nil)
>          (or org-indent-strings (org-indent-initialize))
>          (when org-indent-mode-turns-off-org-adapt-indentation
> --8<---------------cut here---------------end--------------->8---
>
> Perhaps this would be better as a separate function:
>
> --8<---------------cut here---------------start------------->8---
> (defun org-version-check (version feature level)
>  (destructuring-bind (rmaj rmin rbld)
>      (mapcar 'string-to-number (split-string version "[.]"))
>    (destructuring-bind (maj min bld)
>        (mapcar 'string-to-number (split-string emacs-version "[.]"))
>      (let ((msg (format "Emacs %s or greater is recommended for %s" version
>                         feature)))
>        (when (< maj rmaj)
>          (display-warning 'org msg level))
>        (when (= maj rmaj)
>          (unless (>= min rmin)
>            (display-warning 'org msg level)))
>        (when (and (= maj rmaj)
>                   (= min rmin))
>          (unless (>= bld rbld)
>            (display-warning 'org msg level)))))))
> --8<---------------cut here---------------end--------------->8---
>
> It could then be called with:
>
> (org-version-check "23.1.50" "org-indent" :warning)
>
> I made it display a warning because org-indent seems to work almost
> perfectly with the version of emacs I'm running (23.1.1).
>

I think that is a brilliant idea, especially as the repositories from ubuntu
do not yet include emacs 23.2.

Cheers,

Rainer


> Regards,
> Jason
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>



-- 
NEW GERMAN FAX NUMBER!!!

Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology,
UCT), Dipl. Phys. (Germany)

Centre of Excellence for Invasion Biology
Natural Sciences Building
Office Suite 2039
Stellenbosch University
Main Campus, Merriman Avenue
Stellenbosch
South Africa

Cell:           +27 - (0)83 9479 042
Fax:            +27 - (0)86 516 2782
Fax:            +49 - (0)321 2125 2244
email:          Rainer@krugs.de

Skype:          RMkrug
Google:         R.M.Krug@gmail.com

[-- Attachment #1.2: Type: text/html, Size: 5428 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

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

* Re: Re: Crash of emacs when using SHIFT-TAB
  2010-07-05 17:40   ` Jason Dunsmore
  2010-07-05 20:34     ` Rainer M Krug
@ 2010-07-06  8:25     ` Carsten Dominik
  1 sibling, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2010-07-06  8:25 UTC (permalink / raw)
  To: Jason Dunsmore; +Cc: emacs-orgmode

Hi Jason,

thanks for this,  I have checked in a modified version of your  
proposed fix.

- Carsten

On Jul 5, 2010, at 7:40 PM, Jason Dunsmore wrote:

> Carsten Dominik <carsten.dominik@gmail.com> writes:
>
>>> Hi
>>>
>>> my emacs is crashing quite regularly when I am using org-babel. Is
>>> there a way to get a traceback or something similar which I could
>>> submit to get an idea what is causing it?
>>
>> I think this has probably nothing to do with org-babel.  More likely,
>> you are using org-indent-mode, on an Emacs version where it does not
>> work.  Check the Org manual for the exact version of Emacs you need.
>
> I was bitten by this same bug.  I narrowed it down to org-indent,  
> but I
> had no idea I should look in the manual to see which version of emacs
> org-indent was compatible with.
>
> Here's a patch that will make emacs display an error if org-indent is
> loaded with an incompatible version of emacs:
>
> --8<---------------cut here---------------start------------->8---
> diff --git a/lisp/org-indent.el b/lisp/org-indent.el
> index 77411af..0ef8456 100644
> --- a/lisp/org-indent.el
> +++ b/lisp/org-indent.el
> @@ -131,6 +131,18 @@ FIXME:  How to update when broken?"
>       (setq org-indent-mode nil)
>     (if org-indent-mode
>        (progn
> +          (destructuring-bind (maj min bld)
> +              (mapcar 'string-to-number (split-string emacs-version  
> "[.]"))
> +            (let ((msg "Emacs 23.1.50.3 or greater is recommended  
> for org-indent
> +              (when (< maj 23)
> +                (display-warning 'org msg :warning))
> +              (when (= maj 23)
> +                (unless (>= bld 50)
> +                  (display-warning 'org msg :warning)))
> +              (when (and (= maj 23)
> +                         (= bld 50))
> +                (unless (>= min 1)
> +                  (display-warning 'org msg :warning)))))
>          (org-set-local 'indent-tabs-mode nil)
>          (or org-indent-strings (org-indent-initialize))
>          (when org-indent-mode-turns-off-org-adapt-indentation
> --8<---------------cut here---------------end--------------->8---
>
> Perhaps this would be better as a separate function:
>
> --8<---------------cut here---------------start------------->8---
> (defun org-version-check (version feature level)
>  (destructuring-bind (rmaj rmin rbld)
>      (mapcar 'string-to-number (split-string version "[.]"))
>    (destructuring-bind (maj min bld)
> 	(mapcar 'string-to-number (split-string emacs-version "[.]"))
>      (let ((msg (format "Emacs %s or greater is recommended for %s"  
> version
> 			 feature)))
> 	(when (< maj rmaj)
> 	  (display-warning 'org msg level))
> 	(when (= maj rmaj)
> 	  (unless (>= min rmin)
> 	    (display-warning 'org msg level)))
> 	(when (and (= maj rmaj)
> 		   (= min rmin))
> 	  (unless (>= bld rbld)
> 	    (display-warning 'org msg level)))))))
> --8<---------------cut here---------------end--------------->8---
>
> It could then be called with:
>
> (org-version-check "23.1.50" "org-indent" :warning)
>
> I made it display a warning because org-indent seems to work almost
> perfectly with the version of emacs I'm running (23.1.1).
>
> Regards,
> Jason
>
> _______________________________________________
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

- Carsten

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

end of thread, other threads:[~2010-07-06  8:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-05  9:23 Crash of emacs when using SHIFT-TAB Rainer M Krug
2010-07-05 12:47 ` Carsten Dominik
2010-07-05 17:40   ` Jason Dunsmore
2010-07-05 20:34     ` Rainer M Krug
2010-07-06  8:25     ` 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).