Initial Commit
[packages] / xemacs-packages / ilisp / custom-ilisp.el
1 ;;; -*- Mode: Emacs-Lisp -*-
2
3 ;;; custom-ilisp.el --
4 ;;; ILISP Customization.
5 ;;; WARNING!  This file is not loaded yet.  Loading it may cause some
6 ;;; problems.
7 ;;;
8 ;;; This file is part of ILISP.
9 ;;; Please refer to the file COPYING for copyrights and licensing
10 ;;; information.
11 ;;; Please refer to the file ACKNOWLEGDEMENTS for an (incomplete) list
12 ;;; of present and past contributors.
13 ;;;
14 ;;; $Id: custom-ilisp.el,v 1.2 2001-07-02 09:40:44 youngs Exp $
15
16 (defgroup ILisp nil
17   "The ILisp Inferior Lisp System."
18   :group 'programming
19   :group 'lisp)
20
21 (defgroup ILisp-interaction nil
22   "ILisp interaction customization."
23   :group 'ILisp)
24
25 (defcustom ilisp-*prefix* "\C-z"
26   "Prefix sequence for ILisp commands."
27   :group 'ILisp-interaction
28   )
29
30 (defcustom lisp-no-popper 'message
31   "*T if all output goes to the inferior LISP rather than in a pop-up window.
32 Use 'message' if you want output of one line to go to the echo area
33 (usually the Minibuffer) or to a pop-up window if more.  You should
34 probably also set 'comint-always-scroll' to T as well so that output is
35 always visible."
36   :group 'ILisp-interaction
37   :options '(nil t message)
38   )
39
40
41 ;;; end of file -- custom-ilisp.el -*-
42