comparison lisp/widget.el @ 20005:148cbe18165c

Delete vestigial autoloads.
author Karl Heuer <kwzh@gnu.org>
date Tue, 30 Sep 1997 07:17:32 +0000
parents e83bc8150072
children bbc6e91e6fa1
comparison
equal deleted inserted replaced
20004:de15e679191e 20005:148cbe18165c
64 :indent :size :value-to-external :validate :error :directory 64 :indent :size :value-to-external :validate :error :directory
65 :must-match :type-error :value-inline :inline :match-inline :greedy 65 :must-match :type-error :value-inline :inline :match-inline :greedy
66 :button-face-get :button-face :value-face :keymap :entry-from 66 :button-face-get :button-face :value-face :keymap :entry-from
67 :entry-to :help-echo :documentation-property :tab-order) 67 :entry-to :help-echo :documentation-property :tab-order)
68 68
69 ;; These autoloads should be deleted when the file is added to Emacs.
70 (unless (fboundp 'load-gc)
71 (autoload 'widget-apply "wid-edit")
72 (autoload 'widget-create "wid-edit")
73 (autoload 'widget-insert "wid-edit")
74 (autoload 'widget-prompt-value "wid-edit")
75 (autoload 'widget-browse "wid-browse" nil t)
76 (autoload 'widget-browse-other-window "wid-browse" nil t)
77 (autoload 'widget-browse-at "wid-browse" nil t)
78 (autoload 'widget-minor-mode "wid-browse" nil t))
79
80 (defun define-widget (name class doc &rest args) 69 (defun define-widget (name class doc &rest args)
81 "Define a new widget type named NAME from CLASS. 70 "Define a new widget type named NAME from CLASS.
82 71
83 NAME and CLASS should both be symbols, CLASS should be one of the 72 NAME and CLASS should both be symbols, CLASS should be one of the
84 existing widget types, or nil to create the widget from scratch. 73 existing widget types, or nil to create the widget from scratch.