RE: Please review: rc file changes

1999-09-02 Thread Wood, Richard
> -Original Message- > From: Aled Morris [mailto:[EMAIL PROTECTED]] > Sent: 01 September 1999 16:51 > It does apply in the UK - two spaces is pretty standard. I guess this > isn't an Americanism (for once!) Not everywhere in the UK, or maybe it's an age related thing. I was never taught

RE: Please review: rc file changes

1999-09-02 Thread Wood, Richard
> -Original Message- > From: Aled Morris [mailto:al...@routers.co.uk] > Sent: 01 September 1999 16:51 > It does apply in the UK - two spaces is pretty standard. I guess this > isn't an Americanism (for once!) Not everywhere in the UK, or maybe it's an age related thing. I was never taugh

Re: Please review: rc file changes

1999-09-01 Thread Neil Blakey-Milner
On Wed 1999-09-01 (16:40), Andrzej Bialecki wrote: > > :I vote for two spaces after the period before the start of a new sentence. > > :Even in the digital age, I've always found that the two spaces make > > > I guess they don't teach manual typewriting classes any more :-) > > It *had* to

Re: Please review: rc file changes

1999-09-01 Thread Neil Blakey-Milner
On Wed 1999-09-01 (16:40), Andrzej Bialecki wrote: > > :I vote for two spaces after the period before the start of a new sentence. > > :Even in the digital age, I've always found that the two spaces make > > > I guess they don't teach manual typewriting classes any more :-) > > It *had* t

Re: Please review: rc file changes

1999-09-01 Thread Aled Morris
On Wed, 1 Sep 1999, Andrzej Bialecki wrote: >On Sat, 28 Aug 1999, Matthew Dillon wrote: > >> :>I've never heard of that. I've always found that two spaces >> :> after end-of-sentence punctuation makes things easier to read! >> : >> :I vote for two spaces after the period before the start of a

Re: Please review: rc file changes

1999-09-01 Thread Aled Morris
On Wed, 1 Sep 1999, Andrzej Bialecki wrote: >On Sat, 28 Aug 1999, Matthew Dillon wrote: > >> :>I've never heard of that. I've always found that two spaces >> :> after end-of-sentence punctuation makes things easier to read! >> : >> :I vote for two spaces after the period before the start of

Re: Please review: rc file changes

1999-09-01 Thread Andrzej Bialecki
On Sat, 28 Aug 1999, Matthew Dillon wrote: > :>I've never heard of that. I've always found that two spaces > :> after end-of-sentence punctuation makes things easier to read! > : > :I vote for two spaces after the period before the start of a new sentence. > :Even in the digital age, I've alw

Re: Please review: rc file changes

1999-09-01 Thread Andrzej Bialecki
On Sat, 28 Aug 1999, Matthew Dillon wrote: > :>I've never heard of that. I've always found that two spaces > :> after end-of-sentence punctuation makes things easier to read! > : > :I vote for two spaces after the period before the start of a new sentence. > :Even in the digital age, I've al

Re: Please review: rc file changes

1999-08-30 Thread Doug
On Mon, 30 Aug 1999, David O'Brien wrote: > > I've had a week-end away from a keyboard to think about this. The only > > reason we have to use case statements for case-insensitive variable > > testing is because sh(1) doesn't offer any upper/lower case handling > > Also so that common settings ca

Re: Please review: rc file changes

1999-08-30 Thread David O'Brien
> I've had a week-end away from a keyboard to think about this. The only > reason we have to use case statements for case-insensitive variable > testing is because sh(1) doesn't offer any upper/lower case handling Also so that common settings can be added. Besides "yes" and "no" there could be ot

Re: Please review: rc file changes

1999-08-30 Thread Doug
On Mon, 30 Aug 1999, David O'Brien wrote: > > I've had a week-end away from a keyboard to think about this. The only > > reason we have to use case statements for case-insensitive variable > > testing is because sh(1) doesn't offer any upper/lower case handling > > Also so that common settings c

Re: Please review: rc file changes

1999-08-30 Thread David O'Brien
> I've had a week-end away from a keyboard to think about this. The only > reason we have to use case statements for case-insensitive variable > testing is because sh(1) doesn't offer any upper/lower case handling Also so that common settings can be added. Besides "yes" and "no" there could be o

Re: Please review: rc file changes

1999-08-30 Thread Sheldon Hearn
On Sat, 28 Aug 1999 16:46:11 MST, Doug wrote: > Hoping I'm running out of nits, :-) Hi Doug, I've had a week-end away from a keyboard to think about this. The only reason we have to use case statements for case-insensitive variable testing is because sh(1) doesn't offer any upper/lower case h

Re: Please review: rc file changes

1999-08-30 Thread Sheldon Hearn
On Sat, 28 Aug 1999 16:46:11 MST, Doug wrote: > Hoping I'm running out of nits, :-) Hi Doug, I've had a week-end away from a keyboard to think about this. The only reason we have to use case statements for case-insensitive variable testing is because sh(1) doesn't offer any upper/lower case

Re: Please review: rc file changes

1999-08-29 Thread Sheldon Hearn
On Sun, 29 Aug 1999 12:40:20 +0200, Leif Neland wrote: > if isyes ${thisvariable} > > case $1 of > [Yy][Ee][Ss]) > exit 0 > ;; > *) > exit 1 > ;; > esac I hope you mean "in" instead of "of" and "return" instead of "exit". :-) I like this. One of the reasons I like it so much is becaus

Re: Please review: rc file changes

1999-08-29 Thread Sheldon Hearn
On Sun, 29 Aug 1999 12:40:20 +0200, Leif Neland wrote: > if isyes ${thisvariable} > > case $1 of > [Yy][Ee][Ss]) > exit 0 > ;; > *) > exit 1 > ;; > esac I hope you mean "in" instead of "of" and "return" instead of "exit". :-) I like this. One of the reasons I like it so much is becau

Re: Please review: rc file changes

1999-08-29 Thread Leif Neland
On Fri, 27 Aug 1999, Sheldon Hearn wrote: > > Hi folks, > > What follows is a diff that presents Doug's changes (which must have > required quite a bit of effort, thanks!) in a slightly different format > which I think the grumpies here might prefer. > > Specifically, case statements look mor

Re: Please review: rc file changes

1999-08-29 Thread Leif Neland
On Fri, 27 Aug 1999, Sheldon Hearn wrote: > > Hi folks, > > What follows is a diff that presents Doug's changes (which must have > required quite a bit of effort, thanks!) in a slightly different format > which I think the grumpies here might prefer. > > Specifically, case statements look mo

Re: Please review: rc file changes

1999-08-28 Thread Andy Farkas
On Sat, 28 Aug 1999, Doug wrote: > Ben Smithurst wrote: > > > > Doug wrote: > > > > > Okey dokey, I can take a hint. :) > > > > Can you take another one, regarding the unnecessary spaces after the > > values in your "case"s? i.e., that they should be taken out and shot? > > :-) > >

Re: Please review: rc file changes

1999-08-28 Thread Andy Farkas
On Sat, 28 Aug 1999, Doug wrote: > Ben Smithurst wrote: > > > > Doug wrote: > > > > > Okey dokey, I can take a hint. :) > > > > Can you take another one, regarding the unnecessary spaces after the > > values in your "case"s? i.e., that they should be taken out and shot? > > :-) > >

Re: Please review: rc file changes

1999-08-28 Thread Doug
Ben Smithurst wrote: > > Doug wrote: > > > Okey dokey, I can take a hint. :) > > Can you take another one, regarding the unnecessary spaces after the > values in your "case"s? i.e., that they should be taken out and shot? > :-) *sigh* I am constantly flabbergasted by what people t

Re: Please review: rc file changes

1999-08-28 Thread Oliver Fromme
Doug wrote in list.freebsd-hackers: > 2. value ) instead of value) for case statements Maybe I missed it, but what exactly is the reason for that change? I do not like it, it makes the case lines look strange. And I think there was a policy that style should not be changed if there's no good re

Re: Please review: rc file changes

1999-08-28 Thread Doug
Ben Smithurst wrote: > > Doug wrote: > > > Okey dokey, I can take a hint. :) > > Can you take another one, regarding the unnecessary spaces after the > values in your "case"s? i.e., that they should be taken out and shot? > :-) *sigh* I am constantly flabbergasted by what people

