Skip to content
Snippets Groups Projects
Commit d2f808ff authored by George Nachman's avatar George Nachman
Browse files

Adhoc build 3.1.20170422_105650

parent e80f90d6
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -7151,7 +7151,8 @@
DevelopmentTeam = H7V7XYVQ7D;
};
874206460564169600CFC3F1 = {
ProvisioningStyle = Manual;
DevelopmentTeam = H7V7XYVQ7D;
ProvisioningStyle = Automatic;
};
A66717851DCE36C3000CE608 = {
DevelopmentTeam = H7V7XYVQ7D;
Loading
Loading
@@ -8912,10 +8913,10 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_WARN_INT_CONVERSION = YES;
CODE_SIGN_IDENTITY = "Developer ID Application: GEORGE NACHMAN (H7V7XYVQ7D)";
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = H7V7XYVQ7D;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)",
Loading
Loading
@@ -10091,11 +10092,11 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_WARN_INT_CONVERSION = YES;
CODE_SIGN_IDENTITY = "Developer ID Application: GEORGE NACHMAN (H7V7XYVQ7D)";
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = H7V7XYVQ7D;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)",
Loading
Loading
@@ -10161,10 +10162,10 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_WARN_INT_CONVERSION = YES;
CODE_SIGN_IDENTITY = "Developer ID Application: GEORGE NACHMAN (H7V7XYVQ7D)";
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = YES;
DEVELOPMENT_TEAM = "";
DEVELOPMENT_TEAM = H7V7XYVQ7D;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(SRCROOT)",
Loading
Loading
@@ -62,6 +62,11 @@ static void iTermMakeBackgroundColorRun(iTermBackgroundColorRun *run,
textExtractor:(iTermTextExtractor *)extractor
y:(CGFloat)y
line:(int)line {
assert(width > 0);
assert(row >= 0);
assert(charRange.location < width);
assert(charRange.location + charRange.length <= width);
NSMutableArray *runs = [NSMutableArray array];
iTermBackgroundColorRun previous;
iTermBackgroundColorRun current;
Loading
Loading
@@ -69,6 +74,7 @@ static void iTermMakeBackgroundColorRun(iTermBackgroundColorRun *run,
int j;
for (j = charRange.location; j < charRange.location + charRange.length; j++) {
int x = j;
assert(j < width);
if (theLine[j].code == DWC_RIGHT) {
x = j - 1;
if (x < 0) {
Loading
Loading
@@ -76,6 +82,9 @@ static void iTermMakeBackgroundColorRun(iTermBackgroundColorRun *run,
continue;
}
}
assert(x >= 0);
assert(x < width);
iTermMakeBackgroundColorRun(&current,
theLine,
VT100GridCoordMake(x, row),
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment