]> git.eshelyaron.com Git - emacs.git/commitdiff
(init_display): Use `fatal'.
authorRichard M. Stallman <rms@gnu.org>
Mon, 20 Jan 1997 02:22:25 +0000 (02:22 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 20 Jan 1997 02:22:25 +0000 (02:22 +0000)
src/dispnew.c

index 0301c57cb193c419e610ff8158589ec2c8e2854e..8e36710e1f7db7ffef6f3cc7cd531472f46a6d05 100644 (file)
@@ -2511,7 +2511,7 @@ init_display ()
   /* If no window system has been specified, try to use the terminal.  */
   if (! isatty (0))
     {
-      fprintf (stderr, "emacs: standard input is not a tty\n");
+      fatal ("standard input is not a tty");
       exit (1);
     }
 
@@ -2558,11 +2558,7 @@ For types not defined in VMS, use  define emacs_term \"TYPE\".\n\
     /* If these sizes are so big they cause overflow,
        just ignore the change.  It's not clear what better we could do.  */
     if (total_glyphs / sizeof (GLYPH) / height != width + 2)
-      {
-       fprintf (stderr, "emacs: screen size %dx%d too big\n,",
-                width, height);
-       exit (1);
-      }
+      fatal ("screen size %dx%d too big", width, height);
   }
 
   remake_frame_glyphs (selected_frame);