[vox-tech] Re: broken mozilla

2003-06-21 Thread Charles McLaughlin
I've tried a making new profiles... tried apt-get --purge remove mozilla... tried removing my ~.mozilla directory. The same thing occurs the classic and modern skins. Double checked my settings and new windows should go to my home page. Still have the same problem. It's no biggie for me

Re: [vox-tech] How to Break and Join Threads in mutt

2003-06-21 Thread Shawn P. Neugebauer
On Friday 20 June 2003 10:50 pm, Mike Simons wrote: On Fri, Jun 20, 2003 at 10:31:10PM -0700, Peter Jay Salzman wrote: many of use threaded mail readers, and starting a new thread by replying to an existing thread really screws up our threading. I agree it is annoying, there are also

[vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Peter Jay Salzman
sorry for the line length. when using a quoting operator like qw and friends, how does one one quote a string with spaces? in the code snippet below, my code chokes on El Dorado. i also tried foreach my $county (qw/Amador Calaveras q+El Dorado+ Humboldt Lake Tehama Trinity/) and expected it

[vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Micah Cowan
Peter Jay Salzman writes: sorry for the line length. when using a quoting operator like qw and friends, how does one one quote a string with spaces? in the code snippet below, my code chokes on El Dorado. i also tried foreach my $county (qw/Amador Calaveras q+El Dorado+

Re: [vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Mike Simons
--o99acAvKqrTZeiCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 21, 2003 at 05:22:17PM -0700, Peter Jay Salzman wrote: when using a quoting operator like qw and friends, how does one one quote a string with

Re: [vox-tech] perl: quoting strings with spaces

2003-06-21 Thread Jay Strauss
Or you can do it like: ('Amador','Calaveras','El Dorado','Humboldt','Lake Tehama','Trinity') - Original Message - From: Peter Jay Salzman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 21, 2003 7:22 PM Subject: [vox-tech] perl: quoting strings with spaces sorry for the