File: sun-eos-init.el

package info (click to toggle)
xemacs20 20.4-13
  • links: PTS
  • area: main
  • in suites: slink
  • size: 67,324 kB
  • ctags: 57,643
  • sloc: lisp: 586,197; ansic: 184,662; sh: 4,296; asm: 3,179; makefile: 2,021; perl: 1,059; csh: 96; sed: 22
file content (38 lines) | stat: -rw-r--r-- 1,088 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;;; sun-eos-init.el --- Initializes the XEmacs/SPARCworks interface

;; Copyright (C) 1996  Sun Microsystems, Inc.

;; Maintainer:	Eduardo Pelegri-Llopart <eduardo.pelegri-llopart@Eng.Sun.COM>
;; Author:      Eduardo Pelegri-Llopart <eduardo.pelegri-llopart@Eng.Sun.COM>

;; Keywords:	SPARCworks EOS Era on SPARCworks initialize

;;; Commentary:

;; Initialize EOS
;; Please send feedback to eduardo.pelegri-llopart@eng.sun.com

;;; Code:

;; This stuff needs to be done at startup time
(defun eos::start ()
  "Initialization needed at start-up time.  Should be done by automatic
loading of eos"
  (if (not (and (string-match "XEmacs" emacs-version)
		(emacs-version>= 19 12)))
      (error "Eos version %s only runs on XEmacs 19.12 and later"
	     eos::version))
  (if (not noninteractive)
      (progn
	(eos::common-startup)
	(eos::editor-startup)
	(eos::debugger-startup)
	(eos::debugger-extra-startup)
	(eos::browser-startup)
	(eos::menubar-startup))))

;(add-hook 'before-init-hook 'eos::start t) ; append to the end of hook list

(provide 'eos-init)

;;; sun-eos-init.el ends here