Skip to content

Commit 30b19fa

Browse files
authoredJan 13, 2025··
[#336] Fix broken link (#340)
Close #336
1 parent 543f6d6 commit 30b19fa

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 

‎Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ checkdoc: ## Check for missing or poorly formatted docstrings
4949
--eval "(or (fboundp 'checkdoc-file) (kill-emacs))" \
5050
--eval "(setq sentence-end-double-space nil)" \
5151
--eval "(checkdoc-file \"$$file\")" 2>&1 \
52+
| (grep -v "Warning (emacs): \\?$$" ||:) \
53+
| (grep -v "Some lines are over 80 columns wide" ||:) \
5254
| grep . && exit 1 || true ;\
5355
done
5456

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The approach is as follows:
2828
has finished running, check if the buffer has been modified since
2929
it started; only apply the changes if not.
3030
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)
3232
showing the changes and then apply it to the buffer. This prevents
3333
changes elsewhere in the buffer from moving point. If a patch
3434
region happens to include point, then use a [dynamic programming

‎apheleia-rcs.el

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ the following keys:
2525
- `lines': number of lines to be inserted or removed
2626
- `text': the string to be inserted, only for `addition'
2727
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>
2929
for documentation on the RCS patch format."
3030
(save-excursion
3131
(goto-char (point-min))
@@ -206,3 +206,7 @@ contains the patch."
206206
(provide 'apheleia-rcs)
207207

208208
;;; apheleia-rcs.el ends here
209+
210+
;; Local Variables:
211+
;; byte-compile-docstring-max-column: 160
212+
;; End:

0 commit comments

Comments
 (0)
Please sign in to comment.