Fix Wrong type argument: consp, nil error
* lisp/mh-e/mh-folder.el (mh-update-sequences): Add cur sequence when missing
This commit is contained in:
parent
a92ee5ca3c
commit
112e71914a
1 changed files with 3 additions and 2 deletions
|
@ -1293,8 +1293,9 @@ The message at the cursor is used for \"cur\"."
|
|||
(if new-cur
|
||||
(let ((seq-entry (mh-find-seq 'cur)))
|
||||
(mh-remove-cur-notation)
|
||||
(setcdr seq-entry
|
||||
(list new-cur)) ;delete-seq-locally, add-msgs-to-seq
|
||||
(if seq-entry
|
||||
(setcdr seq-entry (list new-cur))
|
||||
(mh-add-msgs-to-seq (list new-cur) 'cur))
|
||||
(mh-define-sequence 'cur (list new-cur))
|
||||
(beginning-of-line)
|
||||
(if (looking-at mh-scan-good-msg-regexp)
|
||||
|
|
Loading…
Add table
Reference in a new issue