emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f04e3d6 07/13: Remove trailing semicolons in method


From: Philipp Stephani
Subject: [Emacs-diffs] master f04e3d6 07/13: Remove trailing semicolons in method definitions
Date: Sun, 21 May 2017 15:51:47 -0400 (EDT)

branch: master
commit f04e3d6e204142469f0e0df9309e246b12920b35
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    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.
---
 src/nsimage.m | 2 +-
 src/nsterm.m  | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/nsimage.m b/src/nsimage.m
index 1c82fa7..fb2322a 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 50ce939..785147a 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));



reply via email to

[Prev in Thread] Current Thread [Next in Thread]