diff --git a/src/osxlaunch/server.m b/src/osxlaunch/server.m index 263fc4085..6c22efc55 100644 --- a/src/osxlaunch/server.m +++ b/src/osxlaunch/server.m @@ -28,12 +28,10 @@ NSString *string = [[NSString alloc] initWithData: data encoding: NSASCIIStringEncoding]; NSAttributedString *attrstr = [[NSAttributedString alloc] initWithString: string]; - [[self textStorage] beginEditing]; [[self textStorage] appendAttributedString: attrstr]; int length = [[self textStorage] length]; NSRange range = NSMakeRange(length, 0); [self scrollRangeToVisible: range]; - [[self textStorage] endEditing]; [attrstr release]; [string release];