From: Lars Gullik Bjønnes Date: Mon, 14 Jan 2002 01:48:58 +0000 (+0000) Subject: buf.diff X-Git-Tag: 1.6.10~20026 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=4a0060a2ab99f9068da4943f7b80856ae33750ef;p=lyx.git buf.diff git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3364 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index 004725dce1..9f204f61aa 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2002-01-14 John Levon + + * insettabular.C: return early for the LFUN_*BUF[SEL] funcs too + 2002-01-13 Jean-Marc Lasgouttes * insetgraphics.C (updateInset): do not try to render image if diff --git a/src/insets/insettabular.C b/src/insets/insettabular.C index 32b45f29f1..a7286e6c8d 100644 --- a/src/insets/insettabular.C +++ b/src/insets/insettabular.C @@ -1069,6 +1069,10 @@ InsetTabular::localDispatch(BufferView * bv, kb_action action, case LFUN_HOMESEL: case LFUN_END: case LFUN_ENDSEL: + case LFUN_BEGINNINGBUF: + case LFUN_BEGINNINGBUFSEL: + case LFUN_ENDBUF: + case LFUN_ENDBUFSEL: break; case LFUN_LAYOUT_TABULAR: bv->owner()->getDialogs()->showTabular(this);