mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-12 19:38:18 +00:00
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
This commit is contained in:
parent
46787557fb
commit
dc05712c01
@ -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>
|
1999-10-23 Asger Alstrup Nielsen <alstrup@alstrup.galaxy.dk>
|
||||||
|
|
||||||
* Fixed the tth support. I messed up with the Emacs patch apply feature
|
* Fixed the tth support. I messed up with the Emacs patch apply feature
|
||||||
|
@ -285,7 +285,6 @@ int LyXFunc::processKeyEvent(XEvent *ev)
|
|||||||
if (!(keyevent->state&ControlMask) &&
|
if (!(keyevent->state&ControlMask) &&
|
||||||
!(keyevent->state&Mod1Mask) &&
|
!(keyevent->state&Mod1Mask) &&
|
||||||
(isochar && keysym_return < 0xF000)) {
|
(isochar && keysym_return < 0xF000)) {
|
||||||
argument = s_r[0]; // shall this be here
|
|
||||||
argument += isochar;
|
argument += isochar;
|
||||||
}
|
}
|
||||||
if (argument.empty()) {
|
if (argument.empty()) {
|
||||||
|
@ -14,6 +14,8 @@ libsupport_a_SOURCES = \
|
|||||||
FileInfo.C \
|
FileInfo.C \
|
||||||
FileInfo.h \
|
FileInfo.h \
|
||||||
LAssert.h \
|
LAssert.h \
|
||||||
|
LIstream.h \
|
||||||
|
LOstream.h \
|
||||||
filetools.C \
|
filetools.C \
|
||||||
filetools.h \
|
filetools.h \
|
||||||
lstrings.C \
|
lstrings.C \
|
||||||
@ -27,4 +29,3 @@ libsupport_a_SOURCES = \
|
|||||||
syscontr.h \
|
syscontr.h \
|
||||||
syssingleton.C \
|
syssingleton.C \
|
||||||
textutils.h
|
textutils.h
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user