]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove trailing semicolons in method definitions
authorPhilipp Stephani <phst@google.com>
Sat, 20 May 2017 14:47:11 +0000 (16:47 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 21 May 2017 19:49:58 +0000 (21:49 +0200)
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.

src/nsimage.m
src/nsterm.m

index 1c82fa780a0b5ad8d1730f3238fa6567904af7c6..fb2322afc3085d6bbb19d2c56f1af737ed5015b9 100644 (file)
@@ -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;
index 50ce9398fbc97f3085e6375dcfb173167e9a00cd..785147ae8d005d9f0e5507601a3954607b40cb4d 100644 (file)
@@ -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));