home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / lisp / loadup.el < prev    next >
Lisp/Scheme  |  1996-09-28  |  8KB  |  243 lines

  1. ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
  2.  
  3. ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;; This is loaded into a bare Emacs to make a dumpable one.
  27.  
  28. ;;; Code:
  29.  
  30. (message "Using load-path %s" load-path)
  31.  
  32. ;;; We don't want to have any undo records in the dumped Emacs.
  33. (buffer-disable-undo "*scratch*")
  34.  
  35. (load "subr")
  36. (garbage-collect)
  37. (load "byte-run")
  38. (garbage-collect)
  39. (load "map-ynp")
  40. (garbage-collect)
  41. (load "loaddefs.el")  ;Don't get confused if someone compiled loaddefs by mistake.
  42. (garbage-collect)
  43. (load "simple")
  44. (garbage-collect)
  45. (load "help")
  46. (garbage-collect)
  47. (load "files")
  48. (garbage-collect)
  49. (load "indent")
  50. (garbage-collect)
  51. (load "window")
  52. (garbage-collect)
  53. (if (fboundp 'delete-frame)
  54.     (progn
  55.       (load "frame")
  56.       (load "mouse")
  57.       (garbage-collect)
  58.       (load "faces")
  59.       (garbage-collect)
  60.       (load "menu-bar")
  61.       (load "scroll-bar")
  62.       (load "select"))
  63.   (if (eq system-type 'amigaos)
  64.       (progn
  65.       (load "amiga-menu-bar")
  66.       )))
  67. (garbage-collect)
  68. (load "paths.el")  ;Don't get confused if someone compiled paths by mistake.
  69. (garbage-collect)
  70. (load "startup")
  71. (garbage-collect)
  72. (load "lisp")
  73. (garbage-collect)
  74. (load "page")
  75. (garbage-collect)
  76. (load "register")
  77. (garbage-collect)
  78. (load "paragraphs")
  79. (garbage-collect)
  80. (load "lisp-mode")
  81. (garbage-collect)
  82. (load "text-mode")
  83. (garbage-collect)
  84. (load "fill")
  85. (garbage-collect)
  86. (load "c-mode")
  87. (garbage-collect)
  88. (load "isearch")
  89. (garbage-collect)
  90. (load "replace")
  91. (if (eq system-type 'vax-vms)
  92.     (progn
  93.       (garbage-collect)
  94.       (load "vmsproc")))
  95. (garbage-collect)
  96. (load "abbrev")
  97. (garbage-collect)
  98. (load "buff-menu")
  99. (if (eq system-type 'vax-vms)
  100.     (progn
  101.       (garbage-collect)
  102.       (load "vms-patch")))
  103. (if (eq system-type 'ms-dos)
  104.     (progn
  105.       (load "ls-lisp")
  106.       (garbage-collect)
  107.       (load "mouse")
  108.       (garbage-collect)
  109.       (load "dos-fns")
  110.       (garbage-collect)
  111.       (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
  112.       (garbage-collect)))
  113. (if (eq system-type 'amigaos)
  114.     (progn
  115.       (garbage-collect)
  116.       (load "amiga-init")))
  117. (if (fboundp 'atan)    ; preload some constants and 
  118.     (progn        ; floating pt. functions if 
  119.       (garbage-collect)    ; we have float support.
  120.       (load "float-sup")))
  121. (garbage-collect)
  122. (load "vc-hooks")
  123.  
  124. ;; We specify .el in case someone compiled version.el by mistake.
  125. (load "version.el")
  126.  
  127. ;If you want additional libraries to be preloaded and their
  128. ;doc strings kept in the DOC file rather than in core,
  129. ;you may load them with a "site-load.el" file.
  130. ;But you must also cause them to be scanned when the DOC file
  131. ;is generated.  For VMS, you must edit ../vms/makedoc.com.
  132. ;For other systems, you must edit ../src/Makefile.in.in.
  133. (if (load "site-load" t)
  134.     (garbage-collect))
  135.  
  136. ;; Determine which last version number to use
  137. ;; based on the executables that now exist.
  138. (if (and (or (equal (nth 3 command-line-args) "dump")
  139.          (equal (nth 4 command-line-args) "dump"))
  140.      (not (eq system-type 'ms-dos)))
  141.     (let* ((base (concat "emacs-" emacs-version))
  142.        (files (file-name-all-completions base default-directory))
  143.        (versions (mapcar (function (lambda (name)
  144.                      (string-to-int (substring name (1+ (length base))))))
  145.                  files)))
  146.       (setq emacs-version (format "%s.%d"
  147.                   emacs-version
  148.                   (if versions
  149.                       (1+ (apply 'max versions))
  150.                     1)))))
  151.  
  152. ;; Note: all compiled Lisp files loaded above this point
  153. ;; must be among the ones parsed by make-docfile
  154. ;; to construct DOC.  Any that are not processed
  155. ;; for DOC will not have doc strings in the dumped Emacs.
  156.  
  157. (message "Finding pointers to doc strings...")
  158. (if (or (equal (nth 3 command-line-args) "dump")
  159.     (equal (nth 4 command-line-args) "dump"))
  160.     (let ((name emacs-version))
  161.       (while (string-match "[^-+_.a-zA-Z0-9]+" name)
  162.     (setq name (concat (downcase (substring name 0 (match-beginning 0)))
  163.                "-"
  164.                (substring name (match-end 0)))))
  165.       (if (eq system-type 'amigaos)
  166.       (progn
  167.         (setq name (concat (expand-file-name "/etc/DOC-") name))
  168.         (if (file-exists-p name)
  169.         (delete-file name))
  170.         (copy-file (expand-file-name "/etc/DOC") name t))
  171.     
  172.     (if (eq system-type 'ms-dos)
  173.         (setq name (expand-file-name "../etc/DOC"))
  174.       (setq name (concat (expand-file-name "../etc/DOC-") name)))
  175.     (if (file-exists-p name)
  176.         (delete-file name))
  177.     (copy-file (expand-file-name "../etc/DOC") name t))
  178.       (Snarf-documentation (file-name-nondirectory name)))
  179.   (Snarf-documentation "DOC"))
  180. (message "Finding pointers to doc strings...done")
  181.  
  182. ;Note: You can cause additional libraries to be preloaded
  183. ;by writing a site-init.el that loads them.
  184. ;See also "site-load" above.
  185. (load "site-init" t)
  186. (setq current-load-list nil)
  187. (garbage-collect)
  188.  
  189. ;;; At this point, we're ready to resume undo recording for scratch.
  190. (buffer-enable-undo "*scratch*")
  191.  
  192. (if (or (equal (nth 3 command-line-args) "dump")
  193.     (equal (nth 4 command-line-args) "dump"))
  194.     (if (eq system-type 'vax-vms)
  195.     (progn 
  196.       (message "Dumping data as file temacs.dump")
  197.       (dump-emacs "temacs.dump" "temacs")
  198.       (kill-emacs))
  199.       (if (eq system-type 'amigaos)
  200.       (progn
  201.         (message "Dumping data as file /etc/EMACS-DATA")
  202.         (dump-emacs-data "/etc/EMACS-DATA")
  203.         (kill-emacs))
  204.     (let ((name (concat "emacs-" emacs-version)))
  205.       (while (string-match "[^-+_.a-zA-Z0-9]+" name)
  206.         (setq name (concat (downcase (substring name 0 (match-beginning 0)))
  207.                    "-"
  208.                    (substring name (match-end 0)))))
  209.       (if (eq system-type 'ms-dos)
  210.           (message "Dumping under the name emacs")
  211.         (message "Dumping under names emacs and %s" name)))
  212.     (condition-case ()
  213.         (delete-file "emacs")
  214.       (file-error nil))
  215.     ;; We used to dump under the name xemacs, but that occasionally
  216.     ;; confused people installing Emacs (they'd install the file
  217.     ;; under the name `xemacs'), and it's inconsistent with every
  218.     ;; other GNU product's build process.
  219.     (progn
  220.       (dump-emacs "emacs" "temacs")
  221.       ;; Recompute NAME now, so that it isn't set when we dump.
  222.       (if (not (eq system-type 'ms-dos))
  223.           (let ((name (concat "emacs-" emacs-version)))
  224.         (while (string-match "[^-+_.a-zA-Z0-9]+" name)
  225.           (setq name (concat (downcase (substring name 0 (match-beginning 0)))
  226.                      "-"
  227.                  (substring name (match-end 0)))))
  228.         (add-name-to-file "emacs" name t)))
  229.       (kill-emacs)))))
  230.  
  231. ;; Avoid error if user loads some more libraries now.
  232. (setq purify-flag nil)
  233.  
  234. ;; For machines with CANNOT_DUMP defined in config.h,
  235. ;; this file must be loaded each time Emacs is run.
  236. ;; So run the startup code now.
  237.  
  238. (or (or (equal (nth 3 command-line-args) "dump")
  239.     (equal (nth 4 command-line-args) "dump"))
  240.     (eval top-level))
  241.  
  242. ;;; loadup.el ends here
  243.