]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/misc/auth.texi: Fix use of {} and wrapping in previous change.
authorGlenn Morris <rgm@gnu.org>
Tue, 19 Dec 2017 20:10:34 +0000 (15:10 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 19 Dec 2017 20:10:34 +0000 (15:10 -0500)
doc/misc/auth.texi

index 16ce60199d670fd82c694bc0ce26685ac6d95d9f..a5374a3b90d7e148c3221f8646924bfbbe041b92 100644 (file)
@@ -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