summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-10-16 14:32:58 -0700
committerJunio C Hamano <gitster@pobox.com>2015-10-16 14:32:58 -0700
commit119ffa3351d2be06cb21e3a95e235a747fe7b783 (patch)
treeacf12ab568971c5080f00970d0203e7867964aa8
parent71ae53526d019fb18a44df8cfab9dfbd215159cf (diff)
parent44cd91eab2992cbf63c789321f16c087696ce324 (diff)
downloadgit-119ffa3351d2be06cb21e3a95e235a747fe7b783.tar.gz
Merge branch 'cc/quote-comments' into maint
A no-op code-health maintenance. * cc/quote-comments: quote: move comment before sq_quote_buf() quote: fix broken sq_quote_buf() related comment
-rw-r--r--quote.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/quote.c b/quote.c
index 7920e18e44..fe884d2452 100644
--- a/quote.c
+++ b/quote.c
@@ -4,9 +4,15 @@
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
+ * single quote pair.
*
* E.g.
* original sq_quote result
@@ -15,11 +21,6 @@ int quote_path_fully = 1;
* 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;