# HG changeset patch # User Jim Blandy # Date 691212542 0 # Node ID be739cb3c0fc71337b1bacf550c23a8ccedc36d6 # Parent 6e0a136fca4fedd33419e58f16f804991c0e05ca *** empty log message *** diff -r 6e0a136fca4f -r be739cb3c0fc lisp/startup.el --- a/lisp/startup.el Tue Nov 26 05:14:58 1991 +0000 +++ b/lisp/startup.el Wed Nov 27 03:29:02 1991 +0000 @@ -148,23 +148,16 @@ (setq version-control 'never)))) ;; Choose a good default value for split-window-keep-point. - (setq split-window-keep-point (> (baud-rate) 2400)) + (setq split-window-keep-point (> baud-rate 2400)) ;; Read window system's init file if using a window system. (if (and window-system (not noninteractive)) - (condition-case data - (load (concat term-file-prefix - (symbol-name window-system) - "-win") - ;; Every window system should have a startup file; - ;; barf if we can't find it. - nil t) - (error - (let ((standard-output 'external-debugging-output)) - (princ "Error initializing window system: ") - (prin1 data) - (terpri) - (kill-emacs))))) + (load (concat term-file-prefix + (symbol-name window-system) + "-win") + ;; Every window system should have a startup file; + ;; barf if we can't find it. + nil t)) (let ((done nil) (args (cdr command-line-args)))