aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKaroly Lorentey2004-06-11 13:58:35 +0000
committerKaroly Lorentey2004-06-11 13:58:35 +0000
commit71a96040ef5a4a8a308a109c45bbabb20769beac (patch)
treeb4886e1a990b2c2406bdf8b65b7f2cf620cffa3f /src
parent78b29cb3a21f6a4230ebf52edccde7c926a8c69a (diff)
downloademacs-71a96040ef5a4a8a308a109c45bbabb20769beac.tar.gz
emacs-71a96040ef5a4a8a308a109c45bbabb20769beac.zip
Fix parse error in term.c (ARISAWA Akihiro).
* src/term.c (dissociate_if_controlling_tty)[USG]: Fix parse error. (Contributed by ARISAWA Akihiro <ari@mbf.ocn.ne.jp>). git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-198
Diffstat (limited to 'src')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index b40e821e372..9052eab68b2 100644
--- a/src/term.c
+++ b/src/term.c
@@ -2278,8 +2278,8 @@ dissociate_if_controlling_tty (int fd)
2278 /* Unknown system. */ 2278 /* Unknown system. */
2279 croak (); 2279 croak ();
2280#endif /* ! TIOCNOTTY */ 2280#endif /* ! TIOCNOTTY */
2281 }
2282#endif /* ! USG */ 2281#endif /* ! USG */
2282 }
2283} 2283}
2284 2284
2285/* Create a termcap display on the tty device with the given name and 2285/* Create a termcap display on the tty device with the given name and