blob: 0533b1bd9c47b9e6c1f39f933c87bb847601efaa (
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 ()
""
(macro-problem-1 'a 'b)
(macro-aux-1 'a 'b))
(provide 'macro-problem)
;;; macro-problem.el ends here
|