diff options
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r-- | lisp/cus-edit.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 6d47e607ae6..5fd93224f8a 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -2570,7 +2570,8 @@ try matching its doc string against `custom-guess-doc-alist'." ;; If we don't know the state, see if we need to edit it in lisp form. (unless state - (setq state (if (custom-show type value) 'unknown 'hidden))) + (with-suppressed-warnings ((obsolete custom-show)) + (setq state (if (custom-show type value) 'unknown 'hidden)))) (when (eq state 'unknown) (unless (widget-apply conv :match value) (setq form 'mismatch))) |