Reputation: 1258
There are various fringe markings that show up in c-mode in emacs (24.4.1). By inference I've figured out that the yellow >> is a warning of some sort, whereas the red >> is an error. But I'd like to be able to know explicitly what the c-mode syntax evaluator thinks is actually the reason why it's marked that line in the fringe. How do I find this out? I've tried clicking on the fringe. Is there some command I can run when placing my cursor on that line?
Upvotes: 1
Views: 109
Reputation: 354
Fringe marks for any line can be listed with (fringe-marks-at-pos)
. For more information on that function, see the manual.
Upvotes: 0