From: Glenn Morris Date: Tue, 19 Dec 2017 20:10:34 +0000 (-0500) Subject: * doc/misc/auth.texi: Fix use of {} and wrapping in previous change. X-Git-Tag: emacs-27.0.90~6000 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f946a198cb33d927c43a9eb5259f64d9effbfcdc;p=emacs.git * doc/misc/auth.texi: Fix use of {} and wrapping in previous change. --- 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