Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
41a62dd9
Commit
41a62dd9
authored
Aug 14, 2012
by
Dmitry Antipov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
parent
7d806b1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/gtkutil.c
src/gtkutil.c
+2
-2
No files found.
src/ChangeLog
View file @
41a62dd9
2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
* gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
* gtkutil.c (xg_mark_data): Don't assume C99.
...
...
src/gtkutil.c
View file @
41a62dd9
...
...
@@ -4583,8 +4583,8 @@ update_frame_tool_bar (FRAME_PTR f)
&&
tbinfo
->
n_last_items
==
f
->
n_tool_bar_items
&&
tbinfo
->
hmargin
==
hmargin
&&
tbinfo
->
vmargin
==
vmargin
&&
tbinfo
->
dir
==
dir
&&
Fequal
(
tbinfo
->
style
,
style
)
==
Qt
&&
Fequal
(
tbinfo
->
last_tool_bar
,
f
->
tool_bar_items
)
==
Qt
)
&&
EQ
(
Fequal
(
tbinfo
->
style
,
style
)
,
Qt
)
&&
EQ
(
Fequal
(
tbinfo
->
last_tool_bar
,
f
->
tool_bar_items
)
,
Qt
)
)
{
UNBLOCK_INPUT
;
return
;
...
...
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