diff options
| author | Paul Eggert | 2011-04-05 13:01:08 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-05 13:01:08 -0700 |
| commit | 583f48b90b03bcca4f561f1075aa674a04a7aa08 (patch) | |
| tree | b9871518e9218d1c791255d559b0248254ab59be /src | |
| parent | 72b04a8a970920bec1a50b75fc8032d3f0b04416 (diff) | |
| download | emacs-583f48b90b03bcca4f561f1075aa674a04a7aa08.tar.gz emacs-583f48b90b03bcca4f561f1075aa674a04a7aa08.zip | |
* eval.c (Fsignal): Remove excess argument to 'fatal'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/eval.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c7d14843bcd..45eee781589 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | 2 | ||
| 3 | Fix more problems found by GCC 4.6.0's static checks. | 3 | Fix more problems found by GCC 4.6.0's static checks. |
| 4 | 4 | ||
| 5 | * eval.c (Fsignal): Remove excess argument to 'fatal'. | ||
| 6 | |||
| 5 | * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int. | 7 | * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int. |
| 6 | This avoids several warnings with gcc -Wstrict-overflow. | 8 | This avoids several warnings with gcc -Wstrict-overflow. |
| 7 | (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code | 9 | (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code |
diff --git a/src/eval.c b/src/eval.c index d1a63a76767..93da7799bec 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1757,7 +1757,7 @@ See also the function `condition-case'. */) | |||
| 1757 | data = Fcons (error_symbol, data); | 1757 | data = Fcons (error_symbol, data); |
| 1758 | 1758 | ||
| 1759 | string = Ferror_message_string (data); | 1759 | string = Ferror_message_string (data); |
| 1760 | fatal ("%s", SDATA (string), 0); | 1760 | fatal ("%s", SDATA (string)); |
| 1761 | } | 1761 | } |
| 1762 | 1762 | ||
| 1763 | /* Internal version of Fsignal that never returns. | 1763 | /* Internal version of Fsignal that never returns. |