From: Catalin Marinas <catalin.marinas@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
Git Mailing List <git@vger.kernel.org>,
Karl Wiberg <kha@treskal.com>
Subject: Re: [ANNOUNCE] Stacked Git 0.15-rc1
Date: Tue, 14 Jul 2009 09:24:45 +0100 [thread overview]
Message-ID: <b0943d9e0907140124u6e804ef2i5a17c23a44eda50f@mail.gmail.com> (raw)
In-Reply-To: <alpine.LFD.2.01.0907131555200.13838@localhost.localdomain>
2009/7/13 Linus Torvalds <torvalds@linux-foundation.org>:
> On Mon, 13 Jul 2009, Catalin Marinas wrote:
>>
>> os.environ.setdefault('PAGER', config.get('stgit.pager'))
>> + if os.environ.get('PAGER').startswith('less'):
>> + os.environ.setdefault('LESS', '-FRSX')
>> # FIXME: handle EDITOR the same way ?
>
> That's not very smart.
>
> First off, PAGER could easily be something like "/usr/local/bin/less".
>
> Secondly, if it isn't less, so what? If it's not less, it won't care about
> the LESS environment variable.
>
> So just do an unconditional
>
> os.environ.setdefault('LESS', '-FRSX')
>
> and it will (a) work better, (b) be simpler and more efficient.
Good point. Thanks. This is the new version:
diff --git a/stgit/config.py b/stgit/config.py
index f205e5b..4a6cb3b 100644
--- a/stgit/config.py
+++ b/stgit/config.py
@@ -37,7 +37,7 @@ class GitConfig:
'stgit.keepoptimized': 'no',
'stgit.extensions': '.ancestor .current .patched',
'stgit.shortnr': '5',
- 'stgit.pager': 'less -FRSX'
+ 'stgit.pager': 'less'
}
__cache = None
@@ -121,6 +121,7 @@ def config_setup():
global config
os.environ.setdefault('PAGER', config.get('stgit.pager'))
+ os.environ.setdefault('LESS', '-FRSX')
# FIXME: handle EDITOR the same way ?
class ConfigOption:
--
Catalin
next prev parent reply other threads:[~2009-07-14 8:24 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-12 22:40 [ANNOUNCE] Stacked Git 0.15-rc1 Catalin Marinas
2009-07-13 8:28 ` Uwe Kleine-König
2009-07-14 14:12 ` Catalin Marinas
2009-07-13 13:10 ` Karl Wiberg
2009-07-13 13:33 ` Aneesh Kumar K.V
2009-07-13 17:07 ` Catalin Marinas
2009-07-13 17:20 ` Aneesh Kumar K.V
2009-07-13 17:47 ` Aneesh Kumar K.V
2009-07-13 22:06 ` Catalin Marinas
2009-07-13 22:57 ` Linus Torvalds
2009-07-14 8:24 ` Catalin Marinas [this message]
2009-07-14 17:52 ` Larry D'Anna
2009-07-14 21:05 ` Catalin Marinas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b0943d9e0907140124u6e804ef2i5a17c23a44eda50f@mail.gmail.com \
--to=catalin.marinas@gmail.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=git@vger.kernel.org \
--cc=kha@treskal.com \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).