diff options
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index df7d28e802e..a933e05d4b9 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1293,7 +1293,7 @@ See also the function `condition-case'.") | |||
| 1293 | data = Fcons (error_symbol, data); | 1293 | data = Fcons (error_symbol, data); |
| 1294 | 1294 | ||
| 1295 | string = Ferror_message_string (data); | 1295 | string = Ferror_message_string (data); |
| 1296 | fatal (XSTRING (string)->data, 0, 0); | 1296 | fatal ("%s", XSTRING (string)->data, 0); |
| 1297 | } | 1297 | } |
| 1298 | 1298 | ||
| 1299 | /* Return nonzero iff LIST is a non-nil atom or | 1299 | /* Return nonzero iff LIST is a non-nil atom or |