Skip to content

Commit

Permalink
Merge branch 'maint-1.6.3' into maint
Browse files Browse the repository at this point in the history
* maint-1.6.3:
  Better usage string for reflog.
  hg-to-git: don't import the unused popen2 module
  send-email: remove debug trace
  config: Keep inner whitespace verbatim
  • Loading branch information
gitster committed Aug 5, 2009
2 parents 4606838 + e77095e commit f0df129
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion builtin-reflog.c
Expand Up @@ -694,7 +694,7 @@ static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
*/

static const char reflog_usage[] =
"git reflog (expire | ...)";
"git reflog [ show | expire | delete ]";

int cmd_reflog(int argc, const char **argv, const char *prefix)
{
Expand Down
10 changes: 4 additions & 6 deletions config.c
Expand Up @@ -62,7 +62,8 @@ static char *parse_value(void)
if (comment)
continue;
if (isspace(c) && !quote) {
space = 1;
if (len)
space++;
continue;
}
if (!quote) {
Expand All @@ -71,11 +72,8 @@ static char *parse_value(void)
continue;
}
}
if (space) {
if (len)
value[len++] = ' ';
space = 0;
}
for (; space; space--)
value[len++] = ' ';
if (c == '\\') {
c = get_next_char();
switch (c) {
Expand Down
2 changes: 1 addition & 1 deletion contrib/hg-to-git/hg-to-git.py
Expand Up @@ -20,7 +20,7 @@
"""

import os, os.path, sys
import tempfile, popen2, pickle, getopt
import tempfile, pickle, getopt
import re

# Maps hg version -> git version
Expand Down
1 change: 0 additions & 1 deletion git-send-email.perl
Expand Up @@ -450,7 +450,6 @@ ($)
try {
$repo->command('rev-parse', '--verify', '--quiet', $f);
if (defined($format_patch)) {
print "foo\n";
return $format_patch;
}
die(<<EOF);
Expand Down
5 changes: 5 additions & 0 deletions t/t1300-repo-config.sh
Expand Up @@ -755,6 +755,11 @@ echo >>result

test_expect_success '--null --get-regexp' 'cmp result expect'

test_expect_success 'inner whitespace kept verbatim' '
git config section.val "foo bar" &&
test "z$(git config section.val)" = "zfoo bar"
'

test_expect_success SYMLINKS 'symlinked configuration' '
ln -s notyet myconfig &&
Expand Down

0 comments on commit f0df129

Please sign in to comment.