@@ -65,29 +65,29 @@ @implementation MiscMergeTemplate
65
65
"*/
66
66
67
67
/* "
68
- * Returns the default string used to start a merge command, "«". A
68
+ * Returns the default string used to start a merge command, "«". A
69
69
* subclass of MiscMergeTemplate could override this method.
70
70
"*/
71
71
+ (NSString *)defaultStartDelimiter
72
72
{
73
73
// return @"(";
74
- // return @"«";
74
+ // return @"«";
75
75
/* This works better for whatever reason. Due to some unknown pecularities,
76
76
a constant NSString doesn't work under Windows with Apple's
77
77
implementation. */
78
- return [NSString stringWithCString: " «" encoding: NSUTF8StringEncoding];
78
+ return [NSString stringWithCString: " «" encoding: NSUTF8StringEncoding];
79
79
}
80
80
81
81
/* "
82
- * Returns the default string used to end a merge command, "»". A
82
+ * Returns the default string used to end a merge command, "»". A
83
83
* subclass of MiscMergeTemplate could override this method.
84
84
"*/
85
85
+ (NSString *)defaultEndDelimiter
86
86
{
87
87
// return @")";
88
- // return @"»";
88
+ // return @"»";
89
89
/* This works better than a constant NSString for whatever reason. See above. */
90
- return [NSString stringWithCString: " »" encoding: NSUTF8StringEncoding];
90
+ return [NSString stringWithCString: " »" encoding: NSUTF8StringEncoding];
91
91
}
92
92
93
93
/* " Creates a new, autoreleased MiscMergeTemplate. "*/
@@ -343,8 +343,8 @@ - (Class)_classForCommand:(NSString *)realCommand
343
343
* classes with specific names. The name that is looked up is build from
344
344
* the first word found in %{aCommand}. The first word is turned to all
345
345
* lower case, with the first letter upper case, and then sandwiched
346
- * between "Merge" and "Command". For example, the merge command "«if xxx
347
- * = y»" has the word "if" as the first word. Thus, the class
346
+ * between "Merge" and "Command". For example, the merge command "«if xxx
347
+ * = y»" has the word "if" as the first word. Thus, the class
348
348
* "MergeIfCommand" will be searched for. If the desired class cannot be
349
349
* found, then it is assumed that the merge command is giving the name of a
350
350
* field which should be inserted into the output document.
0 commit comments