Edwin Leuven <[EMAIL PROTECTED]> writes: | Index: src/lyxfunc.C | =================================================================== | --- src/lyxfunc.C (revision 13613) | +++ src/lyxfunc.C (working copy) | @@ -561,6 +561,18 @@ | flag = getStatus(func); | } | | + case LFUN_PARAGRAPH_MOVE_UP: { | + if (cur) | + enable = cur.pit()>0 && cur.anchor_.pit()>0; | + break; | + }
Some more spaces around comparisons operators please '>' etc. I also wonder how undo is taken care of with this? Does undo work? -- Lgb