unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Variable binding depth exceeds max-specpdl-size
@ 2004-05-07  2:15 Joe Corneli
  0 siblings, 0 replies; 6+ messages in thread
From: Joe Corneli @ 2004-05-07  2:15 UTC (permalink / raw)



What is the preferred way to deal with this error (which seems to
come up at random when I have a lot of buffers open).

Error: Variable binding depth exceeds max-specpdl-size

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

* Re: Variable binding depth exceeds max-specpdl-size
       [not found] <mailman.3809.1083896174.1061.help-gnu-emacs@gnu.org>
@ 2004-05-07 11:46 ` Thien-Thi Nguyen
  0 siblings, 0 replies; 6+ messages in thread
From: Thien-Thi Nguyen @ 2004-05-07 11:46 UTC (permalink / raw)


Joe Corneli <jcorneli@math.utexas.edu> writes:

> What is the preferred way to deal with this error (which seems to
> come up at random when I have a lot of buffers open).

find the unnecessarily recursive and make it iterative.
if the recursion is necessary, checkpoint state out of core.

thi

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

* Variable binding depth exceeds max-specpdl-size
@ 2016-03-04 16:54 Loris Bennett
  2016-03-04 18:21 ` Nick Dokos
  0 siblings, 1 reply; 6+ messages in thread
From: Loris Bennett @ 2016-03-04 16:54 UTC (permalink / raw)
  To: help-gnu-emacs

Hi,

I sent this question to the Org list yesterday, so apologies for
crossposting, but it probably is more of an Emacs issue.

When trying to export my Org calendar in batch mode, I get the
following:

$ emacs /home/loris/org/gtd.org -batch -eval '(progn (package-initialize) (org-icalendar-export-to-ics))' --kill
Loading 00debian-vars...
Loading /etc/emacs/site-start.d/50autoconf.el (source)...
Loading /etc/emacs/site-start.d/50bbdb.el (source)...
Loading /etc/emacs/site-start.d/50cmake-data.el (source)...
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
Loading /etc/emacs/site-start.d/50emacs-goodies-el.el (source)...
Loading /etc/emacs/site-start.d/50emacs-jabber.el (source)...
Loading /usr/share/emacs/site-lisp/emacs-jabber/jabber-autoloads.el (source)...
Loading /etc/emacs/site-start.d/50ess.el (source)...
Loading /etc/emacs/site-start.d/50python-docutils.el (source)...
Loading /etc/emacs/site-start.d/50yaml-mode.el (source)...
Loading /etc/emacs/site-start.d/51debian-el.el (source)...
Variable binding depth exceeds max-specpdl-size

This is with Org-mode version 8.3.4 on Emacs 24.4.1.

Any ideas?

Cheers,

Loris

-- 
This signature is currently under construction.


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

* Re: Variable binding depth exceeds max-specpdl-size
  2016-03-04 16:54 Variable binding depth exceeds max-specpdl-size Loris Bennett
@ 2016-03-04 18:21 ` Nick Dokos
  2016-03-05  8:38   ` Pierre Lorenzon
       [not found]   ` <mailman.6786.1457167895.843.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 6+ messages in thread
From: Nick Dokos @ 2016-03-04 18:21 UTC (permalink / raw)
  To: help-gnu-emacs

"Loris Bennett" <loris.bennett@fu-berlin.de> writes:

> Hi,
>
> I sent this question to the Org list yesterday, so apologies for
> crossposting, but it probably is more of an Emacs issue.
>
> When trying to export my Org calendar in batch mode, I get the
> following:
>
> $ emacs /home/loris/org/gtd.org -batch -eval '(progn
> (package-initialize) (org-icalendar-export-to-ics))' --kill
> Loading 00debian-vars...
> Loading /etc/emacs/site-start.d/50autoconf.el (source)...
> Loading /etc/emacs/site-start.d/50bbdb.el (source)...
> Loading /etc/emacs/site-start.d/50cmake-data.el (source)...
> Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
> Loading debian-ispell...
> Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
> Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
> Loading /etc/emacs/site-start.d/50emacs-goodies-el.el (source)...
> Loading /etc/emacs/site-start.d/50emacs-jabber.el (source)...
> Loading /usr/share/emacs/site-lisp/emacs-jabber/jabber-autoloads.el (source)...
> Loading /etc/emacs/site-start.d/50ess.el (source)...
> Loading /etc/emacs/site-start.d/50python-docutils.el (source)...
> Loading /etc/emacs/site-start.d/50yaml-mode.el (source)...
> Loading /etc/emacs/site-start.d/51debian-el.el (source)...
> Variable binding depth exceeds max-specpdl-size
>
> This is with Org-mode version 8.3.4 on Emacs 24.4.1.
>
> Any ideas?
>

Can you reproduce it without -batch? If so, it will be easier
to debug.

--
Nick





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

* Re: Variable binding depth exceeds max-specpdl-size
  2016-03-04 18:21 ` Nick Dokos
@ 2016-03-05  8:38   ` Pierre Lorenzon
       [not found]   ` <mailman.6786.1457167895.843.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 6+ messages in thread
From: Pierre Lorenzon @ 2016-03-05  8:38 UTC (permalink / raw)
  To: ndokos; +Cc: help-gnu-emacs

Hi



From: Nick Dokos <ndokos@gmail.com>
Subject: Re: Variable binding depth exceeds max-specpdl-size
Date: Fri, 04 Mar 2016 13:21:28 -0500

