diff options
| author | Paul Eggert | 2013-07-08 22:04:45 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-07-08 22:04:45 -0700 |
| commit | cf7a0de6e75d2c510e69ab77bc70279cba7c48ba (patch) | |
| tree | 2b8255e3a883e42652f043c1097d62277d74179e /src/nsmenu.m | |
| parent | 5550a72cf26485d312f8cc2c1c6f49b2fbd8f667 (diff) | |
| download | emacs-cf7a0de6e75d2c510e69ab77bc70279cba7c48ba.tar.gz emacs-cf7a0de6e75d2c510e69ab77bc70279cba7c48ba.zip | |
Space between "defined" and "(".
Diffstat (limited to 'src/nsmenu.m')
| -rw-r--r-- | src/nsmenu.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nsmenu.m b/src/nsmenu.m index 1d3d111e9a1..22635dca0a2 100644 --- a/src/nsmenu.m +++ b/src/nsmenu.m | |||
| @@ -612,8 +612,8 @@ extern NSString *NSMenuDidBeginTrackingNotification; | |||
| 612 | if (trackingMenu == 0) | 612 | if (trackingMenu == 0) |
| 613 | return; | 613 | return; |
| 614 | /*fprintf (stderr, "Updating menu '%s'\n", [[self title] UTF8String]); NSLog (@"%@\n", event); */ | 614 | /*fprintf (stderr, "Updating menu '%s'\n", [[self title] UTF8String]); NSLog (@"%@\n", event); */ |
| 615 | #if ! defined(NS_IMPL_COCOA) || \ | 615 | #if (! defined (NS_IMPL_COCOA) \ |
| 616 | MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 | 616 | || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5) |
| 617 | /* Don't know how to do this for anything other than OSX >= 10.5 | 617 | /* Don't know how to do this for anything other than OSX >= 10.5 |
| 618 | This is wrong, as it might run Lisp code in the event loop. */ | 618 | This is wrong, as it might run Lisp code in the event loop. */ |
| 619 | ns_update_menubar (frame, true, self); | 619 | ns_update_menubar (frame, true, self); |
| @@ -1240,7 +1240,7 @@ update_frame_tool_bar (FRAME_PTR f) | |||
| 1240 | #ifdef NS_IMPL_GNUSTEP | 1240 | #ifdef NS_IMPL_GNUSTEP |
| 1241 | [self insertItemWithItemIdentifier: identifier atIndex: idx]; | 1241 | [self insertItemWithItemIdentifier: identifier atIndex: idx]; |
| 1242 | #endif | 1242 | #endif |
| 1243 | 1243 | ||
| 1244 | [item setTag: tag]; | 1244 | [item setTag: tag]; |
| 1245 | [item setEnabled: enabled]; | 1245 | [item setEnabled: enabled]; |
| 1246 | 1246 | ||