Skip to content

Commit

Permalink
address byte-compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
anticomputer committed Jan 2, 2023
1 parent 849b859 commit e938c8a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions age.el
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ question, and the callback data (if any)."
:noquery t))))
(setf (age-context-process context) process)))

(defun age--process-stdout-filter (_process _input)
(defun age--process-stdout-filter (_process input)
"Filter for age client process stdout."
(when age-debug
(message "debug: age stdout: %s" input)))
Expand Down Expand Up @@ -1121,7 +1121,8 @@ of the function `insert-file-contents'."

(defun age-file--replace-text (string file visit beg end)
"Replace text with STRING for filename FILE.
The VISIT, BEG, END arguments are as described in the function `age-file-decode-and-insert'"
The VISIT, BEG, END arguments are as described in the function
`age-file-decode-and-insert'"
;; The idea here is that we want to replace the text in the buffer
;; (for instance, for a `revert-buffer'), but we want to touch as
;; little of the text as possible. So we compare the new and the
Expand Down

0 comments on commit e938c8a

Please sign in to comment.