summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-problem.el
blob: 6e5e54e54fd71106b05718de993fb89b9bc468f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; macro-problem.el --- laksd                                  -*- lexical-binding: t; -*-

;; Author: Artur Malabarba <emacs@endlessparentheses.com>
;; Keywords: tools
;; Version: 1.0

;;; Code:

(require 'macro-aux)

(defmacro macro-problem-1 ( &rest forms)
  "Description."
  `(progn ,@forms))

(defun macro-problem-func ()
  "Description."
  (macro-problem-1 'a 'b)
  (macro-aux-1 'a 'b))

(provide 'macro-problem)
;;; macro-problem.el ends here