|
|
|
@ -1,3 +1,4 @@
@@ -1,3 +1,4 @@
|
|
|
|
|
#define NO_THE_INDEX_COMPATIBILITY_MACROS |
|
|
|
|
#include "cache.h" |
|
|
|
|
#include "attr.h" |
|
|
|
|
#include "run-command.h" |
|
|
|
@ -1165,14 +1166,15 @@ int convert_to_working_tree(const char *path, const char *src, size_t len, struc
@@ -1165,14 +1166,15 @@ int convert_to_working_tree(const char *path, const char *src, size_t len, struc
|
|
|
|
|
return convert_to_working_tree_internal(path, src, len, dst, 0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int renormalize_buffer(const char *path, const char *src, size_t len, struct strbuf *dst) |
|
|
|
|
int renormalize_buffer(const struct index_state *istate, const char *path, |
|
|
|
|
const char *src, size_t len, struct strbuf *dst) |
|
|
|
|
{ |
|
|
|
|
int ret = convert_to_working_tree_internal(path, src, len, dst, 1); |
|
|
|
|
if (ret) { |
|
|
|
|
src = dst->buf; |
|
|
|
|
len = dst->len; |
|
|
|
|
} |
|
|
|
|
return ret | convert_to_git(&the_index, path, src, len, dst, SAFE_CRLF_RENORMALIZE); |
|
|
|
|
return ret | convert_to_git(istate, path, src, len, dst, SAFE_CRLF_RENORMALIZE); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/***************************************************************** |
|
|
|
|