diff options
| -rw-r--r-- | src/Editor.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Editor.cxx b/src/Editor.cxx index bd0fc9fba..8780a128f 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4854,7 +4854,7 @@ void Editor::CopyRangeToClipboard(int start, int end) {  void Editor::CopyText(int length, const char *text) {  	SelectionText selectedText; -	selectedText.Copy(text, length, +	selectedText.Copy(text, length + 1,  		pdoc->dbcsCodePage, vs.styles[STYLE_DEFAULT].characterSet, false);  	CopyToClipboard(selectedText);  } | 
