Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
377127ce
Commit
377127ce
authored
Oct 30, 1998
by
Andreas Schwab
Browse files
(Fsignal): Use a separate format string when passing
error message string to fatal, in case it contains %'s.
parent
3c52e568
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/eval.c
src/eval.c
+1
-1
No files found.
src/eval.c
View file @
377127ce
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment