* riece-filter.el: "Error occurred in XXX" -> "Error in XXX".
* riece-signal.el: "Error occurred in XXX" -> "Error in XXX".
+2004-03-13 Daiki Ueno <ueno@unixuser.org>
+
+ * riece-ctcp.el: "Error occurred in XXX" -> "Error in XXX".
+ * riece-filter.el: "Error occurred in XXX" -> "Error in XXX".
+ * riece-signal.el: "Error occurred in XXX" -> "Error in XXX".
+
2004-03-09 Daiki Ueno <ueno@unixuser.org>
* Riece: Version 0.2.1 released.
hook prefix (car targets) message)
(error
(if riece-debug
- (message "Error occurred in `%S': %S" hook error))
+ (message "Error in `%S': %S" hook error))
nil))
(if function
(condition-case error
(funcall function prefix (car targets) message)
(error
(if riece-debug
- (message "Error occurred in `%S': %S"
+ (message "Error in `%S': %S"
function error))))))
(condition-case error
(run-hook-with-args-until-success
after-hook prefix (car targets) message)
(error
(if riece-debug
- (message "Error occurred in `%S': %S"
+ (message "Error in `%S': %S"
after-hook error)))))
t)))))
hook prefix (car targets) message)
(error
(if riece-debug
- (message "Error occurred in `%S': %S" hook error))
+ (message "Error in `%S': %S" hook error))
nil))
(if function
(condition-case error
(funcall function prefix (car targets) message)
(error
(if riece-debug
- (message "Error occurred in `%S': %S"
+ (message "Error in `%S': %S"
function error))))))
(condition-case error
(run-hook-with-args-until-success
after-hook prefix (car targets) message)
(error
(if riece-debug
- (message "Error occurred in `%S': %S"
+ (message "Error in `%S': %S"
after-hook error)))))
t)))))
(riece-decode-coding-string string))
(error
(if riece-debug
- (message "Error occurred in `%S': %S" function error)))))))
+ (message "Error in `%S': %S" function error)))))))
(defun riece-default-handle-numeric-reply
(client-prefix prefix number name string)
(run-hook-with-args-until-success hook prefix string)
(error
(if riece-debug
- (message "Error occurred in `%S': %S" hook error))
+ (message "Error in `%S': %S" hook error))
nil))
(if function
(condition-case error
(funcall function prefix string)
(error
(if riece-debug
- (message "Error occurred in `%S': %S" function error)))))
+ (message "Error in `%S': %S" function error)))))
(condition-case error
(run-hook-with-args-until-success after-hook prefix string)
(error
(if riece-debug
- (message "Error occurred in `%S': %S" after-hook error)))))))
+ (message "Error in `%S': %S" after-hook error)))))))
(defun riece-filter (process input)
(save-excursion
(error
(if riece-debug
(message
- "Error occurred in signal filter for \"%S\": %S"
+ "Error in signal filter for \"%S\": %S"
signal-name error)))
nil))
(funcall (riece-slot-function (car slots))
signal (riece-slot-handback (car slots))))
(error
(if riece-debug
- (message "Error occurred in slot function for \"%S\": %S"
+ (message "Error in slot function for \"%S\": %S"
signal-name error))))
(setq slots (cdr slots))))))