Skip to content

Commit

Permalink
fixed typo in sauron-notifications.el
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored and djcb committed Jan 22, 2012
1 parent 97cae51 commit 582d282
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sauron-notifications.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; sauron-notications.el --- a notifications tracking module, part of sauron
;;; sauron-notifications.el --- a notifications tracking module, part of sauron
;;
;; Copyright (C) 2012 Dirk-Jan C. Binnema
;; Copyright (C) 2012 Takafumi Arakaki
Expand Down Expand Up @@ -28,7 +28,7 @@

;; this tracks the D-Bus notifications module that ships with Emacs 24

(defun sauron-notications-start ()
(defun sauron-notifications-start ()
"Start tracking notifications."
(if (not (fboundp 'notifications-notify))
(message "sauron-notifications not available")
Expand All @@ -37,7 +37,7 @@
(ad-enable-advice 'notifications-notify 'after 'sr-notifications-hook)
(ad-activate 'notifications-notify))))

(defun sauron-notications-stop ()
(defun sauron-notifications-stop ()
"Stop tracking notifications."
(when (boundp 'notifications-notify)
(progn
Expand All @@ -62,4 +62,4 @@
(concat title
(if (and title body) " - ") body))))

(provide 'sauron-notications)
(provide 'sauron-notifications)

0 comments on commit 582d282

Please sign in to comment.