diff options
| author | Daiki Ueno | 2011-07-01 10:25:21 +0900 |
|---|---|---|
| committer | Daiki Ueno | 2011-07-01 10:25:21 +0900 |
| commit | 65afde5c65de1628ce6524b68a51cdc398aef52f (patch) | |
| tree | fd756c12ad62a6f78c4b2e4458e83a6fbbe3e86a | |
| parent | 34d0a92369bca068847db5576988d461f46e1351 (diff) | |
| download | emacs-65afde5c65de1628ce6524b68a51cdc398aef52f.tar.gz emacs-65afde5c65de1628ce6524b68a51cdc398aef52f.zip | |
* auth-source.el (auth-source-backend): Fix :initarg for data slot.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/auth-source.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 08bd159c330..bd7c81f5624 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-07-01 Daiki Ueno <ueno@unixuser.org> | ||
| 2 | |||
| 3 | * auth-source.el (auth-source-backend): Fix :initarg for data slot. | ||
| 4 | |||
| 1 | 2011-06-30 Katsumi Yamaoka <yamaoka@jpl.org> | 5 | 2011-06-30 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 6 | ||
| 3 | * mml2015.el (mml2015-use): Replace string-match-p with string-match | 7 | * mml2015.el (mml2015-use): Replace string-match-p with string-match |
diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el index 9391bf23d37..9d62d6a81c4 100644 --- a/lisp/gnus/auth-source.el +++ b/lisp/gnus/auth-source.el | |||
| @@ -116,7 +116,7 @@ let-binding." | |||
| 116 | :type t | 116 | :type t |
| 117 | :custom string | 117 | :custom string |
| 118 | :documentation "The backend protocol.") | 118 | :documentation "The backend protocol.") |
| 119 | (data :initarg :arg | 119 | (data :initarg :data |
| 120 | :initform nil | 120 | :initform nil |
| 121 | :documentation "Internal backend data.") | 121 | :documentation "Internal backend data.") |
| 122 | (create-function :initarg :create-function | 122 | (create-function :initarg :create-function |