diff options
| -rw-r--r-- | src/Editor.cxx | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index e9a258775..e44fbc9f9 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -3606,10 +3606,16 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {  		targetStart = wParam;  		break; +	case SCI_GETTARGETSTART: +		return targetStart; +	  	case SCI_SETTARGETEND:  		targetEnd = wParam;  		break; +	case SCI_GETTARGETEND: +		return targetEnd; +	  	case SCI_REPLACETARGET:  		PLATFORM_ASSERT(lParam);  		return ReplaceTarget(wParam, reinterpret_cast<char *>(lParam));  | 
