]> git.lyx.org Git - features.git/commitdiff
include the new header files in Makefile.am and fix the double-char bug.
authorLars Gullik Bjønnes <larsbj@gullik.org>
Sat, 23 Oct 1999 17:26:19 +0000 (17:26 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Sat, 23 Oct 1999 17:26:19 +0000 (17:26 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@232 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/lyxfunc.C
src/support/Makefile.am

index c0ba92cf5e9a5da55501f6c5d74916831a733220..df5c74a7790fc395b7b0840aa40430034ad20201 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
+
+       * 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  <alstrup@alstrup.galaxy.dk>
 
        * Fixed the tth support. I messed up with the Emacs patch apply feature
index 29f96d8487371e74053442065f6968f67ef4b46b..a3b0734b34a998b8da9c3d862073707fe8f0bd4c 100644 (file)
@@ -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()) {
index bcdf36a57748ea3336e87025a8110ffad4b5e95f..b5b553727828aa8a7f293a542c3dd13a654cd9b8 100644 (file)
@@ -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
-