Hi,
Interestingly enough, if I try to grep through my .emacs.d to find find internal--with-suppressed-warnings, I get no coincidence:
~ ➤ find .emacs.d -name \*.el -exec grep -H internal--with-suppressed-warnings {} \;
~ ➤
but when I grep through the emacs source:
paag@multi-edit:~/emacs$ find emacs -name \*.el -exec grep -H internal--with-suppressed-warnings {} \;
emacs/lisp/emacs-lisp/bytecomp.el: ;; Later `internal--with-suppressed-warnings' binds it again, this
emacs/lisp/emacs-lisp/bytecomp.el: `(internal--with-suppressed-warnings
emacs/lisp/emacs-lisp/bytecomp.el:(put 'internal--with-suppressed-warnings 'byte-hunk-handler
emacs/lisp/emacs-lisp/bytecomp.el:(byte-defop-compiler-1 internal--with-suppressed-warnings
It might not be native compile, but...
Scratching my head...
/PA