* riece-identity.el (riece-completing-read-identity): Don't signal
authorDaiki Ueno <ueno@unixuser.org>
Mon, 4 Apr 2005 07:25:40 +0000 (07:25 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Mon, 4 Apr 2005 07:25:40 +0000 (07:25 +0000)
an error when input string does not match riece-channel-regexp nor
riece-user-regexp.

lisp/ChangeLog
lisp/riece-identity.el

index c0b329f..da3f1f5 100644 (file)
@@ -1,5 +1,9 @@
 2005-04-04  Daiki Ueno  <ueno@unixuser.org>
 
 2005-04-04  Daiki Ueno  <ueno@unixuser.org>
 
+       * riece-identity.el (riece-completing-read-identity): Don't signal
+       an error when input string does not match riece-channel-regexp nor
+       riece-user-regexp.
+
        * riece-300.el (riece-handle-366-message): Don't use riece-user-regexp.
        (riece-handle-302-message): Ditto.
        (riece-handle-313-message): Ditto.
        * riece-300.el (riece-handle-366-message): Don't use riece-user-regexp.
        (riece-handle-302-message): Ditto.
        (riece-handle-313-message): Ditto.
index d86c09c..09c45bf 100644 (file)
@@ -178,10 +178,10 @@ The rest of arguments are the same as `completing-read'."
           predicate require-match initial history default))
         (identity
          (riece-parse-identity string)))
           predicate require-match initial history default))
         (identity
          (riece-parse-identity string)))
-    (unless (string-match (concat "^\\(" riece-channel-regexp "\\|"
-                                 riece-user-regexp "\\)")
-                         (riece-identity-prefix identity))
-      (error "Invalid channel name!"))
+;;;    (unless (string-match (concat "^\\(" riece-channel-regexp "\\|"
+;;;                              riece-user-regexp "\\)")
+;;;                      (riece-identity-prefix identity))
+;;;      (error "Invalid channel name!"))
     identity))
 
 (provide 'riece-identity)
     identity))
 
 (provide 'riece-identity)