Jean-Marc Lasgouttes wrote: > Yes, we definitely should. Did you fix that? (1.3.5cvs could use this > too).
Not yet. I'll commit to 1.4 and 1.3.5 (patch attached). BTW the latest fun in cvs is: quotation marks get inserted *after* the cursor. Jürgen.
Index: src/insets/ChangeLog =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/ChangeLog,v retrieving revision 1.975 diff -u -r1.975 ChangeLog --- src/insets/ChangeLog 10 Mar 2004 08:50:46 -0000 1.975 +++ src/insets/ChangeLog 16 Mar 2004 10:43:16 -0000 @@ -1,3 +1,7 @@ +2004-03-16 Jürgen Spitzmüller <[EMAIL PROTECTED]> + + * insetquote.C: use opening quote after '[' char. + 2004-03-09 Alfredo Braunstein <[EMAIL PROTECTED]> * insetcollapsable.[Ch] (metrics, draw): implemented an inlined-Open Index: src/insets/insetquotes.C =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/insets/insetquotes.C,v retrieving revision 1.113 diff -u -r1.113 insetquotes.C --- src/insets/insetquotes.C 20 Feb 2004 10:32:44 -0000 1.113 +++ src/insets/insetquotes.C 16 Mar 2004 10:43:18 -0000 @@ -109,8 +109,7 @@ { // Decide whether left or right switch (c) { - case ' ': case '(': - // FIXME: what about '['? (jspitzm) + case ' ': case '(': case '[': side_ = LeftQ; // left quote break; default: