+2007-07-31 Drew Adams <drew.adams@oracle.com>
+
+ * cus-edit.el (custom-group-value-create, custom-goto-parent): Fix
+ parent groups link.
+
2007-07-31 Daiki Ueno <ueno@unixuser.org>
* faces.el (face-normalize-spec): New function.
;;; was made to display a group.
(when (eq level 1)
(if (custom-add-parent-links widget
- "Go to parent group:")
+ "Parent groups:")
(insert "\n"))))
;; Create level indicator.
(insert-char ?\ (* custom-buffer-indent (1- level)))
(interactive)
(save-excursion
(goto-char (point-min))
- (if (search-forward "\nGo to parent group: " nil t)
+ (if (search-forward "\nParent groups: " nil t)
(let* ((button (get-char-property (point) 'button))
(parent (downcase (widget-get button :tag))))
(customize-group parent)))))