blob: f43232224afcb00da208ff570530f9cddddf4c40 (
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
|