about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/osxlaunch/server.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/osxlaunch/server.m b/src/osxlaunch/server.m
index 263fc408..6c22efc5 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];