diff options
author | Philipp Stephani <phst@google.com> | 2017-05-20 16:47:11 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2017-05-21 21:49:58 +0200 |
commit | f04e3d6e204142469f0e0df9309e246b12920b35 (patch) | |
tree | 5e83c3cd62ba8ae1f64a236bbe6305e17d06fd72 | |
parent | add0b69445f65fe1792fe3ab5f8a8d35b997f728 (diff) | |
download | emacs-f04e3d6e204142469f0e0df9309e246b12920b35.tar.gz |
Remove trailing semicolons in method definitions
These semicolons are ignored and cause compiler warnings.
* src/nsimage.m (setPixelAtX:Y:toRed:green:blue:alpha:):
* src/nsterm.m (init, updateFrameSize:):
(setFrame:): Remove trailing semicolon.
-rw-r--r-- | src/nsimage.m | 2 | ||||
-rw-r--r-- | src/nsterm.m | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/nsimage.m b/src/nsimage.m index 1c82fa780a0..fb2322afc30 100644 --- a/src/nsimage.m +++ b/src/nsimage.m @@ -386,7 +386,7 @@ ns_set_alpha (void *img, int x, int y, unsigned char a) - (void) setPixelAtX: (int)x Y: (int)y toRed: (unsigned char)r green: (unsigned char)g blue: (unsigned char)b - alpha:(unsigned char)a; + alpha:(unsigned char)a { if (bmRep == nil) return; diff --git a/src/nsterm.m b/src/nsterm.m index 50ce9398fbc..785147ae8d0 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -1317,7 +1317,7 @@ ns_clip_to_row (struct window *w, struct glyph_row *row, @implementation EmacsBell -- (id)init; +- (id)init { NSTRACE ("[EmacsBell init]"); if ((self = [super init])) @@ -6529,7 +6529,7 @@ not_in_argv (NSString *arg) return NO; } -- (void) updateFrameSize: (BOOL) delay; +- (void) updateFrameSize: (BOOL) delay { NSWindow *window = [self window]; NSRect wr = [window frame]; @@ -6847,7 +6847,7 @@ not_in_argv (NSString *arg) } -- (void)setFrame:(NSRect)frameRect; +- (void)setFrame:(NSRect)frameRect { NSTRACE ("[EmacsView setFrame:" NSTRACE_FMT_RECT "]", NSTRACE_ARG_RECT (frameRect)); |