Tom Ient writes: > When in OPascal mode, the left and right curly brackets (comment > delimiters) use different faces: the left curly bracket uses the > 'font-lock-comment-delimiter-face', while the right curly bracket uses > the 'font-lock-comment-face'. Both curly brackets should use the > 'font-lock-comment-delimiter-face'. For reference, Pascal mode > highlights both curly brackets with the correct face, > 'font-lock-comment-delimiter-face'. (I'm going through old bug reports that unfortunately got no response at the time.) There was unfortunately no test case, but I took the first example of Objective Pascal found on the internet and put into a buffer and switched to opascal-mode: Type Average = Object NumVal: Integer; Values: Array [1..200] of Real; Function Mean: Real; { calculates the average value of the array } End;