[cl-unification-cvs] CVS cl-unification
rbrown
rbrown at common-lisp.net
Mon Mar 28 17:10:37 UTC 2011
Update of /project/cl-unification/cvsroot/cl-unification
In directory cl-net:/tmp/cvs-serv8635
Modified Files:
ChangeLog match-block.lisp
Log Message:
match-block.lisp: Use &body in match-case and matchf-case so
code that uses them is correctly indented by editors.
--- /project/cl-unification/cvsroot/cl-unification/ChangeLog 2011/02/27 19:51:13 1.13
+++ /project/cl-unification/cvsroot/cl-unification/ChangeLog 2011/03/28 17:10:36 1.14
@@ -1,3 +1,8 @@
+2011-03-28 Robert Brown <robert.brown at gmail.com>
+
+ * match-block.lisp: Use &body in match-case and matchf-case so
+ code that uses them is correctly indented by editors.
+
2011-02-27 author <author at paniscia.local>
* .cvsignore: Updated.
--- /project/cl-unification/cvsroot/cl-unification/match-block.lisp 2011/02/26 09:19:01 1.12
+++ /project/cl-unification/cvsroot/cl-unification/match-block.lisp 2011/03/28 17:10:36 1.13
@@ -249,7 +249,7 @@
;;; HANDLER-CASEs, which are quite expensive. Any takers?
(defmacro match-case ((object &key errorp default-substitution match-case-named)
- &rest clauses)
+ &body clauses)
"MATCH-CASE sets up a CASE-like environment for multiple template matching clauses.
The syntax of MATCH-CASE comprises a number of clauses of the form
@@ -307,7 +307,7 @@
(defmacro matchf-case ((object &key errorp default-substitution match-case-named)
- &rest clauses)
+ &body clauses)
"MATCHF-CASE sets up a CASE-like environment for multiple template matching clauses.
The syntax of MATCHF-CASE comprises a number of clauses of the form
More information about the Cl-unification-cvs
mailing list