This is best described on an example. Let's say you have the following C source file:
if (something is true)
{
meh();
} else if (something else is true) {
foo();
} else { // something even different must be true
bar();
}
Now in emacs, when you type the last }, it will say Matches } else {.
How can I make it say the whole line, ie. Matches } else { // something even different must be true?
Thanks in advance.