Navigation Menu

Skip to content

Commit

Permalink
* make file headers/footers conform to emacs conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
djcb committed Dec 29, 2011
1 parent f74b36b commit 691ea19
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 47 deletions.
35 changes: 4 additions & 31 deletions sauron-dbus.el
@@ -1,13 +1,7 @@
;;; sauron -- enhanced tracking of the world inside and outside your emacs
;;; buffers.
;;; sauron-dbus.el --- a dbus tracking module, part of sauron
;;
;; Copyright (C) 2011 Dirk-Jan C. Binnema

;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Keywords:
;; Version: 0.0

;; This file is not part of GNU Emacs.
;;
;; Sauron is free software: you can redistribute it and/or modify
Expand All @@ -24,32 +18,10 @@
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; listen for dbus notifications.
;; to call from shell, some convenience functions (for zsh, bash, *not* sh)
;; # send URL to sauron...

;; function sauron-url () {
;; # --print-reply
;; dbus-send --session \
;; --dest="org.gnu.Emacs" \
;; "/org/gnu/Emacs/Sauron" \
;; "org.gnu.Emacs.Sauron.AddUrlEvent" \
;; string:shell uint32:3 string:url string:"$1"
;; }

;; # send message to sauron...
;; function sauron-msg () {
;; # --print-reply
;; dbus-send --session \
;; --dest="org.gnu.Emacs" \
;; "/org/gnu/Emacs/Sauron" \
;; "org.gnu.Emacs.Sauron.AddMsgEvent" \
;; string:shell uint32:3 string:$1
;; }
;; For documentation, please see:
;; https://github.com/djcb/sauron/blob/master/README.org

;;; Code:

(require 'dbus nil 'noerror)

(defconst sr-dbus-service dbus-service-emacs
Expand Down Expand Up @@ -149,4 +121,5 @@

(provide 'sauron-dbus)

;;; sauron-dbus ends here

11 changes: 5 additions & 6 deletions sauron-erc.el
@@ -1,12 +1,7 @@
;;; sauron-erc -- tracking your ERC irc-channels
;;; sauron-erc.el --- an ERC tracking module, part of sauron
;;
;; Copyright (C) 2011 Dirk-Jan C. Binnema

;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Keywords:
;; Version: 0.0

;; This file is not part of GNU Emacs.
;;
;; Sauron is free software: you can redistribute it and/or modify
Expand All @@ -23,6 +18,8 @@
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:
;; For documentation, please see:
;; https://github.com/djcb/sauron/blob/master/README.org

;;; Code:
(require 'erc nil 'noerror)
Expand Down Expand Up @@ -141,3 +138,5 @@ The following events are erc-track
:msg ,msg))))

(provide 'sauron-erc)

;;; sauron-erc ends here
12 changes: 5 additions & 7 deletions sauron-org.el
@@ -1,13 +1,7 @@
;;; sauron-org -- enhanced tracking of the world inside and outside your emacs
;;; buffers
;;; sauron-org.el --- an org-mode (appt) tracking module, part of sauron
;;
;; Copyright (C) 2011 Dirk-Jan C. Binnema

;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Keywords:
;; Version: 0.0

;; This file is not part of GNU Emacs.
;;
;; Sauron is free software: you can redistribute it and/or modify
Expand All @@ -24,6 +18,8 @@
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:
;; For documentation, please see:
;; https://github.com/djcb/sauron/blob/master/README.org

;;; Code:
(require 'appt nil 'noerror)
Expand Down Expand Up @@ -74,3 +70,5 @@ could be lists, too."
(funcall sr-org-old-appt-func minutes-to-app new-time msg))))

(provide 'sauron-org)

;;; sauron-org ends here
11 changes: 8 additions & 3 deletions sauron.el
@@ -1,12 +1,12 @@
;;; sauron -- enhanced tracking of the world inside and outside your emacs
;;; buffers
;;; sauron.el --- a frame tracking events inside and outside your emacs buffers
;;
;; Copyright (C) 2011 Dirk-Jan C. Binnema

;; Author: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Maintainer: Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
;; Keywords:
;; Created: 06 Dec 2011
;; Version: 0.0
;; Keywords:comm,frames

;; This file is not part of GNU Emacs.
;;
Expand All @@ -24,6 +24,9 @@
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:
;; For documentation, please see:
;; https://github.com/djcb/sauron/blob/master/README.org


;;; Code:
(eval-when-compile (require 'cl))
Expand Down Expand Up @@ -465,3 +468,5 @@ id for the notification."
note-id))

(provide 'sauron)

;;; sauron.el ends here

0 comments on commit 691ea19

Please sign in to comment.