summary refs log tree commit diff
path: root/src/funcs/dirs
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2005-10-26 20:00:59 +1000
committerHerbert Xu <herbert@gondor.apana.org.au>2005-10-26 20:00:59 +1000
commitfc31133e92b1527728c4c2a4f4a2262a46a05b38 (patch)
treefc2bb1ea559132a66a805613ace5c8bc71dde510 /src/funcs/dirs
parent[INPUT] Fix NUL skipping in preadbuffer (diff)
downloaddash-fc31133e92b1527728c4c2a4f4a2262a46a05b38.tar.gz
dash-fc31133e92b1527728c4c2a4f4a2262a46a05b38.zip
[INPUT] Size optimisations in preadbuffer()
Added unlikely markers.
Reduced switch coverage.
Removed p since we now erase NULs as soon as we see them.
Use more to store parselleft.
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
>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