> "Loris Bennett" <loris.bennett@fu-berlin.de> writes:
> 
>> Hi,
>>
>> I sent this question to the Org list yesterday, so apologies for
>> crossposting, but it probably is more of an Emacs issue.
>>
>> When trying to export my Org calendar in batch mode, I get the
>> following:
>>
>> $ emacs /home/loris/org/gtd.org -batch -eval '(progn
>> (package-initialize) (org-icalendar-export-to-ics))' --kill
>> Loading 00debian-vars...
>> Loading /etc/emacs/site-start.d/50autoconf.el (source)...
>> Loading /etc/emacs/site-start.d/50bbdb.el (source)...
>> Loading /etc/emacs/site-start.d/50cmake-data.el (source)...
>> Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
>> Loading debian-ispell...
>> Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
>> Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
>> Loading /etc/emacs/site-start.d/50emacs-goodies-el.el (source)...
>> Loading /etc/emacs/site-start.d/50emacs-jabber.el (source)...
>> Loading /usr/share/emacs/site-lisp/emacs-jabber/jabber-autoloads.el (source)...
>> Loading /etc/emacs/site-start.d/50ess.el (source)...
>> Loading /etc/emacs/site-start.d/50python-docutils.el (source)...
>> Loading /etc/emacs/site-start.d/50yaml-mode.el (source)...
>> Loading /etc/emacs/site-start.d/51debian-el.el (source)...
>> Variable binding depth exceeds max-specpdl-size
>>
>> This is with Org-mode version 8.3.4 on Emacs 24.4.1.
>>
>> Any ideas?
>>
> 
> Can you reproduce it without -batch? If so, it will be easier
> to debug.


  yes moreover you might try the --no-site-file option if it
  works. I know that I encounter problem with all these initial
  files set by debian whose content is more or less not known.

  Sure if one of these files is absolutely needed to accomplish
  the task you want, you should try to launch only this one.


  Regards

  Pierre


> 
> --
> Nick
> 
> 
> 



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

* Re: Variable binding depth exceeds max-specpdl-size
       [not found]   ` <mailman.6786.1457167895.843.help-gnu-emacs@gnu.org>
@ 2016-03-07  7:51     ` Loris Bennett
  0 siblings, 0 replies; 6+ messages in thread
From: Loris Bennett @ 2016-03-07  7:51 UTC (permalink / raw)
  To: help-gnu-emacs

Hi,

Pierre Lorenzon <devel@pollock-nageoire.net> writes:

> Hi
>
>
>
> From: Nick Dokos <ndokos@gmail.com>
> Subject: Re: Variable binding depth exceeds max-specpdl-size
> Date: Fri, 04 Mar 2016 13:21:28 -0500
>
>> "Loris Bennett" <loris.bennett@fu-berlin.de> writes:
>> 
>>> Hi,
>>>
>>> I sent this question to the Org list yesterday, so apologies for
>>> crossposting, but it probably is more of an Emacs issue.
>>>
>>> When trying to export my Org calendar in batch mode, I get the
>>> following:
>>>
>>> $ emacs /home/loris/org/gtd.org -batch -eval '(progn
>>> (package-initialize) (org-icalendar-export-to-ics))' --kill
>>> Loading 00debian-vars...
>>> Loading /etc/emacs/site-start.d/50autoconf.el (source)...
>>> Loading /etc/emacs/site-start.d/50bbdb.el (source)...
>>> Loading /etc/emacs/site-start.d/50cmake-data.el (source)...
>>> Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
>>> Loading debian-ispell...
>>> Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
>>> Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
>>> Loading /etc/emacs/site-start.d/50emacs-goodies-el.el (source)...
>>> Loading /etc/emacs/site-start.d/50emacs-jabber.el (source)...
>>> Loading /usr/share/emacs/site-lisp/emacs-jabber/jabber-autoloads.el (source)...
>>> Loading /etc/emacs/site-start.d/50ess.el (source)...
>>> Loading /etc/emacs/site-start.d/50python-docutils.el (source)...
>>> Loading /etc/emacs/site-start.d/50yaml-mode.el (source)...
>>> Loading /etc/emacs/site-start.d/51debian-el.el (source)...
>>> Variable binding depth exceeds max-specpdl-size
>>>
>>> This is with Org-mode version 8.3.4 on Emacs 24.4.1.
>>>
>>> Any ideas?
>>>
>> 
>> Can you reproduce it without -batch? If so, it will be easier
>> to debug.
>
>
>   yes moreover you might try the --no-site-file option if it
>   works. I know that I encounter problem with all these initial
>   files set by debian whose content is more or less not known.
>
>   Sure if one of these files is absolutely needed to accomplish
>   the task you want, you should try to launch only this one.

Thanks for the advice.  With the following (a minimal .emacs, no -batch
and --no-site-file), the calendar data are exported successfully:

  emacs --no-site-file -l .emacs_minmal /home/loris/org/gtd.org -eval '(progn (package-initialize) (org-icalendar-export-to-ics))' --kill

where .emacs_minmal just contains

  (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))

If I add the -batch flag, I get the error and no export takes place:

  emacs --no-site-file -l .emacs_minmal /home/loris/org/gtd.org -batch -eval '(progn (package-initialize) (org-icalendar-export-to-ics))' --kill
  Variable binding depth exceeds max-specpdl-size

What else could I try to identify the problem?

Cheers,

Loris

-- 
This signature is currently under construction.


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

end of thread, other threads:[~2016-03-07  7:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-04 16:54 Variable binding depth exceeds max-specpdl-size Loris Bennett
2016-03-04 18:21 ` Nick Dokos
2016-03-05  8:38   ` Pierre Lorenzon
     [not found]   ` <mailman.6786.1457167895.843.help-gnu-emacs@gnu.org>
2016-03-07  7:51     ` Loris Bennett
     [not found] <mailman.3809.1083896174.1061.help-gnu-emacs@gnu.org>
2004-05-07 11:46 ` Thien-Thi Nguyen
  -- strict thread matches above, loose matches on Subject: below --
2004-05-07  2:15 Joe Corneli

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).