18 lines
383 B
EmacsLisp
18 lines
383 B
EmacsLisp
![]() |
;;; simple-two-depend.el --- A single-file package with two dependencies.
|
||
|
|
||
|
;; 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"
|
||
|
"Some trivial code")
|
||
|
|
||
|
;;; simple-two-depend.el ends here
|