diff options
-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'.") data = Fcons (error_symbol, data); string = Ferror_message_string (data); - fatal (XSTRING (string)->data, 0, 0); + fatal ("%s", XSTRING (string)->data, 0); } /* Return nonzero iff LIST is a non-nil atom or |