* liece.el (liece-server-parse-string): Fix regexp problem.
(defun liece-server-parse-string (string)
"Convert a STRING set as `liece-server' and return a property list."
- (when (or (string-match "^\\([^:]+\\):?\\([0-9]*\\)" string)
- (string-match "^[\\([^\\[]+\\)]:?\\([0-9]*\\)" string))
+ (when (or (string-match "^\\[\\([^]]+\\)\\]:?\\([0-9]*\\)" string)
+ (string-match "^\\([^:]+\\):?\\([0-9]*\\)" string))
(let ((host (match-string 1 string))
(service (match-string 2 string))
(password (substring string (match-end 0)))