
* .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/.
12 lines
278 B
EmacsLisp
12 lines
278 B
EmacsLisp
;;; 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
|