* elmo.el: Fix typo: disptch -> dispatch.
authoryoichi <yoichi>
Sun, 1 Oct 2006 13:12:18 +0000 (13:12 +0000)
committeryoichi <yoichi>
Sun, 1 Oct 2006 13:12:18 +0000 (13:12 +0000)
elmo/ChangeLog
elmo/elmo.el

index 7698b5c..dae999d 100644 (file)
@@ -1,3 +1,7 @@
+2006-10-01  Yoichi NAKAYAMA  <yoichi@geiin.org>
+
+       * elmo.el: Fix typo: disptch -> dispatch.
+
 2006-10-01  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * elmo.el (elmo-file-tag): New class.
index e52ae66..da05529 100644 (file)
@@ -1069,7 +1069,7 @@ If optional argument IF-EXISTS is nil, load on demand.
 (eval-and-compile
   (luna-define-class elmo-file-tag))
 
-(defconst elmo-append-messages-disptch-table
+(defconst elmo-append-messages-dispatch-table
   '(((nil      . null)         . elmo-folder-append-messages-*-null)
     ((filter   . nil)          . elmo-folder-append-messages-filter-*)
     ((nil      . filter)       . elmo-folder-append-messages-*-filter)
@@ -1113,9 +1113,9 @@ If second optional argument SAME-NUMBER is specified,
 message number is preserved \(if possible\).
 Returns a list of message numbers successfully appended."
   (let ((rest (if caller
-                 (cdr (memq (rassq caller elmo-append-messages-disptch-table)
-                            elmo-append-messages-disptch-table))
-               elmo-append-messages-disptch-table))
+                 (cdr (memq (rassq caller elmo-append-messages-dispatch-table)
+                            elmo-append-messages-dispatch-table))
+               elmo-append-messages-dispatch-table))
        result)
     (while rest
       (let ((types (car (car rest))))