소스 검색

* Make figlet font importer more tolerant with empty lines.

pull/1/head
Sam Hocevar sam 18 년 전
부모
커밋
374627e287
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      src/figlet.c

+ 4
- 0
src/figlet.c 파일 보기

@@ -198,6 +198,10 @@ static int open_font(context_t *cx)
if(toigets(buf, 2048, f) == NULL)
break;

/* Ignore blank lines, as in jacky.flf */
if(buf[0] == '\n' || buf[0] == '\r')
continue;

if(!buf[0] || buf[0] < '0' || buf[0] > '9')
{
free(data);


불러오는 중...
취소
저장