bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#26177: pcase spams me with useless and cryptic messages intended for


From: Paul Pogonyshev
Subject: bug#26177: pcase spams me with useless and cryptic messages intended for internal use
Date: Sun, 19 Mar 2017 22:54:43 +0100

To reproduce, evaluate this:

(defmacro kek (&rest more-cases)
  `(pcase it
     (`foo 1)
     ,@more-cases))

(defun lol (x)
  (--each x
    (kek))
  (--each x
    (kek (`baz 3))))

Observe that there is "pcase-memoize: equal first branch, yet
different" gibberish in *Messages* buffer.

Attached patch comments out this debug output.

Attachment: silence-pcase.diff
Description: Text document


reply via email to

[Prev in Thread] Current Thread [Next in Thread]