[RICHED20] EM_SETSEL should not return 0. By Christoph von Wittich. Already accepted upstream.

svn path=/trunk/; revision=67074
This commit is contained in:
Amine Khaldi 2015-04-06 17:52:16 +00:00
parent d0713751e1
commit be34509dea

View file

@ -3304,8 +3304,7 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
} }
case EM_SETSEL: case EM_SETSEL:
{ {
handle_EM_EXSETSEL( editor, wParam, lParam ); return handle_EM_EXSETSEL( editor, wParam, lParam );
return 0;
} }
case EM_SETSCROLLPOS: case EM_SETSCROLLPOS:
{ {