Skip to content

Commit

Permalink
Conform to Emacs Lisp package format convention
Browse files Browse the repository at this point in the history
  • Loading branch information
mcweeny committed Sep 11, 2015
1 parent 97414dd commit 995c932
Show file tree
Hide file tree
Showing 18 changed files with 70 additions and 4 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2015-09-10 Roland Winkler <winkler@gnu.org>
* lisp/bbdb-anniv.el, lisp/bbdb-mu4e.el, lisp/bbdb-print.el:
* lisp/bbdb-snarf.el, lisp/bbdb-com.el, lisp/bbdb-message.el:
* lisp/bbdb-mua.el, lisp/bbdb-rmail.el, lisp/bbdb-gnus.el:
* lisp/bbdb-mhe.el, lisp/bbdb-pgp.el, lisp/bbdb-sc.el:
* lisp/bbdb-vm.el, lisp/bbdb-ispell.el, lisp/bbdb-migrate.el:
* lisp/bbdb-site.el.in, lisp/bbdb.el: Conform to Emacs Lisp
package format convention.
(Bug#45910)

2015-09-10 Roland Winkler <winkler@gnu.org>
* lisp/bbdb.el (bbdb-separator-alist): Use two newline characters
to separate records.
Expand Down
4 changes: 4 additions & 0 deletions lisp/bbdb-anniv.el
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
;;
;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'bbdb-com)
(require 'diary-lib)
Expand Down Expand Up @@ -167,3 +169,5 @@ To enable this feature, put the following into your .emacs:
""))))))))))

(provide 'bbdb-anniv)

;;; bbdb-anniv.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-com.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
;;; This file contains most of the user-level interactive commands for BBDB.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'mailabbrev)

Expand Down Expand Up @@ -2635,3 +2637,5 @@ mode help: \\[describe-mode]; \
info: \\[bbdb-info]")))

(provide 'bbdb-com)

;;; bbdb-com.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-gnus.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
;;; This file contains the BBDB interface to Gnus.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'bbdb-com)
(require 'bbdb-mua)
Expand Down Expand Up @@ -392,3 +394,5 @@ Do not call this in your init file. Use `bbdb-initialize'."
;; 'bbdb/gnus-score))

(provide 'bbdb-gnus)

;;; bbdb-gnus.el ends here
2 changes: 2 additions & 0 deletions lisp/bbdb-ispell.el
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,5 @@ Allowed elements are as in the return value of `ispell-valid-dictionary-list'."
((sequencep field) (mapc 'bbdb-ispell-collect-words field))))

(provide 'bbdb-ispell)

;;; bbdb-ispell.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-message.el
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
;;; This file contains the BBDB interface to Mail Composition Packages.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'message)
(require 'sendmail)
Expand Down Expand Up @@ -50,3 +52,5 @@ Do not call this in your init file. Use `bbdb-initialize'."
(define-key mail-mode-map "\M-\t" 'bbdb-complete-mail)))

(provide 'bbdb-message)

;;; bbdb-message.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-mhe.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
;;; This file contains the BBDB interface to mh-e.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'bbdb-com)
(require 'bbdb-mua)
Expand Down Expand Up @@ -96,3 +98,5 @@ Do not call this in your init file. Use `bbdb-initialize'."
(define-key mh-letter-mode-map "\e\t" 'bbdb-complete-mail)))

(provide 'bbdb-mhe)

;;; bbdb-mhe.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-migrate.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
;;; This file contains the migration functions for BBDB.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)

;;; Migrating the BBDB
Expand Down Expand Up @@ -290,3 +292,5 @@ for outdated BBDB variables that are set via your personal `custom-file'."
list))

(provide 'bbdb-migrate)

;;; bbdb-migrate.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-mu4e.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
;;; This file contains the BBDB interface to mu4e.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'mu4e-view)

Expand All @@ -37,3 +39,5 @@ Do not call this in your init file. Use `bbdb-initialize'."
(define-key mu4e-view-mode-map ";" 'bbdb-mua-edit-field-sender))

(provide 'bbdb-mu4e)

;;; bbdb-mu4e.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-mua.el
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
;;;
;;; Read the docstrings; read the texinfo file.

;;; Code:

(require 'bbdb)
(require 'bbdb-com)

Expand Down Expand Up @@ -1049,3 +1051,5 @@ if this xfield is in the poster's record, and `bbdb-mua-summary-mark' otherwise.
" "))))

(provide 'bbdb-mua)

;;; bbdb-mua.el ends here
2 changes: 2 additions & 0 deletions lisp/bbdb-pgp.el
Original file line number Diff line number Diff line change
Expand Up @@ -236,3 +236,5 @@ to call the command `bbdb-pgp' manually, then call `mml-preview'."
(setq ranked-actions nil)))))))))))

