mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-27 15:52:00 -08:00
(Fsignal): Use a separate format string when passing
error message string to fatal, in case it contains %'s.
This commit is contained in:
parent
3c52e568d6
commit
377127ce12
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue