summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--offlineimap.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/offlineimap.el b/offlineimap.el
index c3eac20..d54b0eb 100644
--- a/offlineimap.el
+++ b/offlineimap.el
@@ -230,7 +230,7 @@ This is used when `offlineimap-mode-line-style' is set to 'symbol."
(defun offlineimap-process-filter (process msg)
"Filter PROCESS output MSG."
(dolist (msg-line (nbutlast (split-string msg "[\n\r]+")))
- (let* ((msg-data (split-string (car msg-lines) ":"))
+ (let* ((msg-data (split-string msg-line ":"))
(msg-type (nth 0 msg-data))
(action (nth 1 msg-data))
(thread-name (nth 2 msg-data))