diff options
| author | Dan Nicolaescu | 2007-05-17 00:17:06 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-05-17 00:17:06 +0000 |
| commit | 90843190c51b9151b26cd61b9da89f654fe0e8c4 (patch) | |
| tree | 09dceade2f1485603c1975c9030b27e926d8362b /lib-src | |
| parent | a0c750da6ede1575088050f36d7c732532d51d54 (diff) | |
| download | emacs-90843190c51b9151b26cd61b9da89f654fe0e8c4.tar.gz emacs-90843190c51b9151b26cd61b9da89f654fe0e8c4.zip | |
* emacsclient.c (handle_sigtstp): Use the new name for the
socket variable.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog.multi-tty | 5 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/ChangeLog.multi-tty b/lib-src/ChangeLog.multi-tty index f2aafdadb7a..f118b0b2d7c 100644 --- a/lib-src/ChangeLog.multi-tty +++ b/lib-src/ChangeLog.multi-tty | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-05-17 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * emacsclient.c (handle_sigtstp): Use the new name for the | ||
| 4 | socket variable. | ||
| 5 | |||
| 1 | 2007-05-16 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2007-05-16 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * emacsclient.c (decode_options): Don't use a tty on windows. | 8 | * emacsclient.c (decode_options): Don't use a tty on windows. |
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index c00ae9d42be..c7c2f00c326 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c | |||
| @@ -977,7 +977,7 @@ handle_sigtstp (int signalnum) | |||
| 977 | int old_errno = errno; | 977 | int old_errno = errno; |
| 978 | sigset_t set; | 978 | sigset_t set; |
| 979 | 979 | ||
| 980 | if (s) | 980 | if (emacs_socket) |
| 981 | send_to_emacs (emacs_socket, "-suspend \n"); | 981 | send_to_emacs (emacs_socket, "-suspend \n"); |
| 982 | 982 | ||
| 983 | /* Unblock this signal and call the default handler by temprarily | 983 | /* Unblock this signal and call the default handler by temprarily |