Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
quote: move comment before sq_quote_buf()
author
Christian Couder
<christian.couder@gmail.com>
Wed, 7 Oct 2015 22:05:50 +0000
(
00:05
+0200)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 7 Oct 2015 22:12:01 +0000
(15:12 -0700)
A big comment at the beginning of quote.c is really
related to sq_quote_buf(), so let's move it in front
of this function.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
quote.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
ca9da0d
)
diff --git
a/quote.c
b/quote.c
index 890885a73607b46e6696b17211b58327c3fa0627..fe884d24521f91a0f1f30b3cf5f08734bab7bd31 100644
(file)
--- a/
quote.c
+++ b/
quote.c
@@
-4,6
+4,11
@@
int quote_path_fully = 1;
int quote_path_fully = 1;
+static inline int need_bs_quote(char c)
+{
+ return (c == '\'' || c == '!');
+}
+
/* Help to copy the thing properly quoted for the shell safety.
* any single quote is replaced with '\'', any exclamation point
* is replaced with '\!', and the whole thing is enclosed in a
/* Help to copy the thing properly quoted for the shell safety.
* any single quote is replaced with '\'', any exclamation point
* is replaced with '\!', and the whole thing is enclosed in a
@@
-16,11
+21,6
@@
int quote_path_fully = 1;
* a'b ==> a'\''b ==> 'a'\''b'
* a!b ==> a'\!'b ==> 'a'\!'b'
*/
* a'b ==> a'\''b ==> 'a'\''b'
* a!b ==> a'\!'b ==> 'a'\!'b'
*/
-static inline int need_bs_quote(char c)
-{
- return (c == '\'' || c == '!');
-}
-
void sq_quote_buf(struct strbuf *dst, const char *src)
{
char *to_free = NULL;
void sq_quote_buf(struct strbuf *dst, const char *src)
{
char *to_free = NULL;