summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cf4d82e)
raw | patch | inline | side by side (parent: cf4d82e)
author | Alexey Tourbin <at@altlinux.ru> | |
Sun, 29 Oct 2006 14:17:22 +0000 (15:17 +0100) | ||
committer | Jonas Fonseca <fonseca@diku.dk> | |
Sun, 29 Oct 2006 14:20:48 +0000 (15:20 +0100) |
Courtesy of Dmitry Levin, my current aterm session has COLUMNS=141
(1280x1024 with standard 9x15 font). So in the main view I can see
some commit headlines truncated. Changing hedline size from 75 to 128
characters seems to be reasonable.
(1280x1024 with standard 9x15 font). So in the main view I can see
some commit headlines truncated. Changing hedline size from 75 to 128
characters seems to be reasonable.
tig.c | patch | blob | history |
index 8ccce74d9879efee58f2aca3c6dcd3fbafcffa96..5255e14ec26543278491ba56f1f9ad943deeb765 100644 (file)
--- a/tig.c
+++ b/tig.c
struct commit {
char id[SIZEOF_REV]; /* SHA1 ID. */
- char title[75]; /* First line of the commit message. */
+ char title[128]; /* First line of the commit message. */
char author[75]; /* Author of the commit. */
struct tm time; /* Date from the author ident. */
struct ref **refs; /* Repository references. */