2002-02-15 Per Abrahamsen <abraham@dina.kvl.dk>

* wid-edit.el (widgetp): Made it more robuts.
This commit is contained in:
Per Abrahamsen 2002-02-15 08:04:23 +00:00
parent 735688c252
commit bbc562cc09
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
* wid-edit.el (widgetp): Made it more robuts.
2002-02-14 Per Abrahamsen <abraham@dina.kvl.dk>
* facemenu.el (describe-text-done): New function.

View file

@ -474,7 +474,8 @@ new value.")
(if (symbolp widget)
(get widget 'widget-type)
(and (consp widget)
(get (widget-type widget) 'widget-type))))
(symbolp (car widget))
(get (car widget) 'widget-type))))
(defun widget-get-indirect (widget property)
"In WIDGET, get the value of PROPERTY.