summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2021-05-22 13:22:29 +0100
committerBasil L. Contovounesios <contovob@tcd.ie>2021-05-22 13:22:29 +0100
commit43fd13770a8ac8452669e4de3281e9189cb36c5a (patch)
tree93354d27dd3ff2dc8d0694be2469b57e6efbc33a /lisp/emacs-lisp
parent33a52cb45832d4041b6f0db78ee289ba9aca0f64 (diff)
downloademacs-43fd13770a8ac8452669e4de3281e9189cb36c5a.tar.gz
emacs-43fd13770a8ac8452669e4de3281e9189cb36c5a.tar.bz2
emacs-43fd13770a8ac8452669e4de3281e9189cb36c5a.zip
Fix native-comp-async-report-warnings-errors :type
* doc/lispref/compile.texi (Native-Compilation Variables): Document 'silent' alternative of native-comp-async-report-warnings-errors. * lisp/emacs-lisp/comp.el (native-comp-async-report-warnings-errors): Fix quoting in :type expression (bug#48586).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 8c638312b05..b09739cb92e 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -154,7 +154,7 @@ buffer."
:type '(choice
(const :tag "Do not report warnings" nil)
(const :tag "Report and display warnings" t)
- (const :tag "Report but do not display warnings" 'silent))
+ (const :tag "Report but do not display warnings" silent))
:version "28.1")
(defcustom native-comp-async-query-on-exit nil