#  Re: Нужна помощь по программированию под емакс
Difrex (mira, 14) → Andrew Lobanov  –  08:32:01 2017-10-04

Как-то так:

====
(setq new-messages-list (make-hash-table :test 'equal))
(dolist (m my-list)
...
(puthash msg message-content new-messages-list)
)

(maphash (lambda (id msg)
(message (concat "Get " id "\n" msg))
new-messages-list)
====

Тут инициализируется хэш
https://gitea.difrex.ru/Difrex/idec.el/src/research/idec.el#L315

Тут заполняется
https://gitea.difrex.ru/Difrex/idec.el/src/research/idec.el#L417

Тут выводится
https://gitea.difrex.ru/Difrex/idec.el/src/research/idec.el#L369