X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=README;h=db1153c6cf3ff0a45952858299f1de5ea3d4c819;hb=b3d01231d16294bd87a4f4b865daa8f9c6c0b13f;hp=b55e72563c06aad2383841f52a63a6616d46cd15;hpb=632f50c4c80e1ec856abe3221af70b4e07909ec7;p=elisp%2Flsdb.git diff --git a/README b/README index b55e725..db1153c 100644 --- a/README +++ b/README @@ -57,6 +57,11 @@ If you use Wanderlust, put the following lines into your ~/.wl: (lambda () (define-key wl-draft-mode-map "\M-\t" 'lsdb-complete-name))) +If you use MU-CITE, put the following lines into your ~/.emacs: +(autoload 'lsdb-mu-insinuate "lsdb") +(eval-after-load "mu-cite" + '(lsdb-mu-insinuate)) + .* Bug reports If you found bugs, please drop a note to the EMACS-MIME Mailing List: @@ -83,11 +88,10 @@ time, use lsdb-display-records instead. .. Internal Data Model . : lsdb-hash-table lsdb-hash-table is the variable which holds all the records in LSDB. -We can operate on this variable in similar fashion to CL's hash-table. - -lsdb-puthash for puthash, lsdb-gethash to gethash, lsdh-maphash to -maphash are allowed to use. For example, you can write the following -expression to get the record for "Daiki Ueno": +You can operate on this variable in similar fashion to CL's +hash-table: lsdb-puthash for puthash, lsdb-gethash to gethash, +lsdh-maphash to maphash are available to you. For example, you can +write the following expression to get the record for "Daiki Ueno": (lsdb-gethash "Daiki Ueno" lsdb-hash-table)