CVS update by didierv packages/xemacs-packages/eshell ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Tue Sep 4 05:00:08 EDT 2007


  User: didierv 
  Date: 07/09/04 11:00:08

  Modified:    packages/xemacs-packages/eshell ChangeLog esh-util.el
Log:
Misuse of the list widget type

Revision  Changes    Path
1.30      +9 -4      XEmacs/packages/xemacs-packages/eshell/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/eshell/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -p -r1.29 -r1.30
--- ChangeLog	2007/05/14 09:28:35	1.29
+++ ChangeLog	2007/09/04 09:00:06	1.30
@@ -1,3 +1,8 @@
+2007-09-04  Didier Verna  <didier at xemacs.org>
+
+	* esh-util.el (eshell-ange-ls-uids): Fix misuse of the list widget
+	type.
+
 2007-05-14  Norbert Koch  <viteno at xemacs.org>
 
 	* Makefile (VERSION): XEmacs package 1.11 released.
@@ -7,7 +12,7 @@
 	* esh-util.el (eshell-under-windows-p):
 	This function is used to determine whether .exe should be appended
 	to executable names when searching for them; this is as true of
-	cygwin32 as it is of windows-nt and ms-dos. 
+	cygwin32 as it is of windows-nt and ms-dos.
 
 2005-06-27  Norbert Koch  <viteno at xemacs.org>
 
@@ -16,7 +21,7 @@
 2005-06-26  Aidan Kehoe  <kehoea at parhasard.net>
 
 	* esh-mode.el (eshell-self-insert-command): Move the previous
-	change to use the get-character-of-keysym command instead. 
+	change to use the get-character-of-keysym command instead.
 
 2005-05-24  Norbert Koch  <viteno at xemacs.org>
 
@@ -27,8 +32,8 @@
 	* em-term.el:
 	* esh-mode.el (eshell-self-insert-command):
 	Prefer the character-of-keysym property to the ascii-character
-	property where appropriate. 
-	
+	property where appropriate.
+
 2005-01-17  Norbert Koch  <viteno at xemacs.org>
 
 	* Makefile (VERSION): XEmacs package 1.08 released.



1.5       +5 -5      XEmacs/packages/xemacs-packages/eshell/esh-util.el

Index: esh-util.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/eshell/esh-util.el,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -p -r1.4 -r1.5
--- esh-util.el	2007/05/13 17:07:18	1.4
+++ esh-util.el	2007/09/04 09:00:06	1.5
@@ -98,11 +98,11 @@ function `string-to-number'."
 
 (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 '(repeat (cons :tag "Host/User Pair"
+		       (string :tag "Hostname")
+		       (repeat (cons :tag "User/UID List"
+				     (string :tag "Username")
+				     (repeat :tag "UIDs" string)))))
   :group 'eshell-util)
 
 ;;; Internal Variables:





More information about the XEmacs-CVS mailing list