From: Vinicius Jose Latorre Date: Wed, 1 Aug 2007 01:18:37 +0000 (+0000) Subject: Fix parent groups link X-Git-Tag: emacs-pretest-22.1.90~1133 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=aa96d4d57d2c5405e62d479492fa324f273646e9;p=emacs.git Fix parent groups link --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 066ae1fef13..8eed90ca0e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-07-31 Drew Adams + + * cus-edit.el (custom-group-value-create, custom-goto-parent): Fix + parent groups link. + 2007-07-31 Daiki Ueno * 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." ;;; 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)))))