When I use yasnippet, I keep getting this error:
Warning (yasnippet): `foo-snippet' modified buffer in a backquote expression.
To hide this warning, add (yasnippet backquote-change) to `warning-suppress-types'.
I added this line to my config:
(setq warning-suppress-types (quote ((\(yasnippet\ backquote-change\)))))
But it doesn't seem to have worked.
Debugger entered--Lisp error: (void-variable warning-suppress-types) (member (quote (yasnippet backquote-change))
– incandescentman Jul 12 '16 at 04:20M-x describe-variable <ret> warning-suppress-types <ret>
? – Gastove Jul 15 '16 at 17:00(eval-after-load 'warnings ...)
, or needs a(require 'warnings)
first. – npostavs Jun 14 '17 at 17:50