diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fceef2353de..d98ca272e16 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-07-31 Drew Adams <drew.adams@oracle.com> | ||
| 2 | |||
| 3 | * cus-edit.el (custom-group-value-create, custom-goto-parent): Fix | ||
| 4 | parent groups link. | ||
| 5 | |||
| 1 | 2007-07-31 Paul Pogonyshev <pogonyshev@gmx.net> | 6 | 2007-07-31 Paul Pogonyshev <pogonyshev@gmx.net> |
| 2 | 7 | ||
| 3 | * progmodes/python.el (python-current-defun): Adjust to never fall | 8 | * progmodes/python.el (python-current-defun): Adjust to never fall |
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index ff86711e041..78b402c9c0a 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -3878,7 +3878,7 @@ If GROUPS-ONLY non-nil, return only those members that are groups." | |||
| 3878 | ;;; was made to display a group. | 3878 | ;;; was made to display a group. |
| 3879 | (when (eq level 1) | 3879 | (when (eq level 1) |
| 3880 | (if (custom-add-parent-links widget | 3880 | (if (custom-add-parent-links widget |
| 3881 | "Parent group:") | 3881 | "Parent groups:") |
| 3882 | (insert "\n")))) | 3882 | (insert "\n")))) |
| 3883 | ;; Create level indicator. | 3883 | ;; Create level indicator. |
| 3884 | (insert-char ?\ (* custom-buffer-indent (1- level))) | 3884 | (insert-char ?\ (* custom-buffer-indent (1- level))) |
| @@ -4480,7 +4480,7 @@ If several parents are listed, go to the first of them." | |||
| 4480 | (interactive) | 4480 | (interactive) |
| 4481 | (save-excursion | 4481 | (save-excursion |
| 4482 | (goto-char (point-min)) | 4482 | (goto-char (point-min)) |
| 4483 | (if (search-forward "\nGo to parent group: " nil t) | 4483 | (if (search-forward "\nParent groups: " nil t) |
| 4484 | (let* ((button (get-char-property (point) 'button)) | 4484 | (let* ((button (get-char-property (point) 'button)) |
| 4485 | (parent (downcase (widget-get button :tag)))) | 4485 | (parent (downcase (widget-get button :tag)))) |
| 4486 | (customize-group parent))))) | 4486 | (customize-group parent))))) |