summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2016-01-05 20:21:03 +0200
committerEli Zaretskii <eliz@gnu.org>2016-01-05 20:21:03 +0200
commit6a311d2072b8a4ea530d9a541e661a8ad11bb1d7 (patch)
treee8229171021ae34b506864db392177a87d722162 /test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el
parent22d1a175aa4b33296a7f2fe0cde9a22333f4031d (diff)
downloademacs-6a311d2072b8a4ea530d9a541e661a8ad11bb1d7.tar.gz
emacs-6a311d2072b8a4ea530d9a541e661a8ad11bb1d7.tar.bz2
emacs-6a311d2072b8a4ea530d9a541e661a8ad11bb1d7.zip
Fix fallout from merging emacs-25 branch in test/
* .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/.
Diffstat (limited to 'test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el')
-rw-r--r--test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el b/test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el
new file mode 100644
index 00000000000..f43232224af
--- /dev/null
+++ b/test/lisp/emacs-lisp/package-resources/macro-problem-package-1.0/macro-aux.el
@@ -0,0 +1,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