manpagez: man pages & more
info bigloo
Home | html | info | man
[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

32.1 Installing the BEE

The standard procedure for installing Bigloo handles the compilation of all tools required by the BEE. Additional Emacs-lisp code have to be appended to your .emacs file:

 
(autoload 'bdb "bdb" "bdb mode" t)
(autoload 'bee-mode "bee-mode" "bee mode" t)

(setq auto-mode-alist
      (append '(("\\.scm$" . bee-mode)
                ("\\.sch$" . bee-mode)
                ("\\.scme$" . bee-mode)
                ("\\.bgl$" . bee-mode)
                ("\\.bee$" . bee-mode))
              auto-mode-alist))

This code will force emacs to switch to BEE mode when editing Scheme source files.


© manpagez.com 2000-2026
Individual documents may contain additional copyright information.