1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

Fix unbalanced parenthesis in secrets.el.

Fix parenthesis.
(secrets-enabled): Fix parenthesis.
This commit is contained in:
Ted Zlatanov 2010-03-20 14:21:44 -05:00
parent 801ba3ba40
commit f05e1b9401
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2010-03-20 Teodor Zlatanov <tzz@lifelogs.com>
* net/secrets.el: Fix parenthesis.
(secrets-enabled): Fix parenthesis.
2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
* outline.el (hide-sublevels): Unfix the paren non-typo! (bug#5738).

View file

@ -149,7 +149,7 @@
(require 'dbus)
(defvar secrets-enabled nil
"Whether there is a daemon offering the Secret Service API."
"Whether there is a daemon offering the Secret Service API.")
(defvar secrets-debug t
"Write debug messages")
@ -693,7 +693,7 @@ If there is no such item, or the item doesn't own this attribute, return nil."
;; We shall inform, whether the secret service is enabled on this
;; machine.
(setq secrets-enabled t)))
(setq secrets-enabled t))
(provide 'secrets)