1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-28 16:21:07 -08:00

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/.
This commit is contained in:
Eli Zaretskii 2016-01-05 20:21:03 +02:00
parent 22d1a175aa
commit 6a311d2072
10 changed files with 1 additions and 168 deletions

View file

@ -0,0 +1,21 @@
;;; macro-problem.el --- laksd -*- lexical-binding: t; -*-
;; Author: Artur Malabarba <emacs@endlessparentheses.com>
;; Keywords: tools
;; Version: 1.0
;;; Code:
(require 'macro-aux)
(defmacro macro-problem-1 ( &rest forms)
"Description"
`(progn ,@forms))
(defun macro-problem-func ()
""
(macro-problem-1 'a 'b)
(macro-aux-1 'a 'b))
(provide 'macro-problem)
;;; macro-problem.el ends here