-
-
Notifications
You must be signed in to change notification settings - Fork 247
[Fix #277] Apply font-lock-comment-face to (comment) and #_ #354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
As I noted in the original I have some doubts about applying this to @expez What do you think? |
(goto-char start) | ||
(clojure-forward-logical-sexp 1) | ||
;; Data for (match-end 1). | ||
(setf (elt md 3) (point)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've almost never seen setf
in Emacs Lisp code (although it was quite popular in CL).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I almost always use it to destructively change a sequence or struct. :-)
It's considerably more convenient than something like (setcar (cdr (cdr (cdr md))) start)
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair enough. :-) I just said it's pretty uncommon.
Two more remarks - this needs a changelog entry and maybe there should be some config option about the |
I don't think we should font-lock I don't have time right now, but I think it would be a good idea to run a code search on github to check out how people are using |
I'll remove the comment macro support and just add an example on the docstring about how to support it. |
Sounds good to me. |
457a88b
to
948d82a
Compare
948d82a
to
51c8589
Compare
[Fix #277] Apply font-lock-comment-face to (comment) and #_
👍 |
No description provided.