* bug#52260: Fix compilation error in feature/pgtk branch
@ 2021-12-03 9:20 Koen van Greevenbroek
2021-12-03 17:12 ` Lars Ingebrigtsen
0 siblings, 1 reply; 2+ messages in thread
From: Koen van Greevenbroek @ 2021-12-03 9:20 UTC (permalink / raw)
To: 52260
Hi,
I was just trying to compile the latest version of the pgtk branch when
I noticed that commit 901938109f introduced a regression: two empty
switch cases will result in a compilation error. My suggested fix is
the following:
Fix compilation error due to empty switch cases
modified src/pgtkterm.c
@@ -4276,6 +4276,7 @@ set_fullscreen_state (struct frame *f)
case FULLSCREEN_WIDTH:
case FULLSCREEN_HEIGHT:
+ ;
/* Not supported by gtk. Ignore them. */
}
This fixes the compilation error for me; I don't know if there is a
more idiomatic way of solving this.
Kind regards,
Koen van Greevenbroek
^ permalink raw reply [flat|nested] 2+ messages in thread
* bug#52260: Fix compilation error in feature/pgtk branch
2021-12-03 9:20 bug#52260: Fix compilation error in feature/pgtk branch Koen van Greevenbroek
@ 2021-12-03 17:12 ` Lars Ingebrigtsen
0 siblings, 0 replies; 2+ messages in thread
From: Lars Ingebrigtsen @ 2021-12-03 17:12 UTC (permalink / raw)
To: Koen van Greevenbroek; +Cc: 52260
Koen van Greevenbroek <koen_devel@posteo.net> writes:
> I was just trying to compile the latest version of the pgtk branch when
> I noticed that commit 901938109f introduced a regression: two empty
> switch cases will result in a compilation error. My suggested fix is
> the following:
>
> Fix compilation error due to empty switch cases
>
> modified src/pgtkterm.c
> @@ -4276,6 +4276,7 @@ set_fullscreen_state (struct frame *f)
>
> case FULLSCREEN_WIDTH:
> case FULLSCREEN_HEIGHT:
> + ;
> /* Not supported by gtk. Ignore them. */
> }
>
> This fixes the compilation error for me; I don't know if there is a
> more idiomatic way of solving this.
I think adding a "break;" is the normal way to do it, so I've now done
this on the pgtk branch.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-12-03 17:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-03 9:20 bug#52260: Fix compilation error in feature/pgtk branch Koen van Greevenbroek
2021-12-03 17:12 ` Lars Ingebrigtsen
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).