Re: Please review: rc file changes

1999-08-28 Thread Oliver Fromme
Doug wrote in list.freebsd-hackers: > 2. value ) instead of value) for case statements Maybe I missed it, but what exactly is the reason for that change? I do not like it, it makes the case lines look strange. And I think there was a policy that style should not be changed if there's no good r

Re: Please review: rc file changes

1999-08-28 Thread Ben Smithurst
Doug wrote: > Okey dokey, I can take a hint. :) Can you take another one, regarding the unnecessary spaces after the values in your "case"s? i.e., that they should be taken out and shot? :-) -- Ben Smithurst| PGP: 0x99392F7D b...@scientia.demon.co.uk | key available from key

Re: Please review: rc file changes

1999-08-28 Thread Ben Smithurst
Doug wrote: > Okey dokey, I can take a hint. :) Can you take another one, regarding the unnecessary spaces after the values in your "case"s? i.e., that they should be taken out and shot? :-) -- Ben Smithurst| PGP: 0x99392F7D [EMAIL PROTECTED] | key available from keyservers

Re: Please review: rc file changes

1999-08-28 Thread Mike Pritchard
> On Sat, Aug 28, 1999, Tim Vanderhoek wrote: > > A sentence ends > > .Ar here . > > But this new one has a single space preceeding it. > >Does adding a space after the `.' at the end of your line > help? Please, no trailing white space :-)! Seriously, I think that all of the current mdoc

Re: Please review: rc file changes

1999-08-28 Thread Doug
Cleaned up this post a little for the final (?) version of rc.diff. Back by popular demand, double spaces after the periods! Well, partly by popular demand and partly because I think it bouys my argument for a space after the case options. :) Note the changed URL for the real file. Without

Re: Please review: rc file changes

1999-08-28 Thread Mike Pritchard
> On Sat, Aug 28, 1999, Tim Vanderhoek wrote: > > A sentence ends > > .Ar here . > > But this new one has a single space preceeding it. > >Does adding a space after the `.' at the end of your line > help? Please, no trailing white space :-)! Seriously, I think that all of the current mdoc

Re: Please review: rc file changes

1999-08-28 Thread Doug
Cleaned up this post a little for the final (?) version of rc.diff. Back by popular demand, double spaces after the periods! Well, partly by popular demand and partly because I think it bouys my argument for a space after the case options. :) Note the changed URL for the real file. Without

Re: Please review: rc file changes

1999-08-28 Thread jack
Today Doug wrote: > Matthew Dillon wrote: > > > I guess they don't teach manual typewriting classes any more :-) > > Actually I took that class in Jr. High School, way back in '77. It was > the > only good advice my Jr. High guidance counselor gave me. > > Doug When I was in 8th gr

Re: Please review: rc file changes

1999-08-28 Thread Doug
Matthew Dillon wrote: > I guess they don't teach manual typewriting classes any more :-) Actually I took that class in Jr. High School, way back in '77. It was the only good advice my Jr. High guidance counselor gave me. Doug To Unsubscribe: send mail to majord...@freebsd.org wit

Re: Please review: rc file changes

1999-08-28 Thread Doug
Nik Clayton wrote: > > On Fri, Aug 27, 1999 at 11:23:06AM -0700, Doug wrote: > > On Fri, 27 Aug 1999, Nate Williams wrote: > > > Sentences are supposed to have two spaces before you start the next > > > sentence. > > > > Well, that was definitely the old typographical convention, but in > >

Re: Please review: rc file changes

1999-08-28 Thread jack
Today Doug wrote: > Matthew Dillon wrote: > > > I guess they don't teach manual typewriting classes any more :-) > > Actually I took that class in Jr. High School, way back in '77. It was the > only good advice my Jr. High guidance counselor gave me. > > Doug When I was in 8th grad

Re: Please review: rc file changes

1999-08-28 Thread Doug
Matthew Dillon wrote: > I guess they don't teach manual typewriting classes any more :-) Actually I took that class in Jr. High School, way back in '77. It was the only good advice my Jr. High guidance counselor gave me. Doug To Unsubscribe: send mail to [EMAIL PROTECTED] with "u

