summaryrefslogtreecommitdiff
path: root/test/automated/data/package/macro-problem-package-2.0/macro-problem.el
diff options
context:
space:
mode:
Diffstat (limited to 'test/automated/data/package/macro-problem-package-2.0/macro-problem.el')
-rw-r--r--test/automated/data/package/macro-problem-package-2.0/macro-problem.el30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/automated/data/package/macro-problem-package-2.0/macro-problem.el b/test/automated/data/package/macro-problem-package-2.0/macro-problem.el
deleted file mode 100644
index cad4ed93f19..00000000000
--- a/test/automated/data/package/macro-problem-package-2.0/macro-problem.el
+++ /dev/null
@@ -1,30 +0,0 @@
-;;; macro-problem.el --- laksd -*- lexical-binding: t; -*-
-
-;; Author: Artur Malabarba <emacs@endlessparentheses.com>
-;; Keywords: tools
-;; Version: 2.0
-
-;;; Code:
-
-(require 'macro-aux)
-
-(defmacro macro-problem-1 ( &rest forms)
- "Description"
- `(progn ,(cadr (car forms))))
-
-
-(defun macro-problem-func ()
- ""
- (list (macro-problem-1 '1 'b)
- (macro-aux-1 'a 'b)))
-
-(defmacro macro-problem-3 (&rest _)
- "Description"
- 10)
-
-(defun macro-problem-10-and-90 ()
- ""
- (list (macro-problem-3 haha) (macro-aux-3 hehe)))
-
-(provide 'macro-problem)
-;;; macro-problem.el ends here