aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-12-22 13:12:07 -0800
committerGlenn Morris2012-12-22 13:12:07 -0800
commit9fbc8f464285f37b9c6f85345a499b0e7cc2a681 (patch)
tree8c00a7e0e4ba0e5cdb4874ce735f25eccfa16f4e
parentceccabdb93e2fc0509e8e70223fcc659376506f2 (diff)
downloademacs-9fbc8f464285f37b9c6f85345a499b0e7cc2a681.tar.gz
emacs-9fbc8f464285f37b9c6f85345a499b0e7cc2a681.zip
* doc/misc/auth.texi (Help for users): Break long lines.
-rw-r--r--doc/misc/ChangeLog2
-rw-r--r--doc/misc/auth.texi6
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 23bc19a6862..0d394a038b1 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,5 +1,7 @@
12012-12-22 Glenn Morris <rgm@gnu.org> 12012-12-22 Glenn Morris <rgm@gnu.org>
2 2
3 * auth.texi (Help for users): Break long lines.
4
3 * ada-mode.texi (Project file variables): 5 * ada-mode.texi (Project file variables):
4 Reword to reduce underfull hbox. 6 Reword to reduce underfull hbox.
5 (No project files, Use GNAT project file): 7 (No project files, Use GNAT project file):
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi
index 6f3a5fe0a38..bb6ad46c26f 100644
--- a/doc/misc/auth.texi
+++ b/doc/misc/auth.texi
@@ -154,7 +154,8 @@ and simplest configuration is:
154(setq auth-sources '((:source "~/.authinfo.gpg"))) 154(setq auth-sources '((:source "~/.authinfo.gpg")))
155;;; even shorter and the @emph{default}: 155;;; even shorter and the @emph{default}:
156(setq auth-sources '("~/.authinfo.gpg" "~/.authinfo" "~/.netrc")) 156(setq auth-sources '("~/.authinfo.gpg" "~/.authinfo" "~/.netrc"))
157;;; use the Secrets API @var{Login} collection (@pxref{Secret Service API}) 157;;; use the Secrets API @var{Login} collection
158;;; (@pxref{Secret Service API})
158(setq auth-sources '("secrets:Login")) 159(setq auth-sources '("secrets:Login"))
159@end lisp 160@end lisp
160 161
@@ -167,7 +168,8 @@ have unusual setups and the remaining 10% are @emph{really} unusual).
167Here's a mixed example using two sources: 168Here's a mixed example using two sources:
168 169
169@lisp 170@lisp
170(setq auth-sources '((:source (:secrets default) :host "myserver" :user "joe") 171(setq auth-sources '((:source (:secrets default)
172 :host "myserver" :user "joe")
171 "~/.authinfo.gpg")) 173 "~/.authinfo.gpg"))
172@end lisp 174@end lisp
173 175