How to disable pop-ups

Pascal Bourguignon <[email protected]> Thu, 5 Jun 2003 15:50:03 +0200
Newsgroups gmane.lisp.ilisp.general
Organization InformatiMago.
Message-ID <[email protected]>
Bj=F6rn Lindberg writes:
> Ilisp has this annoying habit of sometimes poping up its own windows
> with information. The contents seem to be what is normally printed in
> the status bar in emacs. For example it happens when I press space
> after having written either LOAD or DISASSEMBLE, the calling
> information for respective function is displayed. Does anyone know why
> it does this, and how I could change this behaviour, eg getting it to
> show the message in the status bar or in another emacs window instead?

I've got this in my .emacs:


(setq ilisp-*use-frame-for-arglist-output-p* nil)
(setq ilisp-*arglist-message-lisp-space-p*  nil)
(setq ilisp-arglist-output  nil)



(defun pjb-output-to-current-buffer (output ilisp-output-sink)
  "
This function is used to display (insert into the curent buffer)
the output from ilisp. It's hooked by `ilisp-display-output-function'.
"
  (end-of-line)
  (insert (if (string-match "\n" output) "\n" "\n;;"))
  (insert output)=20
  (unless (string-match "\n" output) (beginning-of-line))
  );;pjb-output-to-current-buffer

(setq ilisp-display-output-function 'pjb-output-to-current-buffer)


--=20
__Pascal_Bourguignon__                   http://www.informatimago.com/
----------------------------------------------------------------------
Do not adjust your mind, there is a fault in reality.


-------------------------------------------------------
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.