emacs/test/lisp/emacs-lisp/package-resources/macro-problem-package-2.0/macro-problem.el
Eli Zaretskii 6a311d2072 Fix fallout from merging emacs-25 branch in test/
* .gitignore: Update for the new place of biditest.txt.
* test/automated/: Directory removed.  All files moved to their
proper places.
* test/etags/: Directory removed.  All files moved to their proper
places.
* test/automated/url-parse-tests.el: File removed; it was an exact
copy of the same file in test/lisp/url/.
* test/automated/url-expand-tests.el: Moved to test/lisp/url/.
2016-01-05 20:21:03 +02:00

30 lines
615 B
EmacsLisp

;;; 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