-
-
Notifications
You must be signed in to change notification settings - Fork 247
Fix #438 and better detection of doc-strings. #442
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
You made a typo in the first commit message. As for the second - I'd replace "Better" with "Improve the" for the sake of consistency with our commit message style. |
clojure-mode.el
Outdated
@@ -584,7 +583,14 @@ If JUSTIFY is non-nil, justify as well as fill the paragraph." | |||
(concat paragraph-separate "\\|\\s-*\".*[,\\.]$")) | |||
(fill-column (or clojure-docstring-fill-column fill-column)) | |||
(fill-prefix (clojure-docstring-fill-prefix))) | |||
(fill-paragraph justify)) | |||
(let* ((beg (nth 8 (syntax-ppss))) |
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'd add some comment here explaining what this code does. Even I forget from time to time the behavior of functions like syntax-ppss
, which is pretty easy with a name like this and absurd return values.
I guess it's time to change the glasses :/ Addressing comments and adding a small fix to the Makefile. |
@bbatsov ping ;) |
pong :-) |
No description provided.