unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Niels Giesen <niels.giesen@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: print hash table to disk and reread in hash table
Date: Thu, 28 Aug 2008 10:36:51 +0200	[thread overview]
Message-ID: <87ljyh5ye4.fsf@gmail.com> (raw)
In-Reply-To: 34f9604c-a23b-4ad9-9c84-f45884a6df23@x16g2000prn.googlegroups.com

Xah <xahlee@gmail.com> writes:

> if i have a hash table in elisp, is there a way to save it to disk and
> reread in when starting emacs?
>
> Thanks.
>
>   Xah
> ∑ http://xahlee.org/
>
> ☄

You might use this code (I use it in gimp-mode):

(defmacro gimp-hash-to-list (hash-table)
  (let ((nl (gensym)))
    `(let (,nl)
       (maphash (lambda (k v)
                  (push (list k v) ,nl)) ,hash-table)
       ,nl)))

(defmacro gimp-list-to-hash (list)
  (let ((ht (gensym)))
    `(let ((,ht (make-hash-table)))
       (mapc (lambda (item)
               (puthash (car item) (cadr item) ,ht)) ,list)
       ,ht)))



  parent reply	other threads:[~2008-08-28  8:36 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-28  1:01 print hash table to disk and reread in hash table Xah
2008-08-28  5:21 ` Thierry Volpiatto
     [not found] ` <mailman.17732.1219901096.18990.help-gnu-emacs@gnu.org>
2008-08-28  5:27   ` Xah
2008-08-28  6:17     ` Thierry Volpiatto
2008-08-28 14:03     ` Ted Zlatanov
2008-08-28 18:10       ` Eli Zaretskii
     [not found]       ` <mailman.17796.1219947087.18990.help-gnu-emacs@gnu.org>
2008-08-29 14:06         ` Ted Zlatanov
2008-08-29 14:52           ` Eli Zaretskii
     [not found]           ` <mailman.17897.1220021571.18990.help-gnu-emacs@gnu.org>
2008-08-29 18:10             ` Ted Zlatanov
2008-08-28  8:36 ` Niels Giesen [this message]
2008-10-10 20:38 ` harven

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ljyh5ye4.fsf@gmail.com \
    --to=niels.giesen@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).