]> git.eshelyaron.com Git - emacs.git/commitdiff
* s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Apr 2011 21:57:28 +0000 (14:57 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 16 Apr 2011 21:57:28 +0000 (14:57 -0700)
src/ChangeLog
src/s/usg5-4-common.h

index d7dc454c3dc553942d2b5d6b62bbe71ecff8ae92..172fccc2dcfa91f71bdf23d473376a5158f2b1f8 100644 (file)
@@ -1,5 +1,7 @@
 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
+
        * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
 
        * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
index 236f71e3007f27ea643a446e555015896916cbcc..e6d992d8f9c95706b04765c75a3517258e0bf2d0 100644 (file)
@@ -88,11 +88,11 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 /* Push various streams modules onto a PTY channel.  */
 #define SETUP_SLAVE_PTY \
   if (ioctl (xforkin, I_PUSH, "ptem") == -1)   \
-    fatal ("ioctl I_PUSH ptem", errno);                \
+    fatal ("ioctl I_PUSH ptem");               \
   if (ioctl (xforkin, I_PUSH, "ldterm") == -1) \
-    fatal ("ioctl I_PUSH ldterm", errno);      \
+    fatal ("ioctl I_PUSH ldterm");     \
   if (ioctl (xforkin, I_PUSH, "ttcompat") == -1) \
-    fatal ("ioctl I_PUSH ttcompat", errno);
+    fatal ("ioctl I_PUSH ttcompat");
 
 /* This definition was suggested for next release.  So give it a try.  */
 #define HAVE_SOCKETS