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.
- (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;
@implementation EmacsBell
-- (id)init;
+- (id)init
{
NSTRACE ("[EmacsBell init]");
if ((self = [super init]))
return NO;
}
-- (void) updateFrameSize: (BOOL) delay;
+- (void) updateFrameSize: (BOOL) delay
{
NSWindow *window = [self window];
NSRect wr = [window frame];
}
-- (void)setFrame:(NSRect)frameRect;
+- (void)setFrame:(NSRect)frameRect
{
NSTRACE ("[EmacsView setFrame:" NSTRACE_FMT_RECT "]",
NSTRACE_ARG_RECT (frameRect));