blob: ad20a3507a6c35c92f81fbc1e3bd93f9f72b1eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;; macro-aux.el --- laksd -*- lexical-binding: t; -*-
;; Author: Artur Malabarba <emacs@endlessparentheses.com>
;;; Code:
(defun macro-aux-1 ( &rest forms)
"Description."
`(progn ,@forms))
(provide 'macro-aux)
;;; macro-aux.el ends here
|