Show
Ignore:
Timestamp:
2006年07月29日 07時48分34秒 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib-src/fakemail.c

    r4073 r4131  
    176176 
    177177static void 
    178 fatal (s1, s2
    179      char *s1, *s2
    180 { 
    181   error (s1, s2); 
     178fatal (s1
     179     char *s1
     180{ 
     181  error ("%s", s1); 
    182182  exit (EXIT_FAILURE); 
    183183} 
     
    191191  long *result = (long *) malloc (((unsigned) size)); 
    192192  if (result == ((long *) NULL)) 
    193     fatal ("virtual memory exhausted", 0); 
     193    fatal ("virtual memory exhausted"); 
    194194  return result; 
    195195} 
     
    378378  if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year) 
    379379         && (the_date = asctime (tm)))) 
    380     fatal ("current time is out of range", 0); 
     380    fatal ("current time is out of range"); 
    381381  /* the_date has an unwanted newline at the end */ 
    382382  date_length = strlen (the_date) - 1;