(provide 'bbdb-pgp)

;;; bbdb-pgp.el ends here
4 changes: 2 additions & 2 deletions lisp/bbdb-print.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; bbdb-print.el -- for printing BBDB databases using TeX.
;;; bbdb-print.el --- for printing BBDB databases using TeX.

;; Copyright (C) 1993 Boris Goldowsky
;; Copyright (C) 2010-2015 Roland Winkler <winkler@gnu.org>
Expand Down Expand Up @@ -541,4 +541,4 @@ Omit-area-code is one of the allowed symbols in `bbdb-print-alist'."

(provide 'bbdb-print)

;;; bbdb-print ends here.
;;; bbdb-print ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-rmail.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
;;; This file contains the BBDB interface to Rmail.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'bbdb-com)
(require 'bbdb-mua)
Expand Down Expand Up @@ -57,3 +59,5 @@ Do not call this in your init file. Use `bbdb-initialize'."
(define-key rmail-summary-mode-map ";" 'bbdb-mua-edit-field-sender))

(provide 'bbdb-rmail)

;;; bbdb-rmail.el ends here
4 changes: 3 additions & 1 deletion lisp/bbdb-sc.el
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@
;; (bbdb-sc-update-from)
;; (setq sc-mail-headers-end (point))))))

;;; Code:

(require 'bbdb-com)
(require 'bbdb-mua)
(require 'supercite)
Expand Down Expand Up @@ -191,4 +193,4 @@ BBDB into Supercite."

(provide 'bbdb-sc)

;;; end of bbdb-sc.el
;;; bbdb-sc.el ends here
2 changes: 2 additions & 0 deletions lisp/bbdb-site.el.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@
:type '(repeat (directory :tag "Directory")))

(provide 'bbdb-site)

;;; bbdb-site.el.in ends here
6 changes: 5 additions & 1 deletion lisp/bbdb-snarf.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;; bbdb-snarf.el -- convert free-form text to BBDB records
;;; bbdb-snarf.el --- convert free-form text to BBDB records

;; Copyright (C) 1997 John Heidemann <johnh@isi.edu>
;; Copyright (C) 2010-2015 Roland Winkler <winkler@gnu.org>
Expand Down Expand Up @@ -36,6 +36,8 @@
;;; its snarfing algorithms too simplistic to be useful in real life.
;;; How can this possibly be improved? Suggestions welcome.

;;; Code:

(require 'bbdb-com)

(defcustom bbdb-snarf-rule-alist
Expand Down Expand Up @@ -354,3 +356,5 @@ See `bbdb-snarf-rule-alist' for details."
;; test@person.net

(provide 'bbdb-snarf)

;;; bbdb-snarf.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb-vm.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
;;; This file contains the BBDB interface to VM.
;;; See the BBDB info manual for documentation.

;;; Code:

(require 'bbdb)
(require 'bbdb-com)
(require 'bbdb-mua)
Expand Down Expand Up @@ -315,3 +317,5 @@ Do not call this in your init file. Use `bbdb-initialize'."
(lambda (m) (bbdb-mua-summary-mark (vm-su-from m))))))

(provide 'bbdb-vm)

;;; bbdb-vm.el ends here
4 changes: 4 additions & 0 deletions lisp/bbdb.el
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
;;; | version of BBDB you have. |
;;; -----------------------------------------------------------------------

;;; Code:

(require 'timezone)
(require 'bbdb-site)

Expand Down Expand Up @@ -4539,3 +4541,5 @@ for example only for outgoing messages."


(provide 'bbdb)

;;; bbdb.el ends here

0 comments on commit 995c932

Please sign in to comment.