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