]> git.eshelyaron.com Git - emacs.git/commitdiff
* eval.c (Fsignal): Remove excess argument to 'fatal'.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 5 Apr 2011 20:01:08 +0000 (13:01 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 5 Apr 2011 20:01:08 +0000 (13:01 -0700)
src/ChangeLog
src/eval.c

index c7d14843bcd17bb0926dc8dfb6e19a35061fe1e6..45eee781589a8c4945347d7821b47948b6615a5f 100644 (file)
@@ -2,6 +2,8 @@
 
        Fix more problems found by GCC 4.6.0's static checks.
 
+       * eval.c (Fsignal): Remove excess argument to 'fatal'.
+
        * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
        This avoids several warnings with gcc -Wstrict-overflow.
        (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
index d1a63a76767da884477de1f68928b01182ef5ef4..93da7799bec776387d8a783279950f5fcff7a184 100644 (file)
@@ -1757,7 +1757,7 @@ See also the function `condition-case'.  */)
     data = Fcons (error_symbol, data);
 
   string = Ferror_message_string (data);
-  fatal ("%s", SDATA (string), 0);
+  fatal ("%s", SDATA (string));
 }
 
 /* Internal version of Fsignal that never returns.