diff options
| author | Andrew Choi | 2002-04-26 23:39:06 +0000 |
|---|---|---|
| committer | Andrew Choi | 2002-04-26 23:39:06 +0000 |
| commit | e0f712ba55fa0d073f6ab93606e428f61fc7caf2 (patch) | |
| tree | 7dc6d3403fafcbee1a83288ac840f7eba1d92b44 /lisp/term | |
| parent | 501d8923ae2cdec4ef50f050bb66d3715ba2a8f6 (diff) | |
| download | emacs-e0f712ba55fa0d073f6ab93606e428f61fc7caf2.tar.gz emacs-e0f712ba55fa0d073f6ab93606e428f61fc7caf2.zip | |
Patch for building Emacs on Mac OS X. April 26, 2002. See ChangeLog,
lisp/ChangeLog, and src/ChangeLog for list of changes.
Diffstat (limited to 'lisp/term')
| -rw-r--r-- | lisp/term/mac-win.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index 48c210d51e2..53f6cde1d79 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999, 2000 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Andrew Choi <akochoi@i-cable.com> | 5 | ;; Author: Andrew Choi <akochoi@mac.com> |
| 6 | 6 | ||
| 7 | ;; This file is part of GNU Emacs. | 7 | ;; This file is part of GNU Emacs. |
| 8 | 8 | ||
| @@ -120,7 +120,7 @@ | |||
| 120 | ;; X Window emulation in macterm.c is not complete enough to start a | 120 | ;; X Window emulation in macterm.c is not complete enough to start a |
| 121 | ;; frame without a minibuffer properly. Call this to tell ediff | 121 | ;; frame without a minibuffer properly. Call this to tell ediff |
| 122 | ;; library to use a single frame. | 122 | ;; library to use a single frame. |
| 123 | (ediff-toggle-multiframe) | 123 | ; (ediff-toggle-multiframe) |
| 124 | 124 | ||
| 125 | ;; Setup to use the Mac clipboard. The functions mac-cut-function and | 125 | ;; Setup to use the Mac clipboard. The functions mac-cut-function and |
| 126 | ;; mac-paste-function are defined in mac.c. | 126 | ;; mac-paste-function are defined in mac.c. |
| @@ -215,6 +215,16 @@ ascii:-*-Monaco-*-*-*-*-12-*-*-*-*-*-mac-roman") | |||
| 215 | ;; big5 or sjis | 215 | ;; big5 or sjis |
| 216 | (setq file-name-coding-system 'mac-roman) | 216 | (setq file-name-coding-system 'mac-roman) |
| 217 | 217 | ||
| 218 | ;; If Emacs is started from the Finder, change the default directory | ||
| 219 | ;; to the user's home directory. | ||
| 220 | (if (string= default-directory "/") | ||
| 221 | (cd "~")) | ||
| 222 | |||
| 223 | ;; Tell Emacs to use pipes instead of pty's for processes because the | ||
| 224 | ;; latter sometimes lose characters. Pty support is compiled in since | ||
| 225 | ;; ange-ftp will not work without it. | ||
| 226 | (setq process-connection-type nil) | ||
| 227 | |||
| 218 | ;; (prefer-coding-system 'mac-roman) | 228 | ;; (prefer-coding-system 'mac-roman) |
| 219 | 229 | ||
| 220 | ;; | 230 | ;; |