comparison lisp/term/mac-win.el @ 50596:201ff32466bc

* term/mac-win.el: Unconditionally set process-connection-type to nil.
author Andrew Choi <akochoi@shaw.ca>
date Tue, 15 Apr 2003 01:29:42 +0000
parents 5742fd7a94a7
children b160887e424c
comparison
equal deleted inserted replaced
50595:7633f45262ae 50596:201ff32466bc
230 ;; If Emacs is started from the Finder, change the default directory 230 ;; If Emacs is started from the Finder, change the default directory
231 ;; to the user's home directory. 231 ;; to the user's home directory.
232 (if (string= default-directory "/") 232 (if (string= default-directory "/")
233 (cd "~")) 233 (cd "~"))
234 234
235 (unless (eq system-type 'darwin) 235 ;; Tell Emacs to use pipes instead of pty's for processes because the
236 ;; Tell Emacs to use pipes instead of pty's for processes because the 236 ;; latter sometimes lose characters. Pty support is compiled in since
237 ;; latter sometimes lose characters. Pty support is compiled in since 237 ;; ange-ftp will not work without it.
238 ;; ange-ftp will not work without it. 238 (setq process-connection-type nil)
239 (setq process-connection-type nil))
240 239
241 ;; Assume that fonts are always scalable on the Mac. This sometimes 240 ;; Assume that fonts are always scalable on the Mac. This sometimes
242 ;; results in characters with jagged edges. However, without it, 241 ;; results in characters with jagged edges. However, without it,
243 ;; fonts with both truetype and bitmap representations but no italic 242 ;; fonts with both truetype and bitmap representations but no italic
244 ;; or bold bitmap versions will not display these variants correctly. 243 ;; or bold bitmap versions will not display these variants correctly.