From: Gerd Moellmann Date: Mon, 16 Jul 2001 11:52:56 +0000 (+0000) Subject: (set-variable): Require 'cus-edit' instead of X-Git-Tag: emacs-pretest-21.0.105~495 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=36755dd923b77e9aa58d61e49a5188caa026397b;p=emacs.git (set-variable): Require 'cus-edit' instead of `wid-edit', so that the Custom widgets get defined. --- diff --git a/lisp/simple.el b/lisp/simple.el index 4cde8642cf1..dec66469c10 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -3530,7 +3530,7 @@ in the definition is used to check that VALUE is valid." (let ((type (get var 'custom-type))) (when type ;; Match with custom type. - (require 'wid-edit) + (require 'cus-edit) (setq type (widget-convert type)) (unless (widget-apply type :match val) (error "Value `%S' does not match type %S of %S"