File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ checkdoc: ## Check for missing or poorly formatted docstrings
49
49
--eval " (or (fboundp 'checkdoc-file) (kill-emacs))" \
50
50
--eval " (setq sentence-end-double-space nil)" \
51
51
--eval " (checkdoc-file \" $$ file\" )" 2>&1 \
52
+ | (grep -v " Warning (emacs): \\ ?$$ " || :) \
53
+ | (grep -v " Some lines are over 80 columns wide" || :) \
52
54
| grep . && exit 1 || true ; \
53
55
done
54
56
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ The approach is as follows:
28
28
has finished running, check if the buffer has been modified since
29
29
it started; only apply the changes if not.
30
30
2 . After running the code formatter, generate an [ RCS
31
- patch] ( https://tools.ietf.org/doc/tcllib/html/rcs.html#section4 )
31
+ patch] ( https://web.archive.org/web/20220527003730/https:// tools.ietf.org/doc/tcllib/html/rcs.html#section4 )
32
32
showing the changes and then apply it to the buffer. This prevents
33
33
changes elsewhere in the buffer from moving point. If a patch
34
34
region happens to include point, then use a [ dynamic programming
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ the following keys:
25
25
- `lines' : number of lines to be inserted or removed
26
26
- `text' : the string to be inserted, only for `addition'
27
27
28
- See <https://tools.ietf.org/doc/tcllib/html/rcs.html#section4>
28
+ See <https://web.archive.org/web/20220527003730/https:// tools.ietf.org/doc/tcllib/html/rcs.html#section4>
29
29
for documentation on the RCS patch format."
30
30
(save-excursion
31
31
(goto-char (point-min ))
@@ -206,3 +206,7 @@ contains the patch."
206
206
(provide 'apheleia-rcs )
207
207
208
208
; ;; apheleia-rcs.el ends here
209
+
210
+ ; ; Local Variables:
211
+ ; ; byte-compile-docstring-max-column: 160
212
+ ; ; End:
You can’t perform that action at this time.
0 commit comments