[slime-devel] Re: Fixed (we hope) -- hs-minor-mode

Edi Weitz edi at agharta.de
Wed May 12 16:03:56 UTC 2004


On Tue, 11 May 2004 23:14:11 +0200, Helmut Eller <e9626484 at stud3.tuwien.ac.at> wrote:

> I disabled outline-mode for the events buffers.  Can be customized
> with slime-inhibit-ouline-mode-in-events-buffer.

Looks like it's really "ouline" in the sources - I guess this was a
typo... :)

I updated from CVS some minutes ago and had to patch slime.el in order
not to get an error:

  --- slime.el.orig       2004-05-12 17:57:42.000000000 +0200
  +++ slime.el    2004-05-12 17:58:41.000000000 +0200
  @@ -1705,7 +1705,8 @@
         (goto-char (point-max))
         (save-excursion
           (pp event (current-buffer)))
  -      (when outline-minor-mode
  +      (when (and (boundp 'outline-minor-mode)
  +                 outline-minor-mode)
           (hide-entry))
         (goto-char (point-max)))))

(GNU Emacs 21.3.50 from CVS)

Cheers,
Edi.




More information about the slime-devel mailing list