aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Tamm2005-01-19 19:14:01 +0000
committerSteven Tamm2005-01-19 19:14:01 +0000
commit8db8a5cf5fe726b504372fd2e6bb7ab685657e7b (patch)
tree9f0c599895150821a5f27a43ace5c62d00bc016d
parent3bb9abc888338017c27ac6e2347bb35d89084e64 (diff)
downloademacs-8db8a5cf5fe726b504372fd2e6bb7ab685657e7b.tar.gz
emacs-8db8a5cf5fe726b504372fd2e6bb7ab685657e7b.zip
* term/mac-win.el (process-connection-type): Use new
operating-system-release variable to use ptys on Darwin 7 (OSX 10.3) when using carbon build.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/term/mac-win.el5
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cf269a770e9..f7eb4f9749c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12005-01-19 Steven Tamm <steventamm@mac.com>
2
3 * term/mac-win.el (process-connection-type): Use new
4 operating-system-release variable to use ptys on Darwin 7 (OSX
5 10.3) when using carbon build.
6
12005-01-19 Jay Belanger <belanger@truman.edu> 72005-01-19 Jay Belanger <belanger@truman.edu>
2 8
3 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear 9 * calc/calc-ext.el (calc-fancy-prefix-other-key): Don't clear
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el
index 4b3c7531e5a..519e8a5f076 100644
--- a/lisp/term/mac-win.el
+++ b/lisp/term/mac-win.el
@@ -1696,8 +1696,9 @@ Switch to a buffer editing the last file dropped."
1696 1696
1697;; Tell Emacs to use pipes instead of pty's for processes because the 1697;; Tell Emacs to use pipes instead of pty's for processes because the
1698;; latter sometimes lose characters. Pty support is compiled in since 1698;; latter sometimes lose characters. Pty support is compiled in since
1699;; ange-ftp will not work without it. 1699;; ange-ftp will not work without it. Fixed with darwin 7 (OS X 10.3).
1700(setq process-connection-type nil) 1700(setq process-connection-type
1701 (not (string-match "^[0-6]\\." operating-system-release)))
1701 1702
1702;; Assume that fonts are always scalable on the Mac. This sometimes 1703;; Assume that fonts are always scalable on the Mac. This sometimes
1703;; results in characters with jagged edges. However, without it, 1704;; results in characters with jagged edges. However, without it,