Re: Please review: rc file changes

1999-08-28 Thread Doug
Nik Clayton wrote: > > On Fri, Aug 27, 1999 at 11:23:06AM -0700, Doug wrote: > > On Fri, 27 Aug 1999, Nate Williams wrote: > > > Sentences are supposed to have two spaces before you start the next > > > sentence. > > > > Well, that was definitely the old typographical convention, but in > >

Re: Please review: rc file changes

1999-08-28 Thread Matthew Dillon
:>I've never heard of that. I've always found that two spaces :> after end-of-sentence punctuation makes things easier to read! : :I vote for two spaces after the period before the start of a new sentence. :Even in the digital age, I've always found that the two spaces make :for better reading

Re: Please review: rc file changes

1999-08-28 Thread Matthew Dillon
:>I've never heard of that. I've always found that two spaces :> after end-of-sentence punctuation makes things easier to read! : :I vote for two spaces after the period before the start of a new sentence. :Even in the digital age, I've always found that the two spaces make :for better readin

Re: Please review: rc file changes

1999-08-28 Thread Chris Costello
On Sat, Aug 28, 1999, Tim Vanderhoek wrote: > A sentence ends > .Ar here . > But this new one has a single space preceeding it. Does adding a space after the `.' at the end of your line help? -- |Chris Costello |**FLASH** Energizer Bunny arrested, charged with battery. `

Re: Please review: rc file changes

1999-08-28 Thread Chris Costello
On Sat, Aug 28, 1999, Tim Vanderhoek wrote: > A sentence ends > .Ar here . > But this new one has a single space preceeding it. Does adding a space after the `.' at the end of your line help? -- |Chris Costello <[EMAIL PROTECTED]> |**FLASH** Energizer Bunny arrested, charged with battery. `

Re: Please review: rc file changes

1999-08-28 Thread Tim Vanderhoek
On Sat, Aug 28, 1999 at 05:45:05AM -0500, Mike Pritchard wrote: > > I vote for two spaces after the period before the start of a new sentence. > Even in the digital age, I've always found that the two spaces make > for better reading of text. I think that most of our formatting > tools do this to

Re: Please review: rc file changes

1999-08-28 Thread Tim Vanderhoek
On Sat, Aug 28, 1999 at 05:45:05AM -0500, Mike Pritchard wrote: > > I vote for two spaces after the period before the start of a new sentence. > Even in the digital age, I've always found that the two spaces make > for better reading of text. I think that most of our formatting > tools do this t

Re: Please review: rc file changes

1999-08-28 Thread Mike Pritchard
> On Fri, Aug 27, 1999, Doug wrote: > > > > -# this file, but rather in /etc/defaults/rc.conf. Please check this > > > > file > > > > +# this file, but rather in /etc/defaults/rc.conf. Please check that > > > > file > > > Well, that was definitely the old typographical convention, but in >

Re: Please review: rc file changes

1999-08-28 Thread Chris Costello
On Fri, Aug 27, 1999, Doug wrote: > > > -# this file, but rather in /etc/defaults/rc.conf. Please check this file > > > +# this file, but rather in /etc/defaults/rc.conf. Please check that file > Well, that was definitely the old typographical convention, but in > the digital age it's falle

Re: Please review: rc file changes

1999-08-28 Thread Nik Clayton
On Fri, Aug 27, 1999 at 11:23:06AM -0700, Doug wrote: > On Fri, 27 Aug 1999, Nate Williams wrote: > > Sentences are supposed to have two spaces before you start the next > > sentence. > > Well, that was definitely the old typographical convention, but in > the digital age it's fallen into di

Re: Please review: rc file changes

1999-08-28 Thread Mike Pritchard
> On Fri, Aug 27, 1999, Doug wrote: > > > > -# this file, but rather in /etc/defaults/rc.conf. Please check this file > > > > +# this file, but rather in /etc/defaults/rc.conf. Please check that file > > > Well, that was definitely the old typographical convention, but in > > the digital age

Re: Please review: rc file changes

