* riece-filter.el (riece-handle-message): Use
authorDaiki Ueno <ueno@unixuser.org>
Wed, 17 Aug 2005 00:51:31 +0000 (00:51 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Wed, 17 Aug 2005 00:51:31 +0000 (00:51 +0000)
riece-funcall-ignore-errors instead of riece-ignore-errors.

* riece-ctcp.el (riece-handle-ctcp-request): Use
riece-funcall-ignore-errors instead of riece-ignore-errors.
(riece-handle-ctcp-response): Ditto.

lisp/ChangeLog
lisp/riece-ctcp.el
lisp/riece-filter.el

index 798123a..5fc2b20 100644 (file)
@@ -1,3 +1,12 @@
+2005-08-17  Daiki Ueno  <ueno@unixuser.org>
+
+       * riece-filter.el (riece-handle-message): Use
+       riece-funcall-ignore-errors instead of riece-ignore-errors.
+
+       * riece-ctcp.el (riece-handle-ctcp-request): Use
+       riece-funcall-ignore-errors instead of riece-ignore-errors.
+       (riece-handle-ctcp-response): Ditto.
+
 2005-08-16  Daiki Ueno  <ueno@unixuser.org>
 
        * riece-options.el (riece-data-directory): Use load-file-name.
 2005-08-16  Daiki Ueno  <ueno@unixuser.org>
 
        * riece-options.el (riece-data-directory): Use load-file-name.
index 45eebf8..7e1948c 100644 (file)
                  (after-hook
                   (intern (concat "riece-ctcp-after-" request
                                   "-request-hook"))))
                  (after-hook
                   (intern (concat "riece-ctcp-after-" request
                                   "-request-hook"))))
-             (unless (riece-ignore-errors (symbol-name hook)
-                       (run-hook-with-args-until-success
-                        hook prefix (car targets) message))
+             (unless (riece-funcall-ignore-errors
+                      (symbol-name hook)
+                      #'run-hook-with-args-until-success
+                      hook prefix (car targets) message)
                (if function
                    (riece-funcall-ignore-errors (symbol-name function)
                                                  function prefix (car targets)
                                                  message))
                (if function
                    (riece-funcall-ignore-errors (symbol-name function)
                                                  function prefix (car targets)
                                                  message))
-               (riece-ignore-errors (symbol-name after-hook)
-                 (run-hook-with-args-until-success
-                  after-hook prefix (car targets) message))))
+               (riece-funcall-ignore-errors (symbol-name after-hook)
+                                            #'run-hook-with-args-until-success
+                                            after-hook prefix (car targets)
+                                            message)))
            t)))))
 
 (defun riece-handle-ctcp-version-request (prefix target string)
            t)))))
 
 (defun riece-handle-ctcp-version-request (prefix target string)
                  (after-hook
                   (intern (concat "riece-ctcp-after-" response
                                   "-response-hook"))))
                  (after-hook
                   (intern (concat "riece-ctcp-after-" response
                                   "-response-hook"))))
-             (unless (riece-ignore-errors (symbol-name hook)
-                       (run-hook-with-args-until-success
-                        hook prefix (car targets) message))
+             (unless (riece-funcall-ignore-errors
+                      (symbol-name hook)
+                      #'run-hook-with-args-until-success
+                      hook prefix (car targets) message)
                (if function
                    (riece-funcall-ignore-errors
                     (symbol-name function)
                     function prefix (car targets) message))
                (if function
                    (riece-funcall-ignore-errors
                     (symbol-name function)
                     function prefix (car targets) message))
-               (riece-ignore-errors (symbol-name after-hook)
-                 (run-hook-with-args-until-success
-                  after-hook prefix (car targets) message))))
+               (riece-funcall-ignore-errors (symbol-name after-hook)
+                                            #'run-hook-with-args-until-success
+                                            after-hook prefix (car targets)
+                                            message)))
            t)))))
 
 (defun riece-handle-ctcp-version-response (prefix target string)
            t)))))
 
 (defun riece-handle-ctcp-version-response (prefix target string)
index 7f739be..44b5eda 100644 (file)
@@ -41,9 +41,7 @@
             (format "riece-handle-default-%03d-message" base-number))))
     (if (and function
             (symbol-function function))
             (format "riece-handle-default-%03d-message" base-number))))
     (if (and function
             (symbol-function function))
-       (riece-funcall-ignore-errors (if (symbolp function)
-                                        (symbol-name function)
-                                      (format "numeric-reply-%d" number))
+       (riece-funcall-ignore-errors (symbol-name function)
                                     function prefix number name
                                     (riece-decode-coding-string string)))))
 
                                     function prefix number name
                                     (riece-decode-coding-string string)))))
 
   (let ((function (intern-soft (concat "riece-handle-" message "-message")))
        (hook (intern (concat "riece-" message "-hook")))
        (after-hook (intern (concat "riece-after-" message "-hook"))))
   (let ((function (intern-soft (concat "riece-handle-" message "-message")))
        (hook (intern (concat "riece-" message "-hook")))
        (after-hook (intern (concat "riece-after-" message "-hook"))))
-    (unless (riece-ignore-errors (if (symbolp hook)
-                                    (symbol-name hook)
-                                  (format "%s-hook" message))
-             (run-hook-with-args-until-success hook prefix string))
+    (unless (riece-funcall-ignore-errors (symbol-name hook)
+                                        #'run-hook-with-args-until-success
+                                        hook prefix string)
       (if function
       (if function
-         (riece-funcall-ignore-errors (if (symbolp function)
-                                          (symbol-name function)
-                                        (format "message-%s" message))
+         (riece-funcall-ignore-errors (symbol-name function)
                                       function prefix string))
                                       function prefix string))
-      (riece-ignore-errors (if (symbolp after-hook)
-                              (symbol-name after-hook)
-                            (format "%s-after-hook" message))
-       (run-hook-with-args-until-success after-hook prefix string)))))
+      (riece-funcall-ignore-errors (symbol-name after-hook)
+                                  #'run-hook-with-args-until-success
+                                  after-hook prefix string))))
 
 (defsubst riece-chomp-string (string)
   (if (string-match "\r\\'" string)
 
 (defsubst riece-chomp-string (string)
   (if (string-match "\r\\'" string)