diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog.multi-tty | 4 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/ChangeLog.multi-tty b/lib-src/ChangeLog.multi-tty index f118b0b2d7c..f8eedb5d756 100644 --- a/lib-src/ChangeLog.multi-tty +++ b/lib-src/ChangeLog.multi-tty | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-05-19 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * emacsclient.c (decode_options): Don't use a tty on mac carbon. | ||
| 4 | |||
| 1 | 2007-05-17 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2007-05-17 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * emacsclient.c (handle_sigtstp): Use the new name for the | 7 | * emacsclient.c (handle_sigtstp): Use the new name for the |
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index c7c2f00c326..8e8cb9b379a 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -458,7 +458,7 @@ decode_options (argc, argv) | |||
| 458 | 458 | ||
| 459 | if (!tty && display) | 459 | if (!tty && display) |
| 460 | window_system = 1; | 460 | window_system = 1; |
| 461 | #ifndef WINDOWSNT | 461 | #if !defined (WINDOWSNT) && !defined (HAVE_CARBON) |
| 462 | else | 462 | else |
| 463 | tty = 1; | 463 | tty = 1; |
| 464 | #endif | 464 | #endif |