diff options
author | Glenn Morris <rgm@gnu.org> | 2017-12-19 15:10:34 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-12-19 15:10:34 -0500 |
commit | f946a198cb33d927c43a9eb5259f64d9effbfcdc (patch) | |
tree | 4351f269a30650048967922f9eba4848eb247cb3 /doc/misc/auth.texi | |
parent | db4f12e93f466832a5e5e1d512aff87ea90ef197 (diff) | |
download | emacs-f946a198cb33d927c43a9eb5259f64d9effbfcdc.tar.gz emacs-f946a198cb33d927c43a9eb5259f64d9effbfcdc.tar.bz2 emacs-f946a198cb33d927c43a9eb5259f64d9effbfcdc.zip |
* doc/misc/auth.texi: Fix use of {} and wrapping in previous change.
Diffstat (limited to 'doc/misc/auth.texi')
-rw-r--r-- | doc/misc/auth.texi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi index 16ce60199d6..a5374a3b90d 100644 --- a/doc/misc/auth.texi +++ b/doc/misc/auth.texi @@ -169,7 +169,8 @@ get fancy, the default and simplest configuration is: ;;; use pass (@file{~/.password-store}) ;;; (@pxref{The Unix password store}) (setq auth-sources '(password-store)) -;;; JSON data in format [{ "machine": "SERVER", "login": "USER", "password": "PASSWORD" }...] +;;; JSON data in format [@{ "machine": "SERVER", +;;; "login": "USER", "password": "PASSWORD" @}...] (setq auth-sources '("~/.authinfo.json.gpg")) @end lisp @@ -242,7 +243,8 @@ that sort of thing. Just point to a JSON file with entries like this: @example [ - { "machine": "yourmachine.com", "port": "http", "login": "testuser", "password": "testpass" } + @{ "machine": "yourmachine.com", "port": "http", + "login": "testuser", "password": "testpass" @} ] @end example |