# HG changeset patch # User Gerd Moellmann # Date 979146051 0 # Node ID d434b679c77b8a6392e4fcbf26cc907ab8198002 # Parent afe5cbe595f54044d063ee9cba11e548f9fde6e6 (eshell-ange-ls-uids): Fix :type. diff -r afe5cbe595f5 -r d434b679c77b lisp/eshell/esh-util.el --- 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 @@ -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: