aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1991-11-27 03:29:02 +0000
committerJim Blandy1991-11-27 03:29:02 +0000
commitc35f9044a5c7a28cfe0bc9d3ff5eaa805e047b59 (patch)
tree828daadfc9c4c82f1d9499a9ef418579facbf8eb
parent809ca691c2d365e32b168ea3f7587f59f10c6619 (diff)
downloademacs-c35f9044a5c7a28cfe0bc9d3ff5eaa805e047b59.tar.gz
emacs-c35f9044a5c7a28cfe0bc9d3ff5eaa805e047b59.zip
*** empty log message ***
-rw-r--r--lisp/startup.el21
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.")
148 (setq version-control 'never)))) 148 (setq version-control 'never))))
149 149
150 ;; Choose a good default value for split-window-keep-point. 150 ;; Choose a good default value for split-window-keep-point.
151 (setq split-window-keep-point (> (baud-rate) 2400)) 151 (setq split-window-keep-point (> baud-rate 2400))
152 152
153 ;; Read window system's init file if using a window system. 153 ;; Read window system's init file if using a window system.
154 (if (and window-system (not noninteractive)) 154 (if (and window-system (not noninteractive))
155 (condition-case data 155 (load (concat term-file-prefix
156 (load (concat term-file-prefix 156 (symbol-name window-system)
157 (symbol-name window-system) 157 "-win")
158 "-win") 158 ;; Every window system should have a startup file;
159 ;; Every window system should have a startup file; 159 ;; barf if we can't find it.
160 ;; barf if we can't find it. 160 nil t))
161 nil t)
162 (error
163 (let ((standard-output 'external-debugging-output))
164 (princ "Error initializing window system: ")
165 (prin1 data)
166 (terpri)
167 (kill-emacs)))))
168 161
169 (let ((done nil) 162 (let ((done nil)
170 (args (cdr command-line-args))) 163 (args (cdr command-line-args)))