Re: [PATCH] pager: use an environment variable for pager_in_use

Previous thread: [PATCH] Allow config files to be included by Alex Riesen on Friday, February 16, 2007 - 7:42 am. (2 messages)

Next thread: suggested feature: someone mails me a blob, git please tell me what it is by Mike Coleman on Friday, February 16, 2007 - 9:23 am. (6 messages)
From: Matthias Lederhofer
Date: Friday, February 16, 2007 - 8:19 am

git -p status starts the pager, then runs git-commit.sh (named
git-status) which in turn runs git-runstatus.  I guess the problem is
that git-runstatus cannot check that the pager was started and just
knows that stdout is no terminal.  Has anyone an idea how to fix
this?
-

From: Jeff King
Date: Friday, February 16, 2007 - 8:56 am

Your analysis looks right to me.  I think you would need to set
GIT_PAGER_IN_USE in the environment whenever you turn on the pager in
the git wrapper, and then set git's internal pager_in_use variable based
on that.

-Peff
-

From: Matthias Lederhofer
Date: Friday, February 16, 2007 - 11:22 am

When running a shell script the value of pager_in_use is
lost for later processes.  Therefore pager_in_use is
replaced by the environment variable GIT_PAGER_IN_USE.

Signed-off-by: Matthias Lederhofer <matled@gmx.net>
---

This patch replaces pager_in_use because pager_in_use was only used at
two places (one sets it, the other reads it).
---
 cache.h       |    1 -
 color.c       |    2 +-
 environment.c |    1 -
 pager.c       |    3 ++-
 4 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/cache.h b/cache.h
index c62b0b0..aeaac9f 100644
--- a/cache.h
+++ b/cache.h
@@ -445,7 +445,6 @@ extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char
 
 /* pager.c */
 extern void setup_pager(void);
-extern int pager_in_use;
 extern int pager_use_color;
 
 /* base85 */
diff --git a/color.c b/color.c
index 09d82ee..50e073a 100644
--- a/color.c
+++ b/color.c
@@ -121,7 +121,7 @@ int git_config_colorbool(const char *var, const char *value)
 	if (!value)
 		return 1;
 	if (!strcasecmp(value, "auto")) {
-		if (isatty(1) || (pager_in_use && pager_use_color)) {
+		if (isatty(1) || (getenv("GIT_PAGER_IN_USE") && pager_use_color)) {
 			char *term = getenv("TERM");
 			if (term && strcmp(term, "dumb"))
 				return 1;
diff --git a/environment.c b/environment.c
index 54c22f8..5b477c3 100644
--- a/environment.c
+++ b/environment.c
@@ -26,7 +26,6 @@ const char *apply_default_whitespace;
 int zlib_compression_level = Z_DEFAULT_COMPRESSION;
 size_t packed_git_window_size = DEFAULT_PACKED_GIT_WINDOW_SIZE;
 size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT;
-int pager_in_use;
 int pager_use_color = 1;
 
 static const char *git_dir;
diff --git a/pager.c b/pager.c
index 5f280ab..f59c94f 100644
--- a/pager.c
+++ b/pager.c
@@ -38,7 +38,8 @@ void setup_pager(void)
 	else if (!*pager || !strcmp(pager, "cat"))
 		return;
 
-	pager_in_use = 1; /* means we are emitting to terminal */
+	/* means we are emitting to terminal ...
From: Johannes Schindelin
Date: Friday, February 16, 2007 - 11:35 am

Hi,


Am I the only one who finds it ugly to set an environment variable for use 

How about

+int pager_in_use = getenv("GIT_PAGER_IN_USE");

???

Ciao,
Dscho

-

From: Matthias Lederhofer
Date: Friday, February 16, 2007 - 11:56 am

test.c:3: error: initializer element is not constant

So you could only add this at another place where pager_in_use is not yet
used (e.g. start of main or some other initialization method).
I did not want to put it at the beginning of main or another function.
After adding GIT_PAGER_IN_USE I thought it would make sense to remove
pager_in_use because there were only two parts of code using
-

From: Johannes Schindelin
Date: Friday, February 16, 2007 - 12:06 pm

Hi,


Sorry.

Still, it feels wrong to use two system calls when you need none.

How about working on making status and commit a builtin instead? This 
would not only solve your issue, but portability issues as well.

Ciao,
Dscho
-

From: Simon 'corecode' Schubert
Date: Friday, February 16, 2007 - 12:43 pm

getenv() is usually no system call, but processed in userland.

However, I also always get the feeling that using environment variables w=
ithin one process to communicate state seems wrong, but many old unix too=
ls do it this way.

cheers
  simon

--=20
Serve - BSD     +++  RENT this banner advert  +++    ASCII Ribbon   /"\
Work - Mac      +++  space for low =E2=82=AC=E2=82=AC=E2=82=AC NOW!1  +++=
      Campaign     \ /
Party Enjoy Relax   |   http://dragonflybsd.org      Against  HTML   \
Dude 2c 2 the max   !   http://golden-apple.biz       Mail + News   / \

Previous thread: [PATCH] Allow config files to be included by Alex Riesen on Friday, February 16, 2007 - 7:42 am. (2 messages)

Next thread: suggested feature: someone mails me a blob, git please tell me what it is by Mike Coleman on Friday, February 16, 2007 - 9:23 am. (6 messages)