mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
* 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:
parent
3bb0f423e3
commit
fdb9f4d62f
@ -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
|
||||
|
@ -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".
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user