projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ba04d9
)
builtin-describe.c: make a global variable "pattern" static
author
Nanako Shiraishi
<nanako3@lavabit.com>
Wed, 16 Jul 2008 10:42:14 +0000
(19:42 +0900)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 16 Jul 2008 15:50:32 +0000
(08:50 -0700)
This variable is not used by any other file.
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-describe.c
patch
|
blob
|
history
diff --git
a/builtin-describe.c
b/builtin-describe.c
index e515f9ca9b5d0ec13e96a7866e27bdd9e852b435..62a19056ef05989b0b48d0939758a66175b3f442 100644
(file)
--- a/
builtin-describe.c
+++ b/
builtin-describe.c
@@
-20,7
+20,7
@@
static int tags; /* But allow any tags if --tags is specified */
static int longformat;
static int abbrev = DEFAULT_ABBREV;
static int max_candidates = 10;
-
const char *pattern = NULL
;
+
static const char *pattern
;
static int always;
struct commit_name {