diff options
| author | Katsumi Yamaoka | 2011-03-09 14:37:30 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-03-09 14:37:30 +0000 |
| commit | 3107d2a58a15e7fe71f3ac56886a4a71a9af36db (patch) | |
| tree | f96d002e4147838dce5b570516274b9acb409766 | |
| parent | 733afdf4d9df952a2d06c40b067de3a62bceb26b (diff) | |
| download | emacs-3107d2a58a15e7fe71f3ac56886a4a71a9af36db.tar.gz emacs-3107d2a58a15e7fe71f3ac56886a4a71a9af36db.zip | |
auth.texi (Help for developers): Untabify.
| -rw-r--r-- | doc/misc/auth.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi index e16d7b49b63..85a3f098131 100644 --- a/doc/misc/auth.texi +++ b/doc/misc/auth.texi | |||
| @@ -263,11 +263,11 @@ from Gnus' @code{nnimap.el}. | |||
| 263 | :create t)))) | 263 | :create t)))) |
| 264 | (if found | 264 | (if found |
| 265 | (list (plist-get found :user) | 265 | (list (plist-get found :user) |
| 266 | (let ((secret (plist-get found :secret))) | 266 | (let ((secret (plist-get found :secret))) |
| 267 | (if (functionp secret) | 267 | (if (functionp secret) |
| 268 | (funcall secret) | 268 | (funcall secret) |
| 269 | secret)) | 269 | secret)) |
| 270 | (plist-get found :save-function)) | 270 | (plist-get found :save-function)) |
| 271 | nil))) | 271 | nil))) |
| 272 | @end example | 272 | @end example |
| 273 | 273 | ||
| @@ -287,7 +287,7 @@ Later, after a successful login, @code{nnimal.el} calls the | |||
| 287 | @example | 287 | @example |
| 288 | (when (functionp (nth 2 credentials)) | 288 | (when (functionp (nth 2 credentials)) |
| 289 | (funcall (nth 2 credentials))) | 289 | (funcall (nth 2 credentials))) |
| 290 | @end example | 290 | @end example |
| 291 | 291 | ||
| 292 | Which will work whether the @code{:save-function} was provided or not. | 292 | Which will work whether the @code{:save-function} was provided or not. |
| 293 | @code{:save-function} will be provided only when a new entry was | 293 | @code{:save-function} will be provided only when a new entry was |