tamago-4.0.6
[elisp/tamago.git] / docomp.el
1 ;;; docomp.el --- compile Egg files
2
3 ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc
4
5 ;; Author: NIIBE Yutaka <gniibe@chroot.org>
6
7 ;; Maintainer: TOMURA Satoru <tomura@etl.go.jp>
8
9 ;; Keywords: mule, multilingual, input method
10
11 ;; This file is part of EGG.
12
13 ;; EGG is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; EGG is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Commentary:
29
30 ;;; Code:
31
32
33 (setq load-path (append (list (expand-file-name "./") )
34                         load-path))
35
36 (setq max-specpdl-size (* 10 max-specpdl-size)
37       max-lisp-eval-depth (* 10 max-lisp-eval-depth))
38
39 (load "bytecomp" t t nil)
40 (setq byte-compile-warnings '(obsolete redefine callargs); free-vars unresolved
41       byte-optimize t
42       )
43
44 (require 'cl)