From: Lars Gullik Bjønnes Date: Sat, 23 Oct 1999 17:26:19 +0000 (+0000) Subject: include the new header files in Makefile.am and fix the double-char bug. X-Git-Tag: 1.6.10~22583 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=dc05712c01be328a21b7364b03cbb12f09817a70;p=features.git include the new header files in Makefile.am and fix the double-char bug. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@232 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/ChangeLog b/ChangeLog index c0ba92cf5e..df5c74a779 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +1999-10-23 Lars Gullik Bjønnes + + * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h + and LOstream.h + + * src/lyxfunc.C (processKeyEvent): removed faulty line that made + lyx insert double chars. Fix spotted by Kayvan. + 1999-10-23 Asger Alstrup Nielsen * Fixed the tth support. I messed up with the Emacs patch apply feature diff --git a/src/lyxfunc.C b/src/lyxfunc.C index 29f96d8487..a3b0734b34 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -285,7 +285,6 @@ int LyXFunc::processKeyEvent(XEvent *ev) if (!(keyevent->state&ControlMask) && !(keyevent->state&Mod1Mask) && (isochar && keysym_return < 0xF000)) { - argument = s_r[0]; // shall this be here argument += isochar; } if (argument.empty()) { diff --git a/src/support/Makefile.am b/src/support/Makefile.am index bcdf36a577..b5b5537278 100644 --- a/src/support/Makefile.am +++ b/src/support/Makefile.am @@ -14,6 +14,8 @@ libsupport_a_SOURCES = \ FileInfo.C \ FileInfo.h \ LAssert.h \ + LIstream.h \ + LOstream.h \ filetools.C \ filetools.h \ lstrings.C \ @@ -27,4 +29,3 @@ libsupport_a_SOURCES = \ syscontr.h \ syssingleton.C \ textutils.h -