Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2006-12-30 | commit-tree: cope with different ways "utf-8" can be spelled. | Junio C Hamano | 1 | -0/+9 | |
People can spell config.commitencoding differently from what we internally have ("utf-8") to mean UTF-8. Try to accept them and treat them equally. Signed-off-by: Junio C Hamano <junkio@cox.net> | |||||
2006-12-26 | Move encoding conversion routine out of mailinfo to utf8.c | Junio C Hamano | 1 | -0/+54 | |
This moves the body of convert_to_utf8() routine used in mailinfo to the utf8.c i18n library. Signed-off-by: Junio C Hamano <junkio@cox.net> | |||||
2006-12-24 | commit-tree: encourage UTF-8 commit messages. | Johannes Schindelin | 1 | -0/+278 | |
Introduce is_utf() to check if a text looks like it is encoded in UTF-8, utf8_width() to count display width, and implements print_wrapped_text() using them. git-commit-tree warns if the commit message does not minimally conform to the UTF-8 encoding when i18n.commitencoding is either unset, or set to "utf-8". Signed-off-by: Junio C Hamano <junkio@cox.net> |