swedebugia writes: > The following code indents correctly: > def fun(arg): > if( > args.suppliername == "x"): > #do something > else: > #do something > > The following code does not indent correctly: > def fun(arg): > if( > args.suppliername == "Messingschlager" or > args.suppliercodename == "MS" > ): #<- culprit > #do something > else: #<- this else is not possible to indent 1 tab > #do something I tried this in Emacs 26.1 and Emacs 28, and both seem to indent the same, or am I missing something?