all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* outline-flag-region: Variable binding depth exceeds max-specpdl-size
@ 2013-05-21 17:00 Thorsten Jolitz
  2013-05-21 21:28 ` Thorsten Jolitz
  0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Jolitz @ 2013-05-21 17:00 UTC (permalink / raw)
  To: help-gnu-emacs


Hi List, 

I implemented a new (optional and customizable) feature for 'outshine.el':
behind every folded headline, a little 'cookie' can show the number of
hidden lines till the next visible headline. 

E.g., an  Emacs Lisp buffer structured the 'outshine-way' with
outline-minor-mode and outshine.el activated might look like this after
evaluating 'outshine-show-hidden-lines-cookies':

,-------------------------------------------------------------------------------
| ;; * navi-mode.el --- major-mode for easy buffer-navigation [#13]
| ;; ** Commentary [#1]
| ;; *** About navi-mode
| 
| ;; This file implements extensions for occur-mode. You can think of a
| ;; navi-buffer as a kind of 'remote-control' for an (adecuately)
| ;; outline-structured original-buffer. It enables quick navigation and basic
| ;; structure editing in the original-buffer without (necessarily) leaving the
| ;; navi-buffer. When switching to the original-buffer and coming back after
| ;; some modifications, the navi-buffer is always reverted (thus up-to-date).
| 
| ;; Besides the fundamental outline-heading-searches (8 outline-levels) and the
| ;; 5 basic keyword-searches (:FUN, :VAR, :DB, :OBJ and :ALL), all languages
| ;; can have their own set of searches and keybindings (see `navi-key-mappings'
| ;; and `navi-keywords'). Heading-searches and keyword-searches can be
| ;; combined, offering a vast amount of possible 'views' at the
| ;; original-buffer.
| 
| ;; *** Usage [#165]
| ;; *** Installation [#19]
| ;; *** Emacs Version [#5]
| ;; * Requires [#4]
| ;; * Mode Definitions [#30]
`-------------------------------------------------------------------------------

This works alright so far, and when a folded buffer is expanded or the
number of hidden lines change, the cookies are updated correctly. But
obviously its a bit tedious to manually do 

,------------------------------------------
| M-:(outshine-show-hidden-lines-cookies)
`------------------------------------------

each time the status of the buffer changes, so the right thing to do
seems to be:

,-----------------------------------------------
| (add-hook 'outline-view-change-hook
|           'outshine-show-hidden-lines-cookies)
`-----------------------------------------------

This worked shortly, but since then results in the following error:

,---------------------------------------------------------------------
| outline-flag-region: Variable binding depth exceeds max-specpdl-size
`---------------------------------------------------------------------

Whats this error about and what would be a possible fix? There are
several reports about this error for several Emacs modes, but the
background and cure are not really explained. 

-- 
cheers,
Thorsten





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

end of thread, other threads:[~2013-05-21 21:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-21 17:00 outline-flag-region: Variable binding depth exceeds max-specpdl-size Thorsten Jolitz
2013-05-21 21:28 ` Thorsten Jolitz

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.