branch: elpa/emacsql commit 4a9dc9234f774b384d064c56c05c4d1539a3496a Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
readme: Untabify --- .dir-locals.el | 3 ++- README.md | 14 ++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.dir-locals.el b/.dir-locals.el index ddde6c8cb8..1c1f98ee2b 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1 +1,2 @@ -((emacs-lisp-mode (indent-tabs-mode . nil))) +((emacs-lisp-mode (indent-tabs-mode . nil)) + (markdown-mode (indent-tabs-mode . nil))) diff --git a/README.md b/README.md index 1399249ed3..1bcd653df4 100644 --- a/README.md +++ b/README.md @@ -370,16 +370,22 @@ To run the test suite, clone the `pg` and `sqlite3` packages into sibling directories. The Makefile will automatically put these paths on the Emacs load path (override `LDFLAGS` if your situation is different). - $ git clone https://github.com/emarsden/pg-el ../pg - $ git clone https://github.com/pekingduck/emacs-sqlite3-api ../sqlite3 +```shell +git clone https://github.com/emarsden/pg-el ../pg +git clone https://github.com/pekingduck/emacs-sqlite3-api ../sqlite3 +``` Or set `LOAD_PATH` to point at these packages elsewhere: - $ make LOAD_PATH='-L path/to/pg -L path/to/sqlite3' +```shell +make LOAD_PATH='-L path/to/pg -L path/to/sqlite3' +``` Then invoke make: - $ make test +```shell +make test +``` If the environment variable `PGDATABASE` is present then the unit tests will also be run with PostgreSQL (emacsql-psql). Provide