aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorStefan Monnier2008-03-27 20:52:24 +0000
committerStefan Monnier2008-03-27 20:52:24 +0000
commiteef6030820bba7530079acadb057c09d7133b8e9 (patch)
tree168dc1554b9dd1a514f1aab63801a3197e8cf0ec /src/process.c
parentbb555731e0c34327ffdf8d95b5e7313aa0011f30 (diff)
downloademacs-eef6030820bba7530079acadb057c09d7133b8e9.tar.gz
emacs-eef6030820bba7530079acadb057c09d7133b8e9.zip
(server_accept_connection): Simplify naming.
(emacs_get_tty_pgrp): Use SDATA.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index 9c7e542c3be..c3dfd59eeb5 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4055,7 +4055,7 @@ server_accept_connection (server, channel)
4055#endif 4055#endif
4056 default: 4056 default:
4057 caller = Fnumber_to_string (make_number (connect_counter)); 4057 caller = Fnumber_to_string (make_number (connect_counter));
4058 caller = concat3 (build_string (" <*"), caller, build_string ("*>")); 4058 caller = concat3 (build_string (" <"), caller, build_string (">"));
4059 break; 4059 break;
4060 } 4060 }
4061 4061
@@ -5709,7 +5709,7 @@ emacs_get_tty_pgrp (p)
5709 int fd; 5709 int fd;
5710 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the 5710 /* Some OS:es (Solaris 8/9) does not allow TIOCGPGRP from the
5711 master side. Try the slave side. */ 5711 master side. Try the slave side. */
5712 fd = emacs_open (XSTRING (p->tty_name)->data, O_RDONLY, 0); 5712 fd = emacs_open (SDATA (p->tty_name), O_RDONLY, 0);
5713 5713
5714 if (fd != -1) 5714 if (fd != -1)
5715 { 5715 {
@@ -5892,7 +5892,7 @@ process_send_signal (process, signo, current_group, nomsg)
5892 you'd better be using one of the alternatives above! */ 5892 you'd better be using one of the alternatives above! */
5893#endif /* ! defined (TCGETA) */ 5893#endif /* ! defined (TCGETA) */
5894#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */ 5894#endif /* ! defined (TIOCGLTC) && defined (TIOCGETC) */
5895 /* In this case, the code above should alway returns. */ 5895 /* In this case, the code above should alway return. */
5896 abort (); 5896 abort ();
5897#endif /* ! defined HAVE_TERMIOS */ 5897#endif /* ! defined HAVE_TERMIOS */
5898 5898