]> code.delx.au - gnu-emacs/blob - test/automated/data/package/simple-single-1.3.el
a61784164f84eedb91b061e719dcb4399765fffe
[gnu-emacs] / test / automated / data / package / simple-single-1.3.el
1 ;;; simple-single.el --- A single-file package with no dependencies
2
3 ;; Author: J. R. Hacker <jrh@example.com>
4 ;; Version: 1.3
5 ;; Keywords: frobnicate
6
7 ;;; Commentary:
8
9 ;; This package provides a minor mode to frobnicate and/or bifurcate
10 ;; any flanges you desire. To activate it, type "C-M-r M-3 butterfly"
11 ;; and all your dreams will come true.
12
13 ;;; Code:
14
15 (defgroup simple-single nil "Simply a file"
16 :group 'lisp)
17
18 (defcustom simple-single-super-sunday t
19 "How great is this?"
20 :type 'boolean
21 :group 'simple-single)
22
23 (defvar simple-single-sudo-sandwich nil
24 "Make a sandwich?")
25
26 ;;;###autoload
27 (define-minor-mode simple-single-mode
28 "It does good things to stuff")
29
30 (provide 'simple-single)
31
32 ;;; simple-single.el ends here