]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve documentation of 'with-suppressed-warnings'.
authorPhilipp Stephani <phst@google.com>
Fri, 8 May 2020 20:12:07 +0000 (22:12 +0200)
committerPhilipp Stephani <phst@google.com>
Fri, 8 May 2020 20:12:07 +0000 (22:12 +0200)
* lisp/emacs-lisp/byte-run.el (with-suppressed-warnings): Refer to
'byte-compile-warnings' instead of 'byte-compile-warning-types', as
only the former variable documents the available warning types.

lisp/emacs-lisp/byte-run.el

index 6a49c60099d119c126119ba20db2afb8d8a9ace3..70fe06085dc2e28ded46e5404c086a24b8343cb8 100644 (file)
@@ -513,11 +513,12 @@ wrong number of parameters, say
   (zot 1 2))
 
 The warnings that can be suppressed are a subset of the warnings
-in `byte-compile-warning-types'; see this variable for a fuller
-explanation of the warning types.  The types that can be
-suppressed with this macro are `free-vars', `callargs',
-`redefine', `obsolete', `interactive-only', `lexical', `mapcar',
-`constants' and `suspicious'.
+in `byte-compile-warning-types'; see the variable
+`byte-compile-warnings' for a fuller explanation of the warning
+types.  The types that can be suppressed with this macro are
+`free-vars', `callargs', `redefine', `obsolete',
+`interactive-only', `lexical', `mapcar', `constants' and
+`suspicious'.
 
 For the `mapcar' case, only the `mapcar' function can be used in
 the symbol list.  For `suspicious', only `set-buffer' can be used."