summary refs log tree commit diff
path: root/bin/LICENSE
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-09-27 22:12:00 -0400
committerJune McEnroe <june@causal.agency>2017-09-27 22:12:00 -0400
commitbcde62a8d721f23d935b3bcfe4b89965e5ec2400 (patch)
treed162ccb80c6823b1052d4413cf9579f065bffc12 /bin/LICENSE
parentUpdate Linux console map to Tarmak 4 (diff)
downloadsrc-bcde62a8d721f23d935b3bcfe4b89965e5ec2400.tar.gz
src-bcde62a8d721f23d935b3bcfe4b89965e5ec2400.zip
Always newline before prompt
Diffstat (limited to 'bin/LICENSE')
0 files changed, 0 insertions, 0 deletions
ME type and then append "; charset=<charset>" if the charset variable is non-null. We don't want a charset when we have selected "application/octet-stream" or when the user has specified a custom MIME type, since they may have specified their own charset. To avoid this, make sure we set the page's charset to NULL in ui-plain before we generate the HTTP headers. Signed-off-by: John Keeping <john@keeping.me.uk> Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08ui-log.c: Several simplificationsLukas Fleischer * Use argv_array_pushf() for inserting formatted strings. * Remove unneeded static strings. * Replace "if" by "else if" for readability and speed. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08Use argv_array in place of vectorLukas Fleischer Instead of using our own vector implementation, use argv_array from Git which has been specifically designed for dynamic size argv arrays. Drop vector.h and vector.c which are no longer needed. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08ui-stats.c: Remove unused macroLukas Fleischer Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08scan-tree.c: Remove unused macroLukas Fleischer This is no longer needed since commit fb3655df (use struct strbuf instead of static buffers, 2013-04-06). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-09-14ui-shared: Drop filepair_cb_raw() and helperLukas Fleischer Remove filepair_cb_raw() and all related functions. These are no longer needed. We now use Git's internal functions for raw diff formatting everywhere. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-09-14ui-diff: Use diff_tree_sha1() for raw diff formattingLukas Fleischer