* riece-guess.el (riece-guess-channel-try-functions): Default to
authorDaiki Ueno <ueno@unixuser.org>
Fri, 29 Aug 2003 01:31:38 +0000 (01:31 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Fri, 29 Aug 2003 01:31:38 +0000 (01:31 +0000)
nil.
(riece-default-guess-channel): Abolish.
(riece-command-guess-switch-to-channel): Reconstruct
riece-guess-candidates when it is empty.

lisp/ChangeLog
lisp/riece-guess.el

index 2624de0..2dc7293 100644 (file)
@@ -1,3 +1,11 @@
+2003-08-29  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-guess.el (riece-guess-channel-try-functions): Default to
+       nil.
+       (riece-default-guess-channel): Abolish.
+       (riece-command-guess-switch-to-channel): Reconstruct
+       riece-guess-candidates when it is empty.
+
 2003-08-28  Daiki Ueno  <ueno@unixuser.org>
 
        * riece-highlight.el (riece-dialogue-change-face): Use defvar to
 2003-08-28  Daiki Ueno  <ueno@unixuser.org>
 
        * riece-highlight.el (riece-dialogue-change-face): Use defvar to
index 3112ce9..2a5371d 100644 (file)
   :prefix "riece-"
   :group 'riece)
 
   :prefix "riece-"
   :group 'riece)
 
-(defcustom riece-guess-channel-try-functions
-  '(riece-default-guess-channel)
+(defcustom riece-guess-channel-try-functions nil
   "Functions which returns a list of channels the user wants to switch."
   :type '(repeat function)
   :group 'riece-guess)
 
 (defvar riece-current-channels)
   "Functions which returns a list of channels the user wants to switch."
   :type '(repeat function)
   :group 'riece-guess)
 
 (defvar riece-current-channels)
-(defun riece-default-guess-channel ()
-  (delq nil (copy-sequence riece-current-channels)))
 
 (defun riece-guess-candidates ()
 
 (defun riece-guess-candidates ()
-  "Call \\[riece-guess-channel-try-functions] in turn and merge the results."
+  "Build candidate list.
+This function calls \\[riece-guess-channel-try-functions] in turn and
+merge the results."
   (let ((functions riece-guess-channel-try-functions)
        candidates)
     (while functions
   (let ((functions riece-guess-channel-try-functions)
        candidates)
     (while functions
            (nconc candidates
                   (delq nil (mapcar
                              (lambda (channel)
            (nconc candidates
                   (delq nil (mapcar
                              (lambda (channel)
-                               (if (riece-identity-member channel candidates)
-                                   nil
+                               (unless (riece-identity-member
+                                        channel candidates)
                                  channel))
                              (funcall (car functions)))))
            functions (cdr functions)))
                                  channel))
                              (funcall (car functions)))))
            functions (cdr functions)))
+    ;; Merge the default.
+    (setq candidates
+         (nconc candidates
+                (delq nil (mapcar
+                           (lambda (channel)
+                             (if (and channel
+                                      (not (riece-identity-member
+                                            channel candidates)))
+                                 channel))
+                           riece-current-channels))))
     candidates))
 
 (defvar riece-guess-candidates nil)
     candidates))
 
 (defvar riece-guess-candidates nil)
@@ -63,7 +72,8 @@
 (defun riece-command-guess-switch-to-channel ()
   "Try to switch to the channel where the user is interested in."
   (interactive)
 (defun riece-command-guess-switch-to-channel ()
   "Try to switch to the channel where the user is interested in."
   (interactive)
-  (unless (eq last-command this-command)
+  (unless (and (eq last-command this-command)
+              riece-guess-candidates)
     (setq riece-guess-candidates (riece-guess-candidates)))
   (unless riece-guess-candidates
     (error "No channel"))
     (setq riece-guess-candidates (riece-guess-candidates)))
   (unless riece-guess-candidates
     (error "No channel"))