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
583f48b9
Commit
583f48b9
authored
Apr 05, 2011
by
Paul Eggert
Browse files
* eval.c (Fsignal): Remove excess argument to 'fatal'.
parent
72b04a8a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
src/ChangeLog
src/ChangeLog
+2
-0
src/eval.c
src/eval.c
+1
-1
No files found.
src/ChangeLog
View file @
583f48b9
...
...
@@ -2,6 +2,8 @@
Fix more problems found by GCC 4.6.0's static checks.
* eval.c (Fsignal): Remove excess argument to 'fatal'.
* coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
This avoids several warnings with gcc -Wstrict-overflow.
(DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
src/eval.c
View file @
583f48b9
...
...
@@ -1757,7 +1757,7 @@ See also the function `condition-case'. */)
data
=
Fcons
(
error_symbol
,
data
);
string
=
Ferror_message_string
(
data
);
fatal
(
"%s"
,
SDATA
(
string
)
,
0
);
fatal
(
"%s"
,
SDATA
(
string
));
}
/* Internal version of Fsignal that never returns.
...
...
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