diff options
| author | Ted Zlatanov | 2010-03-20 14:21:44 -0500 |
|---|---|---|
| committer | Ted Zlatanov | 2010-03-20 14:21:44 -0500 |
| commit | f05e1b9401d40b0abfc9cd1666e1ec2bdf14881f (patch) | |
| tree | 92533b736caa006ee0aeb490701203e413668dfa | |
| parent | 801ba3ba40721b5c42930c3df70b405509374ee3 (diff) | |
| download | emacs-f05e1b9401d40b0abfc9cd1666e1ec2bdf14881f.tar.gz emacs-f05e1b9401d40b0abfc9cd1666e1ec2bdf14881f.zip | |
Fix unbalanced parenthesis in secrets.el.
Fix parenthesis.
(secrets-enabled): Fix parenthesis.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/net/secrets.el | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0bc49473e13..f33ac8574ba 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-03-20 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * net/secrets.el: Fix parenthesis. | ||
| 4 | (secrets-enabled): Fix parenthesis. | ||
| 5 | |||
| 1 | 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738). | 8 | * outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738). |
diff --git a/lisp/net/secrets.el b/lisp/net/secrets.el index 5fa10e284a4..c45f6fbb276 100644 --- a/lisp/net/secrets.el +++ b/lisp/net/secrets.el | |||
| @@ -149,7 +149,7 @@ | |||
| 149 | (require 'dbus) | 149 | (require 'dbus) |
| 150 | 150 | ||
| 151 | (defvar secrets-enabled nil | 151 | (defvar secrets-enabled nil |
| 152 | "Whether there is a daemon offering the Secret Service API." | 152 | "Whether there is a daemon offering the Secret Service API.") |
| 153 | 153 | ||
| 154 | (defvar secrets-debug t | 154 | (defvar secrets-debug t |
| 155 | "Write debug messages") | 155 | "Write debug messages") |
| @@ -693,7 +693,7 @@ If there is no such item, or the item doesn't own this attribute, return nil." | |||
| 693 | 693 | ||
| 694 | ;; We shall inform, whether the secret service is enabled on this | 694 | ;; We shall inform, whether the secret service is enabled on this |
| 695 | ;; machine. | 695 | ;; machine. |
| 696 | (setq secrets-enabled t))) | 696 | (setq secrets-enabled t)) |
| 697 | 697 | ||
| 698 | (provide 'secrets) | 698 | (provide 'secrets) |
| 699 | 699 | ||