GNU bug report logs -
#35018
26.1; Use diff as en ert-explainer for string=
Previous Next
Reported by: Pierre Neidhardt <mail <at> ambrevar.xyz>
Date: Wed, 27 Mar 2019 10:20:02 UTC
Severity: wishlist
Tags: wontfix
Found in version 26.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #10 received at control <at> debbugs.gnu.org (full text, mbox):
severity 35018 wishlist
quit
Pierre Neidhardt <mail <at> ambrevar.xyz> writes:
> I've just committed webfeeder.el to ELPA. In his review, Stefan Monnier
> suggested we merged the following code snippet upstream:
>
> (defun webfeeder--string=-explainer (string-a string-b)
> "Return the diff output of STRING-A and STRING-B"
> (unless (string= string-a string-b)
I guess a diff won't help so much for single line strings, so maybe the
condition should check for that? e.g.
(or (string= string-a string-b)
(not (string-match-p "\n" string-a))
(not (string-match-p "\n" string-b))
> (let (file-a file-b)
> (unwind-protect
> (let (result)
> (setq file-a (make-temp-file "webfeeder")
> file-b (make-temp-file "webfeeder"))
> (with-temp-file file-a
> (insert string-a))
> (with-temp-file file-b
> (insert string-b))
> (setq result
> (with-temp-buffer
> ;; The following generates a *Diff* buffer which is
> ;; convenient for coloration.
> (diff file-a file-b nil 'no-async)
> (diff-no-select file-a file-b nil 'no-async (current-buffer))
Isn't the diff-no-select redudant, since diff already calls it?
> (buffer-string)))
> result)
You don't need the 'result' variable here, just make the
(with-temp-buffer...) the last expression in the let (which could then
be converted to progn).
> (delete-file file-a)
> (delete-file file-b)))))
You should check that each of file-a and file-b are non-nil before
trying to delete (in case either make-temp-file signals an error).
This bug report was last modified 3 years and 223 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.