Remove debug logging
* src/nsterm.m ([EmacsView copyRect:to:]): Remove logging as it's no longer required.
This commit is contained in:
parent
ddba3c3dba
commit
611736f3bc
1 changed files with 0 additions and 19 deletions
19
src/nsterm.m
19
src/nsterm.m
|
@ -7892,25 +7892,6 @@ - (void)copyRect:(NSRect)srcRect to:(NSPoint)dest
|
|||
|
||||
NSRect dstRect = NSMakeRect (dest.x, dest.y, NSWidth (srcRect),
|
||||
NSHeight (srcRect));
|
||||
NSRect frame = [self frame];
|
||||
|
||||
/* TODO: This check is an attempt to debug a rare graphical glitch
|
||||
on macOS and should be removed before the Emacs 28 release. */
|
||||
if (!NSContainsRect (frame, srcRect)
|
||||
|| !NSContainsRect (frame, dstRect))
|
||||
{
|
||||
NSLog (@"[EmacsView copyRect:to:] Attempting to copy to or "
|
||||
"from an area outside the graphics buffer.");
|
||||
NSLog (@" Frame: (%f, %f) %f×%f",
|
||||
NSMinX (frame), NSMinY (frame),
|
||||
NSWidth (frame), NSHeight (frame));
|
||||
NSLog (@" Source: (%f, %f) %f×%f",
|
||||
NSMinX (srcRect), NSMinY (srcRect),
|
||||
NSWidth (srcRect), NSHeight (srcRect));
|
||||
NSLog (@" Destination: (%f, %f) %f×%f",
|
||||
NSMinX (dstRect), NSMinY (dstRect),
|
||||
NSWidth (dstRect), NSHeight (dstRect));
|
||||
}
|
||||
|
||||
#ifdef NS_IMPL_COCOA
|
||||
if ([self wantsLayer])
|
||||
|
|
Loading…
Add table
Reference in a new issue