summaryrefslogtreecommitdiffstats
path: root/library/parray.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'library/parray.tcl')
-rw-r--r--library/parray.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/parray.tcl b/library/parray.tcl
index 3ce9817..a9c2cb1 100644
--- a/library/parray.tcl
+++ b/library/parray.tcl
@@ -11,7 +11,7 @@
proc parray {a {pattern *}} {
upvar 1 $a array
if {![array exists array]} {
- error "\"$a\" isn't an array"
+ return -code error "\"$a\" isn't an array"
}
set maxl 0
set names [lsort [array names array $pattern]]
/div>
@@ -1,5 +1,9 @@
2006-04-26 Don Porter <dgp@users.sourceforge.net>
+ *** 8.5a4 TAGGED FOR RELEASE ***
+
+ * changes: Updates for another RC.
+
* generic/tclBinary.c: Revised the handling of the Q and q format
* generic/tclInt.h: specifiers for [binary] to account for the
* generic/tclStrToD.c: "middle endian" floating point format used
@@ -53,8 +57,6 @@
2006-04-07 Don Porter <dgp@users.sourceforge.net>
- *** 8.5a4 TAGGED FOR RELEASE ***
-
* generic/tclPathObj.c: Yet another revised fix for the [Bug 1379287]
* tests/fileSystem.test: family of path normalization bugs.
diff --git a/changes b/changes