1999-08-28 Thread Chris Costello
On Fri, Aug 27, 1999, Doug wrote: > > > -# this file, but rather in /etc/defaults/rc.conf. Please check this file > > > +# this file, but rather in /etc/defaults/rc.conf. Please check that file > Well, that was definitely the old typographical convention, but in > the digital age it's fall

Re: Please review: rc file changes

1999-08-28 Thread Nik Clayton
On Fri, Aug 27, 1999 at 11:23:06AM -0700, Doug wrote: > On Fri, 27 Aug 1999, Nate Williams wrote: > > Sentences are supposed to have two spaces before you start the next > > sentence. > > Well, that was definitely the old typographical convention, but in > the digital age it's fallen into d

Re: Please review: rc file changes

1999-08-27 Thread Oliver Fromme
Maybe this is nit-picking, too, buth those are just my 0.02 Euros... Doug wrote in list.freebsd-hackers: > -# this file, but rather in /etc/defaults/rc.conf. Please check this file > +# this file, but rather in /etc/defaults/rc.conf. Please check that file I'd prefer to keep it with two spaces

Re: Please review: rc file changes

1999-08-27 Thread Oliver Fromme
Maybe this is nit-picking, too, buth those are just my 0.02 Euros... Doug wrote in list.freebsd-hackers: > -# this file, but rather in /etc/defaults/rc.conf. Please check this file > +# this file, but rather in /etc/defaults/rc.conf. Please check that file I'd prefer to keep it with two space

Re: Please review: rc file changes

1999-08-27 Thread Doug
On Fri, 27 Aug 1999, Nate Williams wrote: > [ I'm nit-picking here, feel free to ignore ] A) You're in really good company. :) B) I expected a lot of nits to be picked on this project, which is why I wanted to do a "first draft" and solicit comments. I'm not overly concerned a

Re: Please review: rc file changes

1999-08-27 Thread David Scheidt
On Fri, 27 Aug 1999, Doug wrote: > > Ok, revised diff attached. I made the case indentation change and some > of > sheldon's suggestions are incorporated. I also neglected to mention > previously that I tuned up a few of the comments in the file, as well as > error output. I also was more

Re: Please review: rc file changes

1999-08-27 Thread Doug
On Fri, 27 Aug 1999, Nate Williams wrote: > [ I'm nit-picking here, feel free to ignore ] A) You're in really good company. :) B) I expected a lot of nits to be picked on this project, which is why I wanted to do a "first draft" and solicit comments. I'm not overly concerned

Re: Please review: rc file changes

1999-08-27 Thread Nate Williams
[ I'm nit-picking here, feel free to ignore ] > Doug--- /usr/src/etc/rc Thu Aug 26 20:56:36 1999 > +++ rcFri Aug 27 09:52:39 1999 > @@ -8,24 +8,25 @@ > # and the console is the controlling terminal. > > # Note that almost all the user-configurable behavior is no longer in > -

Re: Please review: rc file changes

1999-08-27 Thread David Scheidt
On Fri, 27 Aug 1999, Doug wrote: > > Ok, revised diff attached. I made the case indentation change and some of > sheldon's suggestions are incorporated. I also neglected to mention > previously that I tuned up a few of the comments in the file, as well as > error output. I also was more ri

Re: Please review: rc file changes

1999-08-27 Thread Doug
Doug wrote: > > Greetings, > > As previously discussed, here is a first draft of the rc* script > mods. I > consider the first step in this process to be Jordan's cleanup of the > variable syntax. This is step 2, which most notably converts test's dealing > with variables to case whereve

Re: Please review: rc file changes

1999-08-27 Thread Nate Williams
> > [...] > > 2. value ) instead of value) for case statements > > [...] > >case $? in > > - 0) > > + 0 ) > >;; > > - 2) > > + 2 ) > >exit 1 > >;; > > - 4) > > + 4 ) > >reboot > >echo "reboo

Re: Please review: rc file changes

1999-08-27 Thread Doug
Oliver Fromme wrote: > > Doug wrote in list.freebsd-hackers: > > [...] > > 2. value ) instead of value) for case statements > > [...] > > case $? in > > -0) > > +0 ) > > ;; > > -2) > > +2 ) > > exit 1 > > ;; >

Re: Please review: rc file changes

1999-08-27 Thread Nate Williams
[ I'm nit-picking here, feel free to ignore ] > Doug--- /usr/src/etc/rc Thu Aug 26 20:56:36 1999 > +++ rcFri Aug 27 09:52:39 1999 > @@ -8,24 +8,25 @@ > # and the console is the controlling terminal. > > # Note that almost all the user-configurable behavior is no longer in >

Re: Please review: rc file changes

1999-08-27 Thread Doug
Doug wrote: > > Greetings, > > As previously discussed, here is a first draft of the rc* script mods. I > consider the first step in this process to be Jordan's cleanup of the > variable syntax. This is step 2, which most notably converts test's dealing > with variables to case wherever

Re: Please review: rc file changes

1999-08-27 Thread Oliver Fromme
Sheldon Hearn wrote in list.freebsd-hackers: > What follows is a diff that presents Doug's changes (which must have > required quite a bit of effort, thanks!) Yeah -- Thanks Doug! > Specifically, case statements look more like what a lot of folks are > used to seeing, and conditionals that do

Re: Please review: rc file changes

1999-08-27 Thread Nate Williams
> > [...] > > 2. value ) instead of value) for case statements > > [...] > >case $? in > > - 0) > > + 0 ) > >;; > > - 2) > > + 2 ) > >exit 1 > >;; > > - 4) > > + 4 ) > >reboot > >echo "rebo

Re: Please review: rc file changes

1999-08-27 Thread Doug
Oliver Fromme wrote: > > Doug wrote in list.freebsd-hackers: > > [...] > > 2. value ) instead of value) for case statements > > [...] > > case $? in > > -0) > > +0 ) > > ;; > > -2) > > +2 ) > > exit 1 > > ;; >

Re: Please review: rc file changes

1999-08-27 Thread Oliver Fromme
Sheldon Hearn wrote in list.freebsd-hackers: > What follows is a diff that presents Doug's changes (which must have > required quite a bit of effort, thanks!) Yeah -- Thanks Doug! > Specifically, case statements look more like what a lot of folks are > used to seeing, and conditionals that d

Re: Please review: rc file changes

1999-08-27 Thread Sheldon Hearn
Hi folks, What follows is a diff that presents Doug's changes (which must have required quite a bit of effort, thanks!) in a slightly different format which I think the grumpies here might prefer. Specifically, case statements look more like what a lot of folks are used to seeing, and conditiona

Re: Please review: rc file changes

1999-08-27 Thread Sheldon Hearn
Hi folks, What follows is a diff that presents Doug's changes (which must have required quite a bit of effort, thanks!) in a slightly different format which I think the grumpies here might prefer. Specifically, case statements look more like what a lot of folks are used to seeing, and condition

Re: Please review: rc file changes

1999-08-27 Thread Peter Wemm
Doug wrote: If looking at the before and after seperately, the indentation of the case statements is IMHO bizzare and unlike anything I've seen before... eg: Changing this: > if [ "$1" = "autoboot" ]; then > echo Automatic reboot in progress... > fsck -p > case $? in > 0)

Re: Please review: rc file changes

1999-08-27 Thread Chris Costello
On Fri, Aug 27, 1999, Oliver Fromme wrote: > Why?!? I like the existing "case" style _much_ better, > it's more readable and emphasizes the structure. I agree 100%. > Regards >Oliver -- |Chris Costello |A computer scientist is someone who fixes things that aren't broken. `-

Re: Please review: rc file changes

1999-08-27 Thread Oliver Fromme
Doug wrote in list.freebsd-hackers: > [...] > 2. value ) instead of value) for case statements > [...] > case $? in > -0) > +0 ) > ;; > -2) > +2 ) > exit 1 > ;; > -4) > +4 ) > rebo

Re: Please review: rc file changes

1999-08-27 Thread Peter Wemm
Doug wrote: If looking at the before and after seperately, the indentation of the case statements is IMHO bizzare and unlike anything I've seen before... eg: Changing this: > if [ "$1" = "autoboot" ]; then > echo Automatic reboot in progress... > fsck -p > case $? in > 0

Re: Please review: rc file changes

1999-08-27 Thread Chris Costello
On Fri, Aug 27, 1999, Oliver Fromme wrote: > Why?!? I like the existing "case" style _much_ better, > it's more readable and emphasizes the structure. I agree 100%. > Regards >Oliver -- |Chris Costello <[EMAIL PROTECTED]> |A computer scientist is someone who fixes things that aren't br

Re: Please review: rc file changes

1999-08-27 Thread Oliver Fromme
Doug wrote in list.freebsd-hackers: > [...] > 2. value ) instead of value) for case statements > [...] > case $? in > -0) > +0 ) > ;; > -2) > +2 ) > exit 1 > ;; > -4) > +4 ) > reb

Re: Please review: rc file changes

1999-08-27 Thread Doug
On Fri, 27 Aug 1999, Chris Costello wrote: > On Thu, Aug 26, 1999, Doug wrote: > > > > 2. value ) instead of value) for case statements > > > > > >Why? What's wrong with `value)'? > > > > Nothing functionally, but I find case statements much easier to read with > > the extra whitespace. >

Re: Please review: rc file changes

1999-08-27 Thread Chris Costello
On Thu, Aug 26, 1999, Doug wrote: > > > 2. value ) instead of value) for case statements > > > >Why? What's wrong with `value)'? > > Nothing functionally, but I find case statements much easier to read with > the extra whitespace. Would that not cause problems? [A-Z]* )

Re: Please review: rc file changes

1999-08-26 Thread Doug
Chris Costello wrote: > > On Thu, Aug 26, 1999, Doug wrote: > > Greetings, > > > > As previously discussed, here is a first draft of the rc* script > > mods. I > > consider the first step in this process to be Jordan's cleanup of the > > variable syntax. This is step 2, which most notably c

Re: Please review: rc file changes

1999-08-26 Thread Chris Costello
On Thu, Aug 26, 1999, Doug wrote: > Greetings, > > As previously discussed, here is a first draft of the rc* script mods. I > consider the first step in this process to be Jordan's cleanup of the > variable syntax. This is step 2, which most notably converts test's dealing > with variables t

Please review: rc file changes

1999-08-26 Thread Doug
Greetings, As previously discussed, here is a first draft of the rc* script mods. I consider the first step in this process to be Jordan's cleanup of the variable syntax. This is step 2, which most notably converts test's dealing with variables to case wherever possible. It also does the f

Re: Please review: rc file changes

1999-08-26 Thread Doug
On Fri, 27 Aug 1999, Chris Costello wrote: > On Thu, Aug 26, 1999, Doug wrote: > > > > 2. value ) instead of value) for case statements > > > > > >Why? What's wrong with `value)'? > > > > Nothing functionally, but I find case statements much easier to read with > > the extra whitespace. >

Re: Please review: rc file changes

1999-08-26 Thread Chris Costello
On Thu, Aug 26, 1999, Doug wrote: > > > 2. value ) instead of value) for case statements > > > >Why? What's wrong with `value)'? > > Nothing functionally, but I find case statements much easier to read with > the extra whitespace. Would that not cause problems? [A-Z]* )

Re: Please review: rc file changes

1999-08-26 Thread Doug
Chris Costello wrote: > > On Thu, Aug 26, 1999, Doug wrote: > > Greetings, > > > > As previously discussed, here is a first draft of the rc* script mods. I > > consider the first step in this process to be Jordan's cleanup of the > > variable syntax. This is step 2, which most notably conve

Re: Please review: rc file changes

1999-08-26 Thread Chris Costello
On Thu, Aug 26, 1999, Doug wrote: > Greetings, > > As previously discussed, here is a first draft of the rc* script mods. I > consider the first step in this process to be Jordan's cleanup of the > variable syntax. This is step 2, which most notably converts test's dealing > with variables

Please review: rc file changes

1999-08-26 Thread Doug
Greetings, As previously discussed, here is a first draft of the rc* script mods. I consider the first step in this process to be Jordan's cleanup of the variable syntax. This is step 2, which most notably converts test's dealing with variables to case wherever possible. It also does the