]> code.delx.au - gnu-emacs/blob - test/automated/data/package/simple-single-1.3.el
* test/automated/viper-tests.el (viper-test-undo-kmacro):
[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 ;; URL: http://doodles.au
7
8 ;;; Commentary:
9
10 ;; This package provides a minor mode to frobnicate and/or bifurcate
11 ;; any flanges you desire. To activate it, type "C-M-r M-3 butterfly"
12 ;; and all your dreams will come true.
13
14 ;;; Code:
15
16 (defgroup simple-single nil "Simply a file"
17 :group 'lisp)
18
19 (defcustom simple-single-super-sunday t
20 "How great is this?"
21 :type 'boolean
22 :group 'simple-single)
23
24 (defvar simple-single-sudo-sandwich nil
25 "Make a sandwich?")
26
27 ;;;###autoload
28 (define-minor-mode simple-single-mode
29 "It does good things to stuff")
30
31 (provide 'simple-single)
32
33 ;;; simple-single.el ends here