aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorVinicius Jose Latorre2007-08-01 01:18:37 +0000
committerVinicius Jose Latorre2007-08-01 01:18:37 +0000
commitaa96d4d57d2c5405e62d479492fa324f273646e9 (patch)
tree0cffe22d13e5dff3568bc77ff8515d3bb779f690 /lisp
parent6b8e7bc2ccbda8daf8f6ec16d69bfbe1339ae953 (diff)
downloademacs-aa96d4d57d2c5405e62d479492fa324f273646e9.tar.gz
emacs-aa96d4d57d2c5405e62d479492fa324f273646e9.zip
Fix parent groups link
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/cus-edit.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 066ae1fef13..8eed90ca0e8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-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
12007-07-31 Daiki Ueno <ueno@unixuser.org> 62007-07-31 Daiki Ueno <ueno@unixuser.org>
2 7
3 * faces.el (face-normalize-spec): New function. 8 * faces.el (face-normalize-spec): New function.
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index b75f780097b..ed9db15a7cf 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -3935,7 +3935,7 @@ If GROUPS-ONLY non-nil, return only those members that are groups."
3935 ;;; was made to display a group. 3935 ;;; was made to display a group.
3936 (when (eq level 1) 3936 (when (eq level 1)
3937 (if (custom-add-parent-links widget 3937 (if (custom-add-parent-links widget
3938 "Go to parent group:") 3938 "Parent groups:")
3939 (insert "\n")))) 3939 (insert "\n"))))
3940 ;; Create level indicator. 3940 ;; Create level indicator.
3941 (insert-char ?\ (* custom-buffer-indent (1- level))) 3941 (insert-char ?\ (* custom-buffer-indent (1- level)))
@@ -4531,7 +4531,7 @@ If several parents are listed, go to the first of them."
4531 (interactive) 4531 (interactive)
4532 (save-excursion 4532 (save-excursion
4533 (goto-char (point-min)) 4533 (goto-char (point-min))
4534 (if (search-forward "\nGo to parent group: " nil t) 4534 (if (search-forward "\nParent groups: " nil t)
4535 (let* ((button (get-char-property (point) 'button)) 4535 (let* ((button (get-char-property (point) 'button))
4536 (parent (downcase (widget-get button :tag)))) 4536 (parent (downcase (widget-get button :tag))))
4537 (customize-group parent))))) 4537 (customize-group parent)))))