]> code.delx.au - gnu-emacs/blob - test/automated/data/package/newer-versions/simple-single-1.4.el
substitute-command-keys keeps quotes’ text props
[gnu-emacs] / test / automated / data / package / newer-versions / simple-single-1.4.el
1 ;;; simple-single.el --- A single-file package with no dependencies
2
3 ;; Author: J. R. Hacker <jrh@example.com>
4 ;; Version: 1.4
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 ;; This is a new, updated version.
14
15 ;;; Code:
16
17 (defgroup simple-single nil "Simply a file"
18 :group 'lisp)
19
20 (defcustom simple-single-super-sunday nil
21 "How great is this?
22 Default changed to nil."
23 :type 'boolean
24 :group 'simple-single
25 :package-version "1.4")
26
27 (defvar simple-single-sudo-sandwich nil
28 "Make a sandwich?")
29
30 ;;;###autoload
31 (define-minor-mode simple-single-mode
32 "It does good things to stuff")
33
34 (provide 'simple-single)
35
36 ;;; simple-single.el ends here