* src/mathed/math_nestinset.C (do_dispatch):

- catch LFUN_QUOTE and output plain quote (bug 3044).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@16404 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2006-12-27 15:05:32 +00:00
parent 3bb0f423e3
commit fdb9f4d62f
3 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-12-27 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* math_nestinset.C (doDispatch): catch LFUN_QUOTE and insert
a plain quotation mark (bug 3044).
2006-10-26 Enrico Forestieri <forenr@tlc.unipr.it>
* math_biginset.[Ch] (name): implement

View File

@ -908,6 +908,12 @@ void MathNestInset::doDispatch(LCursor & cur, FuncRequest & cmd)
interpret(cur, '^');
break;
case LFUN_QUOTE:
// interpret this as if a straight " was typed
recordUndo(cur, Undo::ATOMIC);
interpret(cur, '\"');
break;
// FIXME: We probably should swap parts of "math-insert" and "self-insert"
// handling such that "self-insert" works on "arbitrary stuff" too, and
// math-insert only handles special math things like "matrix".

View File

@ -138,6 +138,9 @@ What's new
- Don't reset cell selection when opening tabular dialog (bug 2715).
- Quotation marks can now be inserted easier into mathed, which is
important for phonetic notation (bug 3044)
* Build/installation:
- Allow autoconf 2.60 and 2.61 for building.