Arun Prakash Jana 5 년 전
부모
커밋
75060f5923
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/nnn.c

+ 4
- 1
src/nnn.c 파일 보기

@@ -165,7 +165,7 @@ disabledbg()
#define ISODD(x) ((x) & 1)
#define TOUPPER(ch) \
(((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
#define CMD_LEN_MAX 5120
#define CMD_LEN_MAX (PATH_MAX + ((NAME_MAX + 1) << 1))
#define CURSR " > "
#define EMPTY " "
#define CURSYM(flag) ((flag) ? CURSR : EMPTY)
@@ -3602,6 +3602,9 @@ int main(int argc, char *argv[])
return 1;
}

printf("%d\n", CMD_LEN_MAX);
return 0;

/* Get the context colors; copier used as tmp var */
if (cfg.showcolor) {
copier = getenv("NNN_CONTEXT_COLORS");


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