fix startup failure

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3477 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-02-04 10:41:30 +00:00
parent e173216d0a
commit 41b2f113d7
6 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-02-04 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* README: change reference to bugtracker
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* configure.in (ALL_LINGUAS): add slovak

2
README
View File

@ -192,7 +192,7 @@ How do I submit a bug report?
You'll find detailed info on submitting bug reports there.
If you can't do that, send details to the LyX Developers mailing
list, or use the LyX bug tracker at http://lyxbugs.sf.net/.
list, or use the LyX bug tracker at http://bugzilla.lyx.org/.
Don't forget to mention which version you are having problems with!
How can I participate in the development of LyX?

1
lib/configure vendored
View File

@ -1170,6 +1170,7 @@ if test "$TOXPM" = "convert"; then
eps_to_xpm="convert EPS:\$\$i XPM:\$\$o"
jpg_to_xpm="convert JPG:\$\$i XPM:\$\$o"
png_to_xpm="convert PNG:\$\$i XPM:\$\$o"
ps_to_xpm="convert PS:\$\$i XPM:\$\$o"
fi
echo $ac_n "checking For an EPS -> PDF converter""... $ac_c"

View File

@ -86,7 +86,7 @@ GC LyXColorHandler::getGCForeground(LColor::color c)
if (XLookupColor(display, colormap, s.c_str(), &xcol, &ccol) == 0) {
lyxerr << _("LyX: Unknown X11 color ") << s
<< _(" for ") << lcolor.getGUIName(c) << '\n'
<< _(" Using black instead, sorry!.") << endl;
<< _(" Using black instead, sorry!") << endl;
unsigned long bla = BlackPixel(display,
DefaultScreen(display));
val.foreground = bla;

View File

@ -1,3 +1,8 @@
2002-02-04 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* filetools.C (FileOpenSearch): remove duplicated line, probably
resulting from bad cut-and paste.
2002-01-31 Herbert Voss <voss@perce.de>
* filetools.[Ch]: add getExtFromContents(), which returns

View File

@ -186,7 +186,6 @@ string const FileOpenSearch (string const & path, string const & name,
do {
tmppath = split(tmppath, path_element, ';');
} while (!tmppath.empty() && path_element.empty());
tmppath = split(tmppath, path_element, ';');
} else {
notfound = false;
}