[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:
{
handle_EM_EXSETSEL( editor, wParam, lParam );
return 0;
return handle_EM_EXSETSEL( editor, wParam, lParam );
}
case EM_SETSCROLLPOS:
{