소스 검색

make comment more precise

Jan Klemkow 5 년 전
부모
커밋
18fc6b4956
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scroll.c

+ 1 - 1
scroll.c

@@ -270,7 +270,7 @@ scrollup(void)
 
 	/* move the text in terminal n lines down */
 	dprintf(STDOUT_FILENO, "\033[%dT", rows);
-	/* set cursor position */
+	/* set cursor position to upper left corner */
 	write(STDOUT_FILENO, "\033[0;0H", 6);
 	/* hide cursor */
 	write(STDOUT_FILENO, "\033[?25l", 6);