* Problem with bzr updated sources from today (Jan 3rd, 2012)
@ 2012-01-03 17:35 Burton Samograd
2012-01-03 18:09 ` martin rudalics
0 siblings, 1 reply; 5+ messages in thread
From: Burton Samograd @ 2012-01-03 17:35 UTC (permalink / raw)
To: emacs-devel
Hello,
I just pulled the bzr sources and I'm having a major problem. It seems
to be releated to splitting windows and is visible in when using gnus,
or just splitting windows in the current frame using the keyboard. I get
the message "window-total-size: Lisp nesting exceeds `max-specpdl-size'"
at first, and then later "window-total-size: Lisp nesting exceeds
`max-lisp-eval-depth'".
I have this problem when running with emacs -q as well. Version reports
"GNU Emacs 24.0.92.1...".
The max-sepcpdl-size message also comes up when I try to auto-complete
M-x version from a freshly started emacs -q.
--
Burton Samograd
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem with bzr updated sources from today (Jan 3rd, 2012)
2012-01-03 17:35 Problem with bzr updated sources from today (Jan 3rd, 2012) Burton Samograd
@ 2012-01-03 18:09 ` martin rudalics
2012-01-03 18:08 ` Burton Samograd
0 siblings, 1 reply; 5+ messages in thread
From: martin rudalics @ 2012-01-03 18:09 UTC (permalink / raw)
To: Burton Samograd; +Cc: emacs-devel
> I get the message "window-total-size: Lisp nesting exceeds `max-specpdl-size'"
> at first, and then later "window-total-size: Lisp nesting exceeds
> `max-lisp-eval-depth'".
Try doing
rm lisp/window.elc
make
martin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem with bzr updated sources from today (Jan 3rd, 2012)
2012-01-03 18:09 ` martin rudalics
@ 2012-01-03 18:08 ` Burton Samograd
2012-01-03 19:04 ` martin rudalics
0 siblings, 1 reply; 5+ messages in thread
From: Burton Samograd @ 2012-01-03 18:08 UTC (permalink / raw)
To: emacs-devel
martin rudalics <rudalics@gmx.at> writes:
>> I get the message "window-total-size: Lisp nesting exceeds
>> max-specpdl-size'"
>> at first, and then later "window-total-size: Lisp nesting exceeds
>> `max-lisp-eval-depth'".
>
> Try doing
>
> rm lisp/window.elc
> make
Thanks, worked like a charm. Problem with build dependencies?
--
Burton Samograd
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem with bzr updated sources from today (Jan 3rd, 2012)
2012-01-03 18:08 ` Burton Samograd
@ 2012-01-03 19:04 ` martin rudalics
2012-01-03 19:17 ` Burton Samograd
0 siblings, 1 reply; 5+ messages in thread
From: martin rudalics @ 2012-01-03 19:04 UTC (permalink / raw)
To: Burton Samograd; +Cc: emacs-devel
> Problem with build dependencies?
A mixture of earlier specifying
(defsubst window-total-height (&optional window)
"..."
(window-total-size window))
with window-total-size defined in C (my bad) and later doing
(defun window-total-size (&optional window horizontal)
"..."
(if horizontal
(window-total-width window)
(window-total-height window)))
with window-total-height/-width in C (Chong's contribution). I'm not
sure what precisely triggered it now, though. What was the last time
you pulled before January 3rd?
martin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Problem with bzr updated sources from today (Jan 3rd, 2012)
2012-01-03 19:04 ` martin rudalics
@ 2012-01-03 19:17 ` Burton Samograd
0 siblings, 0 replies; 5+ messages in thread
From: Burton Samograd @ 2012-01-03 19:17 UTC (permalink / raw)
To: emacs-devel
martin rudalics <rudalics@gmx.at> writes:
>> Problem with build dependencies?
>
> A mixture of earlier specifying
>
> (defsubst window-total-height (&optional window)
> "..."
> (window-total-size window))
>
> with window-total-size defined in C (my bad) and later doing
>
> (defun window-total-size (&optional window horizontal)
> "..."
> (if horizontal
> (window-total-width window)
> (window-total-height window)))
>
> with window-total-height/-width in C (Chong's contribution). I'm not
> sure what precisely triggered it now, though. What was the last time
> you pulled before January 3rd?
Thanks for the explanation. I last pulled at least a couple of months
ago. I'll try and remember to do a make clean after my next pull.
--
Burton Samograd
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-03 19:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-03 17:35 Problem with bzr updated sources from today (Jan 3rd, 2012) Burton Samograd
2012-01-03 18:09 ` martin rudalics
2012-01-03 18:08 ` Burton Samograd
2012-01-03 19:04 ` martin rudalics
2012-01-03 19:17 ` Burton Samograd
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.