* CML2 1.9.6 is available
@ 2001-12-09 8:32 Eric S. Raymond
2001-12-09 9:04 ` Keith Owens
0 siblings, 1 reply; 7+ messages in thread
From: Eric S. Raymond @ 2001-12-09 8:32 UTC (permalink / raw)
To: linux-kernel, kbuild-devel
Release 1.9.6: Sun Dec 9 03:23:55 EST 2001
* Rulebase and help sync with 2.4.17-pre6/2.5.1-pre8.
* Corrected casting in default computation.
The bug queue is empty.
--
<a href="http://www.tuxedo.org/~esr/">Eric S. Raymond</a>
The right of the citizens to keep and bear arms has justly been considered as
the palladium of the liberties of a republic; since it offers a strong moral
check against usurpation and arbitrary power of rulers; and will generally,
even if these are successful in the first instance, enable the people to resist
and triumph over them."
-- Supreme Court Justice Joseph Story of the John Marshall Court
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: CML2 1.9.6 is available 2001-12-09 8:32 CML2 1.9.6 is available Eric S. Raymond @ 2001-12-09 9:04 ` Keith Owens 2001-12-12 5:05 ` Eric S. Raymond 0 siblings, 1 reply; 7+ messages in thread From: Keith Owens @ 2001-12-09 9:04 UTC (permalink / raw) To: esr; +Cc: linux-kernel, kbuild-devel After a quick check it looks good. One niggle, some strings for kuild 2.5 are longer than 30 characters, cml2 restricts the string length in make menuconfig. Only menuconfig has this restriction, not oldconfig nor xconfig. Can the limit be removed, or at least changed to $ROWS-n which would adjust to screen size? ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: CML2 1.9.6 is available 2001-12-09 9:04 ` Keith Owens @ 2001-12-12 5:05 ` Eric S. Raymond 2001-12-12 6:32 ` Keith Owens 0 siblings, 1 reply; 7+ messages in thread From: Eric S. Raymond @ 2001-12-12 5:05 UTC (permalink / raw) To: Keith Owens; +Cc: linux-kernel, kbuild-devel Keith Owens <kaos@ocs.com.au>: > One niggle, some strings for kuild 2.5 are longer than 30 characters, > cml2 restricts the string length in make menuconfig. Only menuconfig > has this restriction, not oldconfig nor xconfig. Can the limit be > removed, or at least changed to $ROWS-n which would adjust to screen > size? The only place I see a limit of 30 is in the query_popup function used for querying for things like search strings, symbol names in the go-to command, etc. in menuconfig. The answer is: maybe. The underlying problem here is that the prompt string and the string editing area both eat screen width. 30 is about the largest limit that doesn't blow up the configurator when combined with the longest prompt strings. -- <a href="http://www.tuxedo.org/~esr/">Eric S. Raymond</a> Everything you know is wrong. But some of it is a useful first approximation. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: CML2 1.9.6 is available 2001-12-12 5:05 ` Eric S. Raymond @ 2001-12-12 6:32 ` Keith Owens 2001-12-12 6:28 ` Eric S. Raymond 0 siblings, 1 reply; 7+ messages in thread From: Keith Owens @ 2001-12-12 6:32 UTC (permalink / raw) To: esr; +Cc: linux-kernel, kbuild-devel On Wed, 12 Dec 2001 00:05:06 -0500, "Eric S. Raymond" <esr@thyrsus.com> wrote: >Keith Owens <kaos@ocs.com.au>: >> One niggle, some strings for kuild 2.5 are longer than 30 characters, >> cml2 restricts the string length in make menuconfig. Only menuconfig >> has this restriction, not oldconfig nor xconfig. Can the limit be >> removed, or at least changed to $ROWS-n which would adjust to screen >> size? > >The only place I see a limit of 30 is in the query_popup function used >for querying for things like search strings, symbol names in the go-to >command, etc. in menuconfig. > >The answer is: maybe. The underlying problem here is that the prompt >string and the string editing area both eat screen width. 30 is about >the largest limit that doesn't blow up the configurator when combined >with the longest prompt strings. This works for me. --- cml2-1.9.6/cmlconfigure.py Sun Dec 9 19:27:31 2001 +++ 2.4.16-kbuild-2.5/scripts/cmlconfigure.py Wed Dec 12 17:23:01 2001 @@ -1009,7 +1009,7 @@ def query_popup(self, prompt, initval=None): "Pop up a window to accept a string." - maxsymwidth = 30 # Constant + maxsymwidth = self.columns - len(prompt) - 2 if initval and len(initval) > maxsymwidth: self.help_popup("PRESSANY", (lang["TOOLONG"],), beep=1) return initval Warning, that is my first bit of Python code (Oh no, now I'm contaminated too :-). ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: CML2 1.9.6 is available 2001-12-12 6:32 ` Keith Owens @ 2001-12-12 6:28 ` Eric S. Raymond 2001-12-12 11:45 ` Lars Brinkhoff 0 siblings, 1 reply; 7+ messages in thread From: Eric S. Raymond @ 2001-12-12 6:28 UTC (permalink / raw) To: Keith Owens; +Cc: linux-kernel, kbuild-devel Keith Owens <kaos@ocs.com.au>: > This works for me. > > --- cml2-1.9.6/cmlconfigure.py Sun Dec 9 19:27:31 2001 > +++ 2.4.16-kbuild-2.5/scripts/cmlconfigure.py Wed Dec 12 17:23:01 2001 > @@ -1009,7 +1009,7 @@ > > def query_popup(self, prompt, initval=None): > "Pop up a window to accept a string." > - maxsymwidth = 30 # Constant > + maxsymwidth = self.columns - len(prompt) - 2 > if initval and len(initval) > maxsymwidth: > self.help_popup("PRESSANY", (lang["TOOLONG"],), beep=1) > return initval > > Warning, that is my first bit of Python code (Oh no, now I'm > contaminated too :-). And a very nice bit it is too :-). I actually ended up making a similar change shortly after I wrote you. Right now I'm testing Jan Harknes's CML1 backport patch. -- <a href="http://www.tuxedo.org/~esr/">Eric S. Raymond</a> I do not find in orthodox Christianity one redeeming feature. -- Thomas Jefferson ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: CML2 1.9.6 is available 2001-12-12 6:28 ` Eric S. Raymond @ 2001-12-12 11:45 ` Lars Brinkhoff 2001-12-12 16:04 ` Eric S. Raymond 0 siblings, 1 reply; 7+ messages in thread From: Lars Brinkhoff @ 2001-12-12 11:45 UTC (permalink / raw) To: esr; +Cc: Keith Owens, linux-kernel, kbuild-devel "Eric S. Raymond" <esr@thyrsus.com> writes: > Right now I'm testing Jan Harknes's CML1 backport patch. It's the second time I see this CML1 backport mentioned. You sure you don't mean the Python1 backport? -- Lars Brinkhoff http://lars.nocrew.org/ Linux, GCC, PDP-10 Brinkhoff Consulting http://www.brinkhoff.se/ programming ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: CML2 1.9.6 is available 2001-12-12 11:45 ` Lars Brinkhoff @ 2001-12-12 16:04 ` Eric S. Raymond 0 siblings, 0 replies; 7+ messages in thread From: Eric S. Raymond @ 2001-12-12 16:04 UTC (permalink / raw) To: Lars Brinkhoff; +Cc: Keith Owens, linux-kernel, kbuild-devel Lars Brinkhoff <lars.spam@nocrew.org>: > "Eric S. Raymond" <esr@thyrsus.com> writes: > > Right now I'm testing Jan Harknes's CML1 backport patch. > > It's the second time I see this CML1 backport mentioned. You sure you > don't mean the Python1 backport? Sorry, that is what I meant. -- <a href="http://www.tuxedo.org/~esr/">Eric S. Raymond</a> "Those who make peaceful revolution impossible will make violent revolution inevitable." -- John F. Kennedy ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2001-12-12 16:15 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2001-12-09 8:32 CML2 1.9.6 is available Eric S. Raymond 2001-12-09 9:04 ` Keith Owens 2001-12-12 5:05 ` Eric S. Raymond 2001-12-12 6:32 ` Keith Owens 2001-12-12 6:28 ` Eric S. Raymond 2001-12-12 11:45 ` Lars Brinkhoff 2001-12-12 16:04 ` Eric S. Raymond
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox