2020-04-30 12:06:48 +02:00
|
|
|
;;; simple-two-depend.el --- A single-file package with two dependencies. -*- lexical-binding:t -*-
|
2014-03-21 08:06:52 +02:00
|
|
|
|
|
|
|
;; Author: J. R. Hacker <jrh@example.com>
|
|
|
|
;; Version: 1.1
|
|
|
|
;; Keywords: frobnicate
|
|
|
|
;; Package-Requires: ((simple-depend "1.0") (simple-single "1.3"))
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Depends on two another packages.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(defvar simple-two-depend "Value"
|
2021-09-26 01:53:56 +02:00
|
|
|
"Some trivial code.")
|
2014-03-21 08:06:52 +02:00
|
|
|
|
|
|
|
;;; simple-two-depend.el ends here
|