changeset 35209:d434b679c77b

(eshell-ange-ls-uids): Fix :type.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 10 Jan 2001 17:00:51 +0000
parents afe5cbe595f5
children 9c0daf298e13
files lisp/eshell/esh-util.el
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/eshell/esh-util.el	Wed Jan 10 16:58:11 2001 +0000
+++ b/lisp/eshell/esh-util.el	Wed Jan 10 17:00:51 2001 +0000
@@ -1,6 +1,6 @@
 ;;; esh-util --- general utilities
 
-;; Copyright (C) 1999, 2000 Free Software Foundation
+;; Copyright (C) 1999, 2000, 2001 Free Software Foundation
 
 ;; Author: John Wiegley <johnw@gnu.org>
 
@@ -98,11 +98,10 @@
 
 (defcustom eshell-ange-ls-uids nil
   "*List of user/host/id strings, used to determine remote ownership."
-  :type '(list (cons :tag "Host/User Pair"
-		     (string :tag "Hostname")
-		     (repeat (cons :tag "User/UID List"
-				   (string :tag "Username")
-				   (repeat :tag "UIDs" string)))))
+  :type '(alist :key-type (string :tag "Hostname")
+		:value-type (alist :tag "User/UID List"
+				   :key-type (string :tag "Username")
+				   :value-type (repeat :tag "UIDs" string)))
   :group 'eshell-util)
 
 ;;; Internal Variables: