summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2007-08-01 01:18:37 +0000
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2007-08-01 01:18:37 +0000
commitaa96d4d57d2c5405e62d479492fa324f273646e9 (patch)
tree0cffe22d13e5dff3568bc77ff8515d3bb779f690 /lisp/cus-edit.el
parent6b8e7bc2ccbda8daf8f6ec16d69bfbe1339ae953 (diff)
downloademacs-aa96d4d57d2c5405e62d479492fa324f273646e9.tar.gz
emacs-aa96d4d57d2c5405e62d479492fa324f273646e9.tar.bz2
emacs-aa96d4d57d2c5405e62d479492fa324f273646e9.zip
Fix parent groups link
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el4
1 files changed, 2 insertions, 2 deletions
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."
;;; 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)))
@@ -4531,7 +4531,7 @@ If several parents are listed, go to the first of them."
(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)))))