branch: elpa/aidermacs
commit b641c16de58d5d4b6cca4b9ef3250048ed7f334d
Author: Mingde (Matthew) Zeng <matthew...@posteo.net>
Commit: Mingde (Matthew) Zeng <matthew...@posteo.net>

    Fix linting
---
 aidermacs.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/aidermacs.el b/aidermacs.el
index 3e654bb663..34bbd7e0c8 100644
--- a/aidermacs.el
+++ b/aidermacs.el
@@ -103,9 +103,8 @@ This is the file name without path."
   "History list for aidermacs read string inputs.")
 
 (defvar-local aidermacs--pre-edit-file-buffers nil
-  "Alist of (filename . temp-buffer) pairs storing file state before Aider 
edits.
-These buffers contain the original content of files that might be modified by 
Aider.
-Instead of writing to temporary files, we keep the original content in memory 
buffers.")
+  "Alist of (filename . temp-buffer) storing file state before Aider edits.
+These contain the original content of files that might be modified by Aider.")
 
 
 ;;;###autoload
@@ -410,7 +409,7 @@ pre-edit state stored in temporary buffers."
       (aidermacs--cleanup-temp-buffers))))
 
 (defun aidermacs--show-ediff-for-file (file)
-  "Uses the pre-edit buffer stored in memory to compare with the current file 
state."
+  "Uses the pre-edit buffer stored to compare with the current FILE state."
   (let* ((full-path (expand-file-name file (aidermacs-project-root)))
          (pre-edit-pair (assoc full-path aidermacs--pre-edit-file-buffers))
          (pre-edit-buffer (and pre-edit-pair (cdr pre-edit-pair))))

Reply via email to