1262
|
1 ;;; raw-process.el --- In a raw temacs, load stuff so processes work
|
|
2
|
|
3 ;; Copyright (C) 2002 Ben Wing.
|
|
4
|
|
5 ;; Author: Ben Wing
|
|
6 ;; Maintainer: XEmacs Development Team
|
|
7 ;; Keywords: internal
|
|
8
|
|
9 ;; This file is part of XEmacs.
|
|
10
|
|
11 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
12 ;; under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
19 ;; General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
|
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
23 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
24 ;; 02111-1307, USA.
|
|
25
|
|
26 ;;; Synched up with: Not in FSF
|
|
27
|
|
28 ;;; Commentary:
|
|
29
|
|
30 ;; This is a front-end to the make-docfile program that gathers up all the
|
|
31 ;; lisp files that will be dumped with XEmacs. It would probably be best
|
|
32 ;; to just move make-docfile.c completely to lisp and be done with it.
|
|
33
|
|
34 (require 'custom)
|
|
35 (load "process")
|
|
36 ;; need for stuff called from C by process code
|
|
37 (if (featurep 'windows-nt) (load "win32-native"))
|