Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to search for regular expressions within a c/c++ buffer, but I want to avoid expression matching a comment region. Is there a way using the c mode to know if a bunch of text is within a comment region (or a point is within a comment region)?

share|improve this question
1  
Doing something similar I ended up checking the face at point, but I don't know of any ready-made function that would do that. – wvxvw Oct 10 '12 at 10:21

2 Answers

up vote 8 down vote accepted

The way to figure that out is with syntax-ppss which works in C/C++ and most major modes. E.g. (null (nth 8 (syntax-ppss))) will be non-nil if and only if you're not within a string-or-comment.

share|improve this answer

https://gist.github.com/3864938

share|improve this answer
2  
Please provide more than just a link. – skolima Oct 10 '12 at 11:32
3  
You can fix your answer by pasting the code here. This way the answer will still be useful after the link has rotted. – event_jr Oct 10 '12 at 11:54
If you like it, why not copying it, it's free. – Andreas Röhler Oct 10 '12 at 15:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.