It may be worth verifying if this is the case under 21.1 also. I think
there are still some outages with the syntax tables under 21.4
andy
At 05:08 PM 8/24/2001 -0500, Charles G Waldman wrote:
A colleague of mine just pointed out the following:
If you have a C++ file containing
int foo()
time_t bar()
then, as expected, "int" and "time_t" are displayed in
font-lock-type-face, and "foo" and "bar" are displayed in
font-lock-function-name face.
However, if you have this inside a class
class C {
private:
int foo();
time_t bar();
}
then "int foo" is displayed correctly, but
"time_t" and "bar" are displayed in the
default face.
Is this a known bug?