Whitespace.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8705 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2004-04-29 07:58:52 +00:00
parent b03580df17
commit 306248fe6c

View File

@ -101,12 +101,12 @@ string normalize_name(Buffer const & buffer, OutputParams const & runparams,
string const fname = MakeAbsPath(name, buffer.filePath()); string const fname = MakeAbsPath(name, buffer.filePath());
if (AbsolutePath(name) || !IsFileReadable(fname + ext)) if (AbsolutePath(name) || !IsFileReadable(fname + ext))
return name; return name;
else if (!runparams.nice) else if (!runparams.nice)
return fname; return fname;
else else
return MakeRelPath(fname, buffer.getMasterBuffer()->filePath()); return MakeRelPath(fname, buffer.getMasterBuffer()->filePath());
} }
} }
@ -154,7 +154,7 @@ int InsetBibtex::latex(Buffer const & buffer, ostream & os,
if (!style.empty()) { if (!style.empty()) {
os << "\\bibliographystyle{" os << "\\bibliographystyle{"
<< os::external_path(normalize_name(buffer, runparams, << os::external_path(normalize_name(buffer, runparams,
style, ".bst")) style, ".bst"))
<< "}\n"; << "}\n";
i += 1; i += 1;