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

Adhoc build 1.0.0.20131123_191404

parent 93f73dc8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -875,8 +875,9 @@ static NSString *kTmuxFontChanged = @"kTmuxFontChanged";
if (gDebugLogging) {
const char *bytes = [data bytes];
for (int i = 0; i < [data length]; i++) {
DLog(@"writeTask keydown %d: %d (%c) from %@",
i, (int) bytes[i], bytes[i], [NSThread callStackSymbols]);
DLog(@"%@: writeTask keydown %d: %d (%c) from %@",
self, i, (int) bytes[i], bytes[i], [NSThread callStackSymbols]);
DLog(@"This session's TEXTVIEW is %@", TEXTVIEW);
}
}
 
Loading
Loading
Loading
Loading
@@ -2476,7 +2476,7 @@ NSMutableArray* screens=0;
if (!workAroundControlBug) {
// Let the IME process key events
IM_INPUT_INSERT = NO;
DLog(@"PTYTextView keyDown send to IME");
DLog(@"PTYTextView keyDown send to IME, self=%@", self);
 
[self interpretKeyEvents:[NSArray arrayWithObject:event]];
 
Loading
Loading
@@ -4843,7 +4843,7 @@ static double EuclideanDistance(NSPoint p1, NSPoint p2) {
 
- (void)insertText:(id)aString
{
DLog(@"PTYTextView insertText:%@", aString);
DLog(@"PTYTextView insertText:%@ self=%@", aString, self);
if ([self hasMarkedText]) {
DLog(@"insertText: clear marked text");
 
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