Fix one forgotten instance of \n to \r

This commit is contained in:
Søren Schmidt 1998-08-18 07:36:47 +00:00
parent a89fd81d2b
commit 95332616af
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.273 1998/08/10 08:39:19 yokota Exp $
* $Id: syscons.c,v 1.274 1998/08/14 06:32:03 sos Exp $
*/
#include "sc.h"
@ -4987,7 +4987,7 @@ mouse_cut(scr_stat *scp)
j = i;
/* trim trailing blank when crossing lines */
if (((p - scp->scr_buf) % scp->xsize) == (scp->xsize - 1)) {
cut_buffer[j++] = '\n';
cut_buffer[j++] = '\r';
i = j;
}
}

View File

@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: syscons.c,v 1.273 1998/08/10 08:39:19 yokota Exp $
* $Id: syscons.c,v 1.274 1998/08/14 06:32:03 sos Exp $
*/
#include "sc.h"
@ -4987,7 +4987,7 @@ mouse_cut(scr_stat *scp)
j = i;
/* trim trailing blank when crossing lines */
if (((p - scp->scr_buf) % scp->xsize) == (scp->xsize - 1)) {
cut_buffer[j++] = '\n';
cut_buffer[j++] = '\r';
i = j;
}
}