mirror of
https://github.com/tmux/tmux.git
synced 2024-11-07 19:58:51 +00:00
Sync OpenBSD patchset 645:
Don't strip add newline if only copying part of wrapped line. Problem spotted by and fix from Micah Cowan.
This commit is contained in:
parent
66c38d8c5d
commit
a9dacf10ce
@ -1,4 +1,4 @@
|
||||
/* $Id: window-copy.c,v 1.102 2010-02-18 12:35:16 tcunha Exp $ */
|
||||
/* $Id: window-copy.c,v 1.103 2010-02-18 12:36:18 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -1038,7 +1038,7 @@ window_copy_copy_line(struct window_pane *wp,
|
||||
}
|
||||
|
||||
/* Only add a newline if the line wasn't wrapped. */
|
||||
if (!wrapped) {
|
||||
if (!wrapped || ex != xx) {
|
||||
*buf = xrealloc(*buf, 1, (*off) + 1);
|
||||
(*buf)[(*off)++] = '\n';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user