John Levon <[EMAIL PROTECTED]> writes:
| Index: src/frontends/xforms/ChangeLog
| ===================================================================
| RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/frontends/xforms/ChangeLog,v
| retrieving revision 1.45
| diff -u -p -r1.45 ChangeLog
| --- src/frontends/xforms/ChangeLog 2001/03/12 16:35:58 1.45
| +++ src/frontends/xforms/ChangeLog 2001/03/13 12:40:03
| @@ -1,3 +1,7 @@
| +2001-03-13 John Levon <[EMAIL PROTECTED]>
| +
| + * FormGraphics.C: remove unnecessary hack
| +
| 2001-03-12 Dekel Tsur <[EMAIL PROTECTED]>
|
| * Menubar_pimpl.C (add_toc): Remove debug message.
| Index: src/frontends/xforms/FormGraphics.C
| ===================================================================
| RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/frontends/xforms/FormGraphics.C,v
| retrieving revision 1.19
| diff -u -p -r1.19 FormGraphics.C
| --- src/frontends/xforms/FormGraphics.C 2001/03/12 11:22:25 1.19
| +++ src/frontends/xforms/FormGraphics.C 2001/03/13 12:40:03
| @@ -358,8 +358,7 @@ void FormGraphics::browse()
|
| string const title = N_("Graphics");
| // FIXME: currently we need the second '|' to prevent mis-interpretation
| - // FIXME: rfind() in split() seems to be broken hence the second space
| - string const pattern = "*.(ps|png)| ";
| + string const pattern = "*.(ps|png)|";
what purpose has the second "|"?
what cases does it avoid matching on?
Lgb