-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_MiscMergeDebugCommand.m
executable file
·48 lines (39 loc) · 1.3 KB
/
_MiscMergeDebugCommand.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// _MiscMergeDebugCommand.m
//
// Written by Doug McClure
//
// Copyright 2001-2004 by Don Yacktman and Doug McClure.
// All rights reserved.
//
// This notice may not be removed from this source code.
//
// This header is included in the MiscKit by permission from the author
// and its use is governed by the MiscKit license, found in the file
// "License.rtf" in the MiscKit distribution. Please refer to that file
// for a list of all applicable permissions and restrictions.
//
#import "_MiscMergeDebugCommand.h"
#import <Foundation/Foundation.h>
#import "NSString+MiscAdditions.h"
#import "NSScanner+MiscMerge.h"
@implementation _MiscMergeDebugCommand
- (void)dealloc
{
[theText release];
[super dealloc];
}
- (BOOL)parseFromScanner:(NSScanner *)aScanner template:(MiscMergeTemplate *)template
{
if (![self eatKeyWord:@"debug" fromScanner:aScanner isOptional:NO]) return NO;
theText = [[[aScanner remainingString] stringByTrimmingLeadWhitespace] retain];
return YES;
}
- (MiscMergeCommandExitType)executeForMerge:(MiscMergeEngine *)aMerger
{
fwrite([theText cStringUsingEncoding:NSUTF8StringEncoding], 1, [theText lengthOfBytesUsingEncoding:NSUTF8StringEncoding], stderr);
if (![theText hasSuffix:@"\n"])
fputc('\n', stderr);
return MiscMergeCommandExitNormal;
}
@end