Loading primitiv.ijs clobbers the name "open" in the z locale.
When the names are defined in the z locale CamelCase is converted to lower case as described in Note at the beginning of the script. This results in the CamelCase name "Open" for ">" to be converted to "open" wiping out the "open_z_" verb. The remarks says that all one needs to do is remove the "tolower" in line 247 of the script, but that doesn't address the problem of the name conflict for the name "open".
Should the name for ">" be changed to something else? And how many other conflicts are generated by not keeping CamelCase? Or should we only deal with CamelCase for the primitive names?
open_z_ +-------+ |open_j_| +-------+ load 'c:\program files\j\j601\system\packages\misc\primitiv.ijs' open_z_ +-+ |>| +-+ ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
