aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Choi2003-04-15 01:29:42 +0000
committerAndrew Choi2003-04-15 01:29:42 +0000
commit5416884dd37e7b4579ebb783948914c0d61e84b2 (patch)
tree1bc01104acd0d0576df2be7e8ebed9219ae66a6c
parente350babd40ddb71d15025af03d18f4154f31334f (diff)
downloademacs-5416884dd37e7b4579ebb783948914c0d61e84b2.tar.gz
emacs-5416884dd37e7b4579ebb783948914c0d61e84b2.zip
* term/mac-win.el: Unconditionally set process-connection-type to nil.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/term/mac-win.el9
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9fd465457eb..a84f61b73f3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-04-14 Andrew Choi <akochoi@shaw.ca>
2
3 * term/mac-win.el: Unconditionally set process-connection-type to
4 nil.
5
12003-04-14 Richard M. Stallman <rms@gnu.org> 62003-04-14 Richard M. Stallman <rms@gnu.org>
2 7
3 * derived.el (define-derived-mode): Make generated code work in 8 * derived.el (define-derived-mode): Make generated code work in
@@ -3823,7 +3828,7 @@
3823 Update custom-type of `current-language-environment'. 3828 Update custom-type of `current-language-environment'.
3824 (current-language-environment): Fix custom type. 3829 (current-language-environment): Fix custom type.
3825 3830
38262002-12-11 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 38312002-12-11 Pavel Jan,Am(Bk <Pavel@Janik.cz>
3827 3832
3828 * progmodes/antlr-mode.el (antlr): New URL. 3833 * progmodes/antlr-mode.el (antlr): New URL.
3829 3834
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el
index 2b66679e39e..ecc7db8d7a2 100644
--- a/lisp/term/mac-win.el
+++ b/lisp/term/mac-win.el
@@ -232,11 +232,10 @@ ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman")
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,