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
42eea0d0
Commit
42eea0d0
authored
Apr 05, 2011
by
Paul Eggert
Browse files
* menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
parent
da09ccce
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/menu.c
src/menu.c
+1
-1
No files found.
src/ChangeLog
View file @
42eea0d0
...
...
@@ -2,6 +2,8 @@
Fix more problems found by GCC 4.6.0's static checks.
* menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
* fns.c (Fstring_to_unibyte): Don't rely on undefined behavior
by passing a long int to a printf format expecting an int.
src/menu.c
View file @
42eea0d0
...
...
@@ -1340,7 +1340,7 @@ no quit occurs and `x-popup-menu' returns nil. */)
UNGCPRO
;
if
(
error_name
)
error
(
error_name
);
if
(
error_name
)
error
(
"%s"
,
error_name
);
return
selection
;
}
...
...
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