2020-10-20 18:26:38 +02:00
|
|
|
;;; signed-bad.el --- A single-file package with bad signature -*- lexical-binding: t -*-
|
2013-10-03 16:11:27 +09:00
|
|
|
|
|
|
|
;; Author: J. R. Hacker <jrh@example.com>
|
|
|
|
;; Version: 1.0
|
|
|
|
;; Keywords: frobnicate
|
|
|
|
;; URL: http://doodles.au
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; This package provides a minor mode to frobnicate and/or bifurcate
|
2021-09-26 01:53:56 +02:00
|
|
|
;; any flanges you desire. To activate it, type "C-M-r M-3 butterfly"
|
2013-10-03 16:11:27 +09:00
|
|
|
;; and all your dreams will come true.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2021-09-26 01:53:56 +02:00
|
|
|
(defgroup signed-bad nil "Simply a file."
|
2013-10-03 16:11:27 +09:00
|
|
|
:group 'lisp)
|
|
|
|
|
|
|
|
(defcustom signed-bad-super-sunday t
|
|
|
|
"How great is this?"
|
|
|
|
:type 'boolean
|
|
|
|
:group 'signed-bad)
|
|
|
|
|
|
|
|
(defvar signed-bad-sudo-sandwich nil
|
|
|
|
"Make a sandwich?")
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(define-minor-mode signed-bad-mode
|
2021-09-26 01:53:56 +02:00
|
|
|
"It does good things to stuff.")
|
2013-10-03 16:11:27 +09:00
|
|
|
|
|
|
|
(provide 'signed-bad)
|
|
|
|
|
|
|
|
;;; signed-bad.el ends here
|