diff options
| author | Per Abrahamsen | 2003-12-27 16:41:13 +0000 |
|---|---|---|
| committer | Per Abrahamsen | 2003-12-27 16:41:13 +0000 |
| commit | cfa921fd39a965d78ee9ebfe8855afee524b1987 (patch) | |
| tree | ea2e2087ef7a3af5f220ead9f8649a49d4e7985b /lisp/cus-edit.el | |
| parent | c91406620cbf11dd9293ac52d6ee55f3dcf2a5fd (diff) | |
| download | emacs-cfa921fd39a965d78ee9ebfe8855afee524b1987.tar.gz emacs-cfa921fd39a965d78ee9ebfe8855afee524b1987.zip | |
2003-12-12 Jesper Harder <harder@ifa.au.dk>
* cus-edit.el (custom-add-parent-links): Define "many".
2003-12-08 Per Abrahamsen <abraham@dina.kvl.dk>
* wid-edit.el (widget-child-value-get, widget-child-value-inline)
(widget-child-validate, widget-type-value-create)
(widget-type-default-get, widget-type-match): New functions.
(lazy): New widget.
(menu-choice, checklist, radio-button-choice, editable-list)
(group, documentation-string): Removed redundant (per 2003-10-25
change) calls to `widget-children-value-delete'.
(widget-choice-value-get, widget-choice-value-inline): Removed
functions.
(menu-choice): Updated widget.
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 bf92e8df9cf..fc5e7ecb8af 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -1970,7 +1970,8 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"." | |||
| 1970 | (setq parents (cons symbol parents)))))) | 1970 | (setq parents (cons symbol parents)))))) |
| 1971 | (and (null (get symbol 'custom-links)) ;No links of its own. | 1971 | (and (null (get symbol 'custom-links)) ;No links of its own. |
| 1972 | (= (length parents) 1) ;A single parent. | 1972 | (= (length parents) 1) ;A single parent. |
| 1973 | (let ((links (get (car parents) 'custom-links))) | 1973 | (let* ((links (get (car parents) 'custom-links)) |
| 1974 | (many (> (length links) 2))) | ||
| 1974 | (when links | 1975 | (when links |
| 1975 | (insert "\nParent documentation: ") | 1976 | (insert "\nParent documentation: ") |
| 1976 | (while links | 1977 | (while links |