emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

unnecessary (require 'cus-edit) in set-variable?


From: Drew Adams
Subject: unnecessary (require 'cus-edit) in set-variable?
Date: Wed, 5 Dec 2007 11:12:26 -0800

The definition of `set-variable' contains this code:

(let ((type (get variable 'custom-type)))
    (when type
      ;; Match with custom type.
      (require 'cus-edit)
      (setq type (widget-convert type))
      (unless (widget-apply type :match value)
 (error "Value `%S' does not match type %S of %S"
        value (car type) variable))))

I don't understand the (require 'cus-edit), since there is nothing in
cus-edit.el that is called here.  Should it be removed? If not, why
is it needed?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]