diff options
author | nyamatongwe <devnull@localhost> | 2013-01-10 10:04:13 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-01-10 10:04:13 +1100 |
commit | 0739dda5f3a425c51d5fded60a0b3a047868c420 (patch) | |
tree | 1dce5f1235a4557bcb1338dee1ff53f3aec8fc5e /cocoa/ScintillaView.h | |
parent | 7085d8256501140935a8063dbbe2a3b50d7adb1e (diff) | |
download | scintilla-mirror-0739dda5f3a425c51d5fded60a0b3a047868c420.tar.gz |
Turn off undo collection for IME composition.
From Mike Lischke.
Diffstat (limited to 'cocoa/ScintillaView.h')
-rw-r--r-- | cocoa/ScintillaView.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.h b/cocoa/ScintillaView.h index 8a028e2c4..d5f500df3 100644 --- a/cocoa/ScintillaView.h +++ b/cocoa/ScintillaView.h @@ -4,7 +4,7 @@ * * Created by Mike Lischke. * - * Copyright 2011, 2012, Oracle and/or its affiliates. All rights reserved. + * Copyright 2011, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright 2009, 2011 Sun Microsystems, Inc. All rights reserved. * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). */ @@ -39,6 +39,7 @@ extern NSString *SCIUpdateUINotification; // Set when we are in composition mode and partial input is displayed. NSRange mMarkedTextRange; + BOOL undoCollectionWasActive; } @property (nonatomic, assign) ScintillaView* owner; |