Skip to content

Commit

Permalink
[#336] Fix broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed Jan 13, 2025
1 parent 543f6d6 commit 986a3d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The approach is as follows:
has finished running, check if the buffer has been modified since
it started; only apply the changes if not.
2. After running the code formatter, generate an [RCS
patch](https://tools.ietf.org/doc/tcllib/html/rcs.html#section4)
patch](https://web.archive.org/web/20220527003730/https://tools.ietf.org/doc/tcllib/html/rcs.html#section4)
showing the changes and then apply it to the buffer. This prevents
changes elsewhere in the buffer from moving point. If a patch
region happens to include point, then use a [dynamic programming
Expand Down
7 changes: 6 additions & 1 deletion apheleia-rcs.el
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ the following keys:
- `lines': number of lines to be inserted or removed
- `text': the string to be inserted, only for `addition'
See <https://tools.ietf.org/doc/tcllib/html/rcs.html#section4>
See
<https://web.archive.org/web/20220527003730/https://tools.ietf.org/doc/tcllib/html/rcs.html#section4>
for documentation on the RCS patch format."
(save-excursion
(goto-char (point-min))
Expand Down Expand Up @@ -206,3 +207,7 @@ contains the patch."
(provide 'apheleia-rcs)

;;; apheleia-rcs.el ends here

;; Local Variables:
;; byte-compile-docstring-max-column: 160
;; End:

0 comments on commit 986a3d3

Please sign in to comment.