Parcourir la source

Changing the way how paste is handled, just for the nano people.

Christoph Lohmann il y a 12 ans
Parent
commit
1c1621da69
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      st.c

+ 1 - 1
st.c

@@ -796,7 +796,7 @@ selcopy(void) {
 			}
 			/* \n at the end of every selected line except for the last one */
 			if(is_selected && y < sel.e.y)
-				*ptr++ = '\n';
+				*ptr++ = '\r';
 		}
 		*ptr = 0;
 	}