home *** CD-ROM | disk | FTP | other *** search
- diff -C 3 emacs-18.58/lisp/loadup.el gnuemacs:lisp/loadup.el
- *** emacs-18.58/lisp/loadup.el Wed Jan 09 23:01:30 1991
- --- gnuemacs:lisp/loadup.el Sun Feb 23 00:37:53 1992
- ***************
- *** 23,33 ****
- (garbage-collect)
- (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
- (garbage-collect)
- ! (load "simple")
- (garbage-collect)
- (load "help")
- (garbage-collect)
- ! (load "files")
- (garbage-collect)
- (load "indent")
- (load "window")
- --- 23,37 ----
- (garbage-collect)
- (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
- (garbage-collect)
- ! (if (eq system-type 'amigados)
- ! (load "amiga-simple")
- ! (load "simple"))
- (garbage-collect)
- (load "help")
- (garbage-collect)
- ! (if (eq system-type 'amigados)
- ! (load "amiga-files")
- ! (load "files"))
- (garbage-collect)
- (load "indent")
- (load "window")
- ***************
- *** 62,67 ****
- --- 66,75 ----
- (progn
- (garbage-collect)
- (load "vms-patch")))
- + (if (eq system-type 'amigados)
- + (progn
- + (garbage-collect)
- + (load "amiga-init")))
-
- ;If you want additional libraries to be preloaded and their
- ;doc strings kept in the DOC file rather than in core,
- ***************
- *** 135,140 ****
- --- 143,150 ----
-
- ;; Avoid error if user loads some more libraries now.
- (setq purify-flag nil)
- + ;; Stop using malloc hunk even if not dumped!
- + (if (eq system-type 'amigados) (setq amiga-initialized 1))
-
- ;; For machines with CANNOT_DUMP defined in config.h,
- ;; this file must be loaded each time Emacs is run.
- diff -C 3 emacs-18.58/lisp/startup.el gnuemacs:lisp/startup.el
- *** emacs-18.58/lisp/startup.el Wed Jan 16 05:19:04 1991
- --- gnuemacs:lisp/startup.el Wed Jan 29 14:09:30 1992
- ***************
- *** 111,119 ****
- ;; Load user's init file, or load default one.
- (condition-case error
- (if init
- ! (progn (load (if (eq system-type 'vax-vms)
- ! "sys$login:.emacs"
- ! (concat "~" init "/.emacs"))
- t t t)
- (or inhibit-default-init
- (let ((inhibit-startup-message nil))
- --- 111,119 ----
- ;; Load user's init file, or load default one.
- (condition-case error
- (if init
- ! (progn (load (cond ((eq system-type 'vax-vms) "sys$login:.emacs")
- ! ((eq system-type 'amigados) "s:.emacs")
- ! (t (concat "~" init "/.emacs")))
- t t t)
- (or inhibit-default-init
- (let ((inhibit-startup-message nil))
- ***************
- *** 127,132 ****
- --- 127,136 ----
- (save-excursion
- (set-buffer "*scratch*")
- (funcall initial-major-mode)))
- + ;; On Amiga, initialise clipboard
- + (if (eq system-type 'amigados)
- + (let ((clip (safe-amiga-paste)))
- + (if clip (kill-add clip))))
- ;; Load library for our terminal type.
- ;; User init file can set term-file-prefix to nil to prevent this.
- (and term-file-prefix (not noninteractive)
- diff -C 3 emacs-18.58/lisp/texinfmt.el gnuemacs:lisp/texinfmt.el
- *** emacs-18.58/lisp/texinfmt.el Sun Dec 08 06:28:09 1991
- --- gnuemacs:lisp/texinfmt.el Sun Mar 01 10:26:57 1992
- ***************
- *** 874,880 ****
- (insert "\n* Menu:\n\n")
- (setq opoint (point))
- (texinfo-print-index nil indexelts)
- ! (if (eq system-type 'vax-vms)
- (texinfo-sort-region opoint (point))
- (shell-command-on-region opoint (point) "sort -fd" 1))))
-
- --- 874,880 ----
- (insert "\n* Menu:\n\n")
- (setq opoint (point))
- (texinfo-print-index nil indexelts)
- ! (if (or (eq system-type 'amigados) (eq system-type 'vax-vms))
- (texinfo-sort-region opoint (point))
- (shell-command-on-region opoint (point) "sort -fd" 1))))
-
-