unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: "zentrope@fastmail.fm" <keith@zentrope.com>
To: 31904@debbugs.gnu.org
Subject: bug#31904: Acknowledgement (27.0.50; Emacs doesn't render text/modeline Mac OSX 10.14 Mojave)
Date: Wed, 20 Jun 2018 14:32:09 -0700	[thread overview]
Message-ID: <C6AB6D46-9380-4C26-8B51-833E9B3A5D4C@zentrope.com> (raw)
In-Reply-To: <handler.31904.B.152945065229583.ack@debbugs.gnu.org>

Here’s the bit involved with the NS stuff. Yes, plenty of deprecations, though that’s been going on for quite a few iterations.

  CC       nsterm.o
nsterm.m:175:16: warning: 'colorUsingColorSpaceName:' is deprecated: first deprecated in
      macOS 10.14 - Use -colorUsingType: or -colorUsingColorSpace: instead
      [-Wdeprecated-declarations]
  return [self colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
               ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:405:1: note: 
      'colorUsingColorSpaceName:' has been explicitly marked deprecated here
- (nullable NSColor *)colorUsingColorSpaceName:(NSColorSpaceName)name NS_DEPRECAT...
^
nsterm.m:713:3: warning: 'NSDisableScreenUpdates' is deprecated: first deprecated in
      macOS 10.11 - As of 10.11 it is not generally necessary to take explicit action to
      achieve visual atomicity. +[NSAnimationContext runAnimationGroup:] and other
      similar methods can be used when a stronger than normal need for visual atomicity
      is required. The NSAnimationContext methods do not suffer from the same performance
      problems as NSDisableScreenUpdates. [-Wdeprecated-declarations]
  NSDisableScreenUpdates ();
  ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:234:20: note: 
      'NSDisableScreenUpdates' has been explicitly marked deprecated here
APPKIT_EXTERN void NSDisableScreenUpdates(void) NS_DEPRECATED_MAC(10_0, 10_11, "A...
                   ^
nsterm.m:723:7: warning: 'NSEnableScreenUpdates' is deprecated: first deprecated in macOS
      10.11 - As of 10.11 it is not generally necessary to take explicit action to
      achieve visual atomicity. +[NSAnimationContext runAnimationGroup:] and other
      similar methods can be used when a stronger than normal need for visual atomicity
      is required. The NSAnimationContext methods do not suffer from the same performance
      problems as NSEnableScreenUpdates. [-Wdeprecated-declarations]
      NSEnableScreenUpdates ();
      ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:236:20: note: 
      'NSEnableScreenUpdates' has been explicitly marked deprecated here
APPKIT_EXTERN void NSEnableScreenUpdates(void) NS_DEPRECATED_MAC(10_0, 10_11, "A...
                   ^
nsterm.m:1113:9: warning: 'lockFocus' is deprecated: first deprecated in macOS 10.14 - To
      draw, subclass NSView and implement -drawRect:; AppKit's automatic deferred display
      mechanism will call -drawRect: as necessary to display the view.
      [-Wdeprecated-declarations]
  [view lockFocus];
        ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:235:1: note: 
      'lockFocus' has been explicitly marked deprecated here
- (void)lockFocus NS_DEPRECATED_MAC(10_0, 10_14, "To draw, subclass NSView and im...
^
nsterm.m:1230:9: warning: 'unlockFocus' is deprecated: first deprecated in macOS 10.14 -
      To draw, subclass NSView and implement -drawRect:; AppKit's automatic deferred
      display mechanism will call -drawRect: as necessary to display the view.
      [-Wdeprecated-declarations]
  [view unlockFocus];
        ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:236:1: note: 
      'unlockFocus' has been explicitly marked deprecated here
- (void)unlockFocus NS_DEPRECATED_MAC(10_0, 10_14, "To draw, subclass NSView and ...
^
nsterm.m:1231:18: warning: 'flushWindow' is deprecated: first deprecated in macOS 10.14 -
      Allow AppKit's automatic deferred display mechanism to take care of flushing any
      graphics contexts as needed. [-Wdeprecated-declarations]
  [[view window] flushWindow];
                 ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:925:1: note: 
      'flushWindow' has been explicitly marked deprecated here
- (void)flushWindow NS_DEPRECATED_MAC(10_0, 10_14, "Allow AppKit's automatic defe...
^
nsterm.m:1261:27: warning: 'unlockFocus' is deprecated: first deprecated in macOS 10.14 -
      To draw, subclass NSView and implement -drawRect:; AppKit's automatic deferred
      display mechanism will call -drawRect: as necessary to display the view.
      [-Wdeprecated-declarations]
              [focus_view unlockFocus];
                          ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:236:1: note: 
      'unlockFocus' has been explicitly marked deprecated here
- (void)unlockFocus NS_DEPRECATED_MAC(10_0, 10_14, "To draw, subclass NSView and ...
^
nsterm.m:1262:36: warning: 'flushWindow' is deprecated: first deprecated in macOS 10.14 -
      Allow AppKit's automatic deferred display mechanism to take care of flushing any
      graphics contexts as needed. [-Wdeprecated-declarations]
              [[focus_view window] flushWindow];
                                   ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:925:1: note: 
      'flushWindow' has been explicitly marked deprecated here
- (void)flushWindow NS_DEPRECATED_MAC(10_0, 10_14, "Allow AppKit's automatic defe...
^
nsterm.m:1267:19: warning: 'lockFocus' is deprecated: first deprecated in macOS 10.14 -
      To draw, subclass NSView and implement -drawRect:; AppKit's automatic deferred
      display mechanism will call -drawRect: as necessary to display the view.
      [-Wdeprecated-declarations]
            [view lockFocus];
                  ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:235:1: note: 
      'lockFocus' has been explicitly marked deprecated here
- (void)lockFocus NS_DEPRECATED_MAC(10_0, 10_14, "To draw, subclass NSView and im...
^
nsterm.m:1304:23: warning: 'unlockFocus' is deprecated: first deprecated in macOS 10.14 -
      To draw, subclass NSView and implement -drawRect:; AppKit's automatic deferred
      display mechanism will call -drawRect: as necessary to display the view.
      [-Wdeprecated-declarations]
          [focus_view unlockFocus];
                      ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:236:1: note: 
      'unlockFocus' has been explicitly marked deprecated here
- (void)unlockFocus NS_DEPRECATED_MAC(10_0, 10_14, "To draw, subclass NSView and ...
^
nsterm.m:1305:32: warning: 'flushWindow' is deprecated: first deprecated in macOS 10.14 -
      Allow AppKit's automatic deferred display mechanism to take care of flushing any
      graphics contexts as needed. [-Wdeprecated-declarations]
          [[focus_view window] flushWindow];
                               ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:925:1: note: 
      'flushWindow' has been explicitly marked deprecated here
- (void)flushWindow NS_DEPRECATED_MAC(10_0, 10_14, "Allow AppKit's automatic defe...
^
nsterm.m:2876:26: warning: 'scrollRect:by:' is deprecated: first deprecated in macOS
      10.14 - Use NSScrollView to achieve scrolling views. [-Wdeprecated-declarations]
      [FRAME_NS_VIEW (f) scrollRect: src
                         ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:260:1: note: 
      'scrollRect:by:' has been explicitly marked deprecated here
- (void)scrollRect:(NSRect)rect by:(NSSize)delta NS_DEPRECATED_MAC(10_0, 10_14, "...
^
nsterm.m:3270:3: warning: 'NSDisableScreenUpdates' is deprecated: first deprecated in
      macOS 10.11 - As of 10.11 it is not generally necessary to take explicit action to
      achieve visual atomicity. +[NSAnimationContext runAnimationGroup:] and other
      similar methods can be used when a stronger than normal need for visual atomicity
      is required. The NSAnimationContext methods do not suffer from the same performance
      problems as NSDisableScreenUpdates. [-Wdeprecated-declarations]
  NSDisableScreenUpdates ();
  ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:234:20: note: 
      'NSDisableScreenUpdates' has been explicitly marked deprecated here
APPKIT_EXTERN void NSDisableScreenUpdates(void) NS_DEPRECATED_MAC(10_0, 10_11, "A...
                   ^
nsterm.m:3308:3: warning: 'NSEnableScreenUpdates' is deprecated: first deprecated in
      macOS 10.11 - As of 10.11 it is not generally necessary to take explicit action to
      achieve visual atomicity. +[NSAnimationContext runAnimationGroup:] and other
      similar methods can be used when a stronger than normal need for visual atomicity
      is required. The NSAnimationContext methods do not suffer from the same performance
      problems as NSEnableScreenUpdates. [-Wdeprecated-declarations]
  NSEnableScreenUpdates ();
  ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:236:20: note: 
      'NSEnableScreenUpdates' has been explicitly marked deprecated here
APPKIT_EXTERN void NSEnableScreenUpdates(void) NS_DEPRECATED_MAC(10_0, 10_11, "A...
                   ^
nsterm.m:5353:13: warning: 'writeToFile:' is deprecated: first deprecated in macOS 10.14
      - Use -writeToURL:error: instead [-Wdeprecated-declarations]
        [cl writeToFile: nil];
            ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColorList.h:102:1: note: 
      'writeToFile:' has been explicitly marked deprecated here
- (BOOL)writeToFile:(nullable NSString *)path NS_DEPRECATED_MAC(10_0, 10_14, "Us...
^
nsterm.m:5453:47: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  ns_send_types = [[NSArray arrayWithObjects: NSStringPboardType, nil] retain];
                                              ^~~~~~~~~~~~~~~~~~
                                              NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsterm.m:5454:49: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  ns_return_types = [[NSArray arrayWithObjects: NSStringPboardType, nil]
                                                ^~~~~~~~~~~~~~~~~~
                                                NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsterm.m:5457:29: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
                            NSStringPboardType,
                            ^~~~~~~~~~~~~~~~~~
                            NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsterm.m:5458:29: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in
      macOS 10.14 [-Wdeprecated-declarations]
                            NSTabularTextPboardType,
                            ^~~~~~~~~~~~~~~~~~~~~~~
                            NSPasteboardTypeTabularText
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:324:32: note: 
      'NSTabularTextPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType NS_DEPRECATED_WITH_REPLACE...
                               ^
nsterm.m:5459:29: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in
      macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or
      kUTTypeFileURL instead [-Wdeprecated-declarations]
                            NSFilenamesPboardType,
                            ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 
      'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType NS_DEPRECATED_MAC(10_0, 10_1...
                               ^
nsterm.m:5460:29: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
                            NSURLPboardType, nil] retain];
                            ^~~~~~~~~~~~~~~
                            NSPasteboardTypeURL
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:330:32: note: 
      'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType NS_DEPRECATED_WITH_REPLACEMENT_MAC...
                               ^
nsterm.m:8246:35: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in
      macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or
      kUTTypeFileURL instead [-Wdeprecated-declarations]
  else if ([type isEqualToString: NSFilenamesPboardType])
                                  ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 
      'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType NS_DEPRECATED_MAC(10_0, 10_1...
                               ^
nsterm.m:8267:35: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  else if ([type isEqualToString: NSURLPboardType])
                                  ^~~~~~~~~~~~~~~
                                  NSPasteboardTypeURL
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:330:32: note: 
      'NSURLPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSURLPboardType NS_DEPRECATED_WITH_REPLACEMENT_MAC...
                               ^
nsterm.m:8289:35: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  else if ([type isEqualToString: NSStringPboardType]
                                  ^~~~~~~~~~~~~~~~~~
                                  NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsterm.m:8290:38: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in
      macOS 10.14 [-Wdeprecated-declarations]
           || [type isEqualToString: NSTabularTextPboardType])
                                     ^~~~~~~~~~~~~~~~~~~~~~~
                                     NSPasteboardTypeTabularText
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:324:32: note: 
      'NSTabularTextPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType NS_DEPRECATED_WITH_REPLACE...
                               ^
nsterm.m:8352:29: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  if ([types containsObject:NSStringPboardType] == NO) {
                            ^~~~~~~~~~~~~~~~~~
                            NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsterm.m:8366:44: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  typesDeclared = [NSArray arrayWithObject:NSStringPboardType];
                                           ^~~~~~~~~~~~~~~~~~
                                           NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsterm.m:9028:10: warning: 'NSScrollerDecrementLine' is deprecated: first deprecated in
      macOS 10.14 [-Wdeprecated-declarations]
    case NSScrollerDecrementLine:
         ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h:24:5: note: 
      'NSScrollerDecrementLine' has been explicitly marked deprecated here
    NSScrollerDecrementLine NS_ENUM_DEPRECATED_MAC(10_0, 10_14) = 4,
    ^
nsterm.m:9030:10: warning: 'NSScrollerIncrementLine' is deprecated: first deprecated in
      macOS 10.14 [-Wdeprecated-declarations]
    case NSScrollerIncrementLine:
         ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h:25:5: note: 
      'NSScrollerIncrementLine' has been explicitly marked deprecated here
    NSScrollerIncrementLine NS_ENUM_DEPRECATED_MAC(10_0, 10_14) = 5,
    ^
29 warnings generated.
  CC       nsfns.o
  CC       nsmenu.o
nsmenu.m:670:25: warning: 'NSOnState' is deprecated: first deprecated in macOS 10.14
      [-Wdeprecated-declarations]
        [item setState: NSOnState];
                        ^~~~~~~~~
                        NSControlStateValueOn
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h:80:34: note: 
      'NSOnState' has been explicitly marked deprecated here
static const NSControlStateValue NSOnState NS_DEPRECATED_WITH_REPLACEMENT_MAC("NS...
                                 ^
nsmenu.m:672:25: warning: 'NSOffState' is deprecated: first deprecated in macOS 10.14
      [-Wdeprecated-declarations]
        [item setState: NSOffState];
                        ^~~~~~~~~~
                        NSControlStateValueOff
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h:79:34: note: 
      'NSOffState' has been explicitly marked deprecated here
static const NSControlStateValue NSOffState NS_DEPRECATED_WITH_REPLACEMENT_MAC("N...
                                 ^
nsmenu.m:1596:24: warning: 'NSRoundedBezelStyle' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  [cell setBezelStyle: NSRoundedBezelStyle];
                       ^~~~~~~~~~~~~~~~~~~
                       NSBezelStyleRounded
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonCell.h:181:27: note: 
      'NSRoundedBezelStyle' has been explicitly marked deprecated here
static const NSBezelStyle NSRoundedBezelStyle NS_DEPRECATED_WITH_REPLACEMENT_MAC(...
                          ^
nsmenu.m:1609:9: warning: 'setOneShot:' is deprecated: first deprecated in macOS 10.14 -
      This property does not do anything and should not be used
      [-Wdeprecated-declarations]
  [self setOneShot: YES];
        ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:933:35: note: 
      property 'oneShot' is declared deprecated here
@property (getter=isOneShot) BOOL oneShot NS_DEPRECATED_MAC(10_0, 10_14, "This pr...
                                  ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:933:35: note: 
      'setOneShot:' has been explicitly marked deprecated here
4 warnings generated.
  CC       nsselect.o
nsselect.m:60:38: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  if (EQ (sym, QTEXT))        return NSStringPboardType;
                                     ^~~~~~~~~~~~~~~~~~
                                     NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsselect.m:79:27: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  if ([t isEqualToString: NSStringPboardType])
                          ^~~~~~~~~~~~~~~~~~
                          NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsselect.m:81:27: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in
      macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or
      kUTTypeFileURL instead [-Wdeprecated-declarations]
  if ([t isEqualToString: NSFilenamesPboardType])
                          ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 
      'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType NS_DEPRECATED_MAC(10_0, 10_1...
                               ^
nsselect.m:83:27: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in
      macOS 10.14 [-Wdeprecated-declarations]
  if ([t isEqualToString: NSTabularTextPboardType])
                          ^~~~~~~~~~~~~~~~~~~~~~~
                          NSPasteboardTypeTabularText
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:324:32: note: 
      'NSTabularTextPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType NS_DEPRECATED_WITH_REPLACE...
                               ^
nsselect.m:196:22: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
          eassert (gtype == NSStringPboardType);
                            ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsselect.m:348:10: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
  type = NSStringPboardType;
         ^~~~~~~~~~~~~~~~~~
         NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsselect.m:475:36: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS
      10.14 [-Wdeprecated-declarations]
             [NSNumber numberWithLong:0], NSStringPboardType,
                                          ^~~~~~~~~~~~~~~~~~
                                          NSPasteboardTypeString
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:320:32: note: 
      'NSStringPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSStringPboardType NS_DEPRECATED_WITH_REPLACEMENT_...
                               ^
nsselect.m:476:36: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in
      macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or
      kUTTypeFileURL instead [-Wdeprecated-declarations]
             [NSNumber numberWithLong:0], NSFilenamesPboardType,
                                          ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 
      'NSFilenamesPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType NS_DEPRECATED_MAC(10_0, 10_1...
                               ^
nsselect.m:477:36: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in
      macOS 10.14 [-Wdeprecated-declarations]
             [NSNumber numberWithLong:0], NSTabularTextPboardType,
                                          ^~~~~~~~~~~~~~~~~~~~~~~
                                          NSPasteboardTypeTabularText
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:324:32: note: 
      'NSTabularTextPboardType' has been explicitly marked deprecated here
APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType NS_DEPRECATED_WITH_REPLACE...
                               ^
9 warnings generated.
  CC       nsimage.o
nsimage.m:312:14: warning: 'colorSpaceName' is deprecated: first deprecated in macOS
      10.14 - Use -type and NSColorType instead [-Wdeprecated-declarations]
  if ([color colorSpaceName] != NSCalibratedRGBColorSpace)
             ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:393:45: note: 
      property 'colorSpaceName' is declared deprecated here
@property (readonly, copy) NSColorSpaceName colorSpaceName NS_DEPRECATED_MAC(10_0...
                                            ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:393:45: note: 
      'colorSpaceName' has been explicitly marked deprecated here
nsimage.m:313:23: warning: 'colorUsingColorSpaceName:' is deprecated: first deprecated in
      macOS 10.14 - Use -colorUsingType: or -colorUsingColorSpace: instead
      [-Wdeprecated-declarations]
    rgbColor = [color colorUsingColorSpaceName: NSCalibratedRGBColorSpace];
                      ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:405:1: note: 
      'colorUsingColorSpaceName:' has been explicitly marked deprecated here
- (nullable NSColor *)colorUsingColorSpaceName:(NSColorSpaceName)name NS_DEPRECAT...
^
2 warnings generated.
  CC       macfont.o
macfont.m:2822:49: warning: 'graphicsPort' is deprecated: first deprecated in macOS 10.14
      [-Wdeprecated-declarations]
  context = [[NSGraphicsContext currentContext] graphicsPort];
                                                ^~~~~~~~~~~~
                                                CGContext
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h:111:28: note: 
      property 'graphicsPort' is declared deprecated here
@property (readonly) void *graphicsPort NS_RETURNS_INNER_POINTER NS_DEPRECATED_WI...
                           ^
/Library/Developer/CommandLineTools/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h:111:28: note: 
      'graphicsPort' has been explicitly marked deprecated here
1 warning generated.
  CC       terminfo.o
  CC       lastfile.o
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../admin/charsets all
  GEN      ../../etc/charsets/JISX2131.map
  GEN      charsets.stamp
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../admin/unidata charscript.el
make[3]: Nothing to be done for `charscript.el'.
  CCLD     temacs
../build-aux/install-sh -c -d ../etc
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../lisp update-subdirs
./temacs --batch  --load loadup bootstrap
Loading loadup.el (source)...
Using load-path (/Users/keith/Source/emacs/lisp /Users/keith/Source/emacs/lisp/emacs-lisp /Users/keith/Source/emacs/lisp/progmodes /Users/keith/Source/emacs/lisp/language /Users/keith/Source/emacs/lisp/international /Users/keith/Source/emacs/lisp/textmodes /Users/keith/Source/emacs/lisp/vc)


> On Jun 19, 2018, at 4:25 PM, GNU bug Tracking System <help-debbugs@gnu.org> wrote:
> 
> Thank you for filing a new bug report with debbugs.gnu.org.
> 
> This is an automatically generated reply to let you know your message
> has been received.
> 
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
> 
> Your message has been sent to the package maintainer(s):
> bug-gnu-emacs@gnu.org
> 
> If you wish to submit further information on this problem, please
> send it to 31904@debbugs.gnu.org.
> 
> Please do not send mail to help-debbugs@gnu.org unless you wish
> to report a problem with the Bug-tracking system.
> 
> -- 
> 31904: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=31904
> GNU Bug Tracking System
> Contact help-debbugs@gnu.org with problems






  parent reply	other threads:[~2018-06-20 21:32 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-19 23:09 bug#31904: 27.0.50; Emacs doesn't render text/modeline Mac OSX 10.14 Mojave zentrope@fastmail.fm
2018-06-20 19:00 ` Alan Third
     [not found] ` <handler.31904.B.152945065229583.ack@debbugs.gnu.org>
2018-06-20 21:32   ` zentrope@fastmail.fm [this message]
2018-08-15 23:54 ` bug#31904: scatch/ns-drawing zentrope@fastmail.fm
2018-08-18 14:02   ` Alan Third
2018-08-18 18:56     ` zentrope@fastmail.fm
2018-08-18 19:16       ` zentrope@fastmail.fm
2018-08-18 19:23         ` zentrope@fastmail.fm
2018-08-19  9:59           ` Alan Third
2018-08-19 23:51             ` zentrope@fastmail.fm
2018-08-26 13:02               ` Alan Third
2018-08-19 12:41         ` Alan Third
2018-08-19 23:44           ` zentrope@fastmail.fm
2018-09-19 16:36 ` bug#31904: bug##31904 Zack Piper
2019-09-28 17:54 ` bug#31904: scatch/ns-drawing Stefan Kangas
2019-09-28 21:14   ` Alan Third

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=C6AB6D46-9380-4C26-8B51-833E9B3A5D4C@zentrope.com \
    --to=keith@zentrope.com \
    --cc=31904@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).