;; -*- Emacs-Lisp -*-

;; This is my `user-init-file' (~/.xemacs/init.el).  I like a "modular"
;; approach to things, so all this file does is load the various other
;; init files.  All the files that this loads are in ~/etc/XEmacs/
;;
;; Download source here.

;; Add ~/etc/XEmacs to the load-path
(push (file-name-as-directory
       (expand-file-name "etc/XEmacs" (getenv "HOME"))) load-path)
;:*======================
;:* This is where it all starts...
;;  
;;  
(load "vars-sy") ; html source
(load "keys-sy") ; html source
(load "c-mode-sy") ; html source
(load "perl-sy") ; html source
(load "w3-sy") ; html source
(load "latex-sy") ; html source
(load "html-sy") ; html source
(load "cal-sy") ; html source
(load "sounds-sy") ; html source
(load "pkgs-sy") ; html source
(load "bbdb-sy") ; html source
(load "mh-e-sy") ; html source
(load "misc-sy") ; html source
(load "fonts-sy") ; html source
(when (featurep 'toolbar)
  (load "toolbar-sy")) ; html source
;:*======================
;:* XEmacs ready for take-off!!!
(let ((string "XEmacs ready for take-off!!!"))
  (string-match "XEmacs ready for take-off!!!" string)
  (put-text-property (match-beginning 0) (match-end 0) 'face 'red string)
  (display-message 'message string)
  (sit-for 1))

Created with XEmacs Valid HTML 4.01! Valid CSS!
Copyright © 2003 Steve Youngs
Verbatim copying and distribution is permitted in any medium, providing this notice is preserved.
Last modified: Sat Oct 18 01:57:37 EST 2003