zippy
zippy

Reputation: 1258

How do I find the meaning of a particular fringe marking in emacs (c mode especially)?

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

Answers (1)

jeffkowalski
jeffkowalski

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

Related Questions