aboutsummaryrefslogtreecommitdiffstats
path: root/test/lisp/package-vc-resources/test-package-SUFFIX-v0.1.el.in
blob: ddecc88e1c5a8224523b717d7ba27b29f9088cd1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;; test-package-SUFFIX.el --- Test package -*- lexical-binding: t -*-

;; Homepage: https://test-domain.org
;; Maintainer: Test Maintainer <test-maintainer@test-domain.org>
;; Package-Requires: ((emacs "30.1"))
;; Version: 0.1

;;; Commentary:
;;
;; Test package SUFFIX.

;;; Code:

(require 'test-package-SUFFIX-lib)

;;;###autoload
(defun test-package-SUFFIX-func (arg)
  ;; checkdoc-params: (arg)
  "Test function for `test-package-SUFFIX'."
  (test-package-SUFFIX-mac arg))

;;;###autoload
(defun test-package-SUFFIX-old-func ()
  "Old test function for `test-package-SUFFIX'.")

(provide 'test-package-SUFFIX)

;;; test-package-SUFFIX.el ends here