IDL Problem Code 111 with alias logical-or 
Want to disable me? Check out the configuration guide to learn more.
Warning Problem
This is a "problem" that gets reported to let users know how that behavior might not match what they expect.
When IDL's compile options are set to idl2, idl3, or logical_predicate, it changes the way that logical operations are handled.
This warning let's you know that you should use || instead of or with logical comparisons in if, case, or switch statements.
idl
compile_opt idl2
if a or b then print, 'True!
   ; ^^ warning appears hereTo correct, use || instead
idl
compile_opt idl2
if a || b then print, 'True!
   ; ^^ no warning