fixed newline bug.
This commit is contained in:
		
							
								
								
									
										3
									
								
								st.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								st.c
									
									
									
									
									
								
							@ -627,12 +627,13 @@ tscrollup(int orig, int n) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
tnewline(void) {
 | 
					tnewline(void) {
 | 
				
			||||||
 | 
						int x = term.c.x+1 < term.col ? term.c.x : 0;
 | 
				
			||||||
	int y = term.c.y;
 | 
						int y = term.c.y;
 | 
				
			||||||
	if(term.c.y == term.bot)
 | 
						if(term.c.y == term.bot)
 | 
				
			||||||
		tscrollup(term.top, 1);
 | 
							tscrollup(term.top, 1);
 | 
				
			||||||
	else
 | 
						else
 | 
				
			||||||
		y++;
 | 
							y++;
 | 
				
			||||||
	tmoveto(0, y);
 | 
						tmoveto(x, y);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void
 | 
					void
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user