diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-06-19 01:14:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-06-19 01:14:29 +0200 |
commit | d44347f1e7791ead2d90b1fda06d9f4e325d912e (patch) | |
tree | d00df322e29d233a3845b5c12c3973375dc4a073 /src/gui_mac.c | |
parent | 19e609437873594b8b08aaceafbe81ef235044bf (diff) | |
download | vim-git-d44347f1e7791ead2d90b1fda06d9f4e325d912e.tar.gz |
updated for version 7.3.221v7.3.221
Problem: Text from the clipboard is sometimes handled as linewise, but not
consistently.
Solution: Assume the text is linewise when it ends in a CR or NL.
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index 2c3356248..0a8b0bcc5 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -4671,7 +4671,7 @@ clip_mch_request_selection(VimClipboard *cbd) if (flavor) type = **textOfClip; else - type = (strchr(*textOfClip, '\r') != NULL) ? MLINE : MCHAR; + type = MAUTO; tempclip = lalloc(scrapSize + 1, TRUE); mch_memmove(tempclip, *textOfClip + flavor, scrapSize); |