diff libinterp/corefcn/variables.cc @ 25951:7a507e71d922 stable

style fixes * Canvas.cc, Figure.cc, dialog.cc, octave-qscintilla.cc, tab-bar.cc, variable-editor.cc, gl-render.cc, graphics.cc, load-path.cc, oct-stream.cc, variables.cc, jit-typeinfo.cc: Break long lines before && and || operators.
author John W. Eaton <jwe@octave.org>
date Fri, 19 Oct 2018 12:38:01 -0400
parents 1c4ffd4f9404
children 12d4271aed87
line wrap: on
line diff
--- a/libinterp/corefcn/variables.cc	Fri Oct 19 12:28:06 2018 -0400
+++ b/libinterp/corefcn/variables.cc	Fri Oct 19 12:38:01 2018 -0400
@@ -381,8 +381,8 @@
   bool search_builtin = type == "builtin";
   bool search_class = type == "class";
 
-  if (! (search_any || search_var || search_dir || search_file ||
-         search_builtin || search_class))
+  if (! (search_any || search_var || search_dir || search_file
+         || search_builtin || search_class))
     error (R"(exist: unrecognized type argument "%s")", type.c_str ());
 
   octave::symbol_table& symtab = interp.get_symbol_table ();