[Thread Prev][Thread Next][Thread Index]
Re: SyncMemo
- To: Bek Oberin <gossamer@xxxxxxxxxxxxxx>
- Subject: Re: SyncMemo
- From: "Andreas S. Oesterhelt" <oes@xxxxxxxxxxxxxxxx>
- Date: Thu, 22 Jul 1999 13:47:46 +0200 (MEST)
- Cc: Pilot Manager <pilotmgr@xxxxxxxxxxxxxxxxxxxx>
- In-reply-to: <19990720195618.M7195@tertius.net.au>
- Reply-to: Andreas.Oesterhelt@xxxxxx
- Sender: owner-pilotmgr
Hi Bek,
> SyncMemo doesn't cope with categories with spaces in the title - thank
> heavens for backups! It deleted all my memos in that category.
Here's a mini-patch against v1.7 that will fix that problem.
Kind regards,
--Andreas
468c468
< $cats[$i] =~ tr|/|+|;
---
> $cats[$i] =~ tr| '"<>()[]/;\n|____________|s; # Don't want special chars in dir names
966c966
< @dirlist = eval "<$file>";
---
> @dirlist = eval "<$file>"; # Will split names containing spaces!