diff options
author | Jim Blandy <jimb@redhat.com> | 1991-11-27 03:29:02 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1991-11-27 03:29:02 +0000 |
commit | c35f9044a5c7a28cfe0bc9d3ff5eaa805e047b59 (patch) | |
tree | 828daadfc9c4c82f1d9499a9ef418579facbf8eb /lisp | |
parent | 809ca691c2d365e32b168ea3f7587f59f10c6619 (diff) | |
download | emacs-c35f9044a5c7a28cfe0bc9d3ff5eaa805e047b59.tar.gz |
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/startup.el | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 16386caffba..fa81e24b775 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -148,23 +148,16 @@ directory name of the directory where the `.emacs' file was looked for.") (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))) |