├── .gitignore ├── COPYING ├── Makefile ├── NEWS.md ├── README.md ├── bbdb-vcard-tests.el ├── bbdb-vcard-vcard21.el ├── bbdb-vcard.el └── bbdb-vcard.texi /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.elc 3 | *.info 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/README.md -------------------------------------------------------------------------------- /bbdb-vcard-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/bbdb-vcard-tests.el -------------------------------------------------------------------------------- /bbdb-vcard-vcard21.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/bbdb-vcard-vcard21.el -------------------------------------------------------------------------------- /bbdb-vcard.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/bbdb-vcard.el -------------------------------------------------------------------------------- /bbdb-vcard.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tohojo/bbdb-vcard/HEAD/bbdb-vcard.texi --------------------------------------------------------------------------------