From: Stephen Adams Date: Sun, 19 Sep 1993 22:38:02 +0000 (+0000) Subject: Altered order of graphics initialization to make X the default graphics X-Git-Tag: 20090517-FFI~7825 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5b3fa41fb525a6f3cb7d0a17398397e0bf3356eb;p=mit-scheme.git Altered order of graphics initialization to make X the default graphics device type (in preference to starbase). --- diff --git a/v7/src/runtime/make.scm b/v7/src/runtime/make.scm index c92ed1524..3729e6994 100644 --- a/v7/src/runtime/make.scm +++ b/v7/src/runtime/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: make.scm,v 14.48 1993/08/30 19:57:13 ziggy Exp $ +$Id: make.scm,v 14.49 1993/09/19 22:38:02 adams Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -463,9 +463,9 @@ MIT in each case. |# (RUNTIME DEBUGGER) ;; Misc (e.g., version) (RUNTIME) - ;; Graphics - (RUNTIME X-GRAPHICS) + ;; Graphics. The last system loaded is the default for MAKE-GRAPHICS-DEVICE (RUNTIME STARBASE-GRAPHICS) + (RUNTIME X-GRAPHICS) ;; Emacs -- last because it installs hooks everywhere which must be initted. (RUNTIME EMACS-INTERFACE) ;; More debugging diff --git a/v8/src/runtime/make.scm b/v8/src/runtime/make.scm index c92ed1524..3729e6994 100644 --- a/v8/src/runtime/make.scm +++ b/v8/src/runtime/make.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: make.scm,v 14.48 1993/08/30 19:57:13 ziggy Exp $ +$Id: make.scm,v 14.49 1993/09/19 22:38:02 adams Exp $ Copyright (c) 1988-1993 Massachusetts Institute of Technology @@ -463,9 +463,9 @@ MIT in each case. |# (RUNTIME DEBUGGER) ;; Misc (e.g., version) (RUNTIME) - ;; Graphics - (RUNTIME X-GRAPHICS) + ;; Graphics. The last system loaded is the default for MAKE-GRAPHICS-DEVICE (RUNTIME STARBASE-GRAPHICS) + (RUNTIME X-GRAPHICS) ;; Emacs -- last because it installs hooks everywhere which must be initted. (RUNTIME EMACS-INTERFACE) ;; More debugging