mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix stupid use of "or".
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18496 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
66e5f1bf39
commit
5fed0e44ed
@ -233,7 +233,7 @@ bool isVerbatim(InsetCommandParams const & params)
|
||||
bool isInputOrInclude(InsetCommandParams const & params)
|
||||
{
|
||||
Types const t = type(params);
|
||||
return (t == INPUT) or (t == INCLUDE);
|
||||
return (t == INPUT) || (t == INCLUDE);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user