doc_exists_p

one of the documented procedures in this installation of the ACS
Usage:
doc_exists_p
What it does:
Returns 1 if there is a document in the global environment.
Defined in: /web/philip/packages/acs-core/document-procs.tcl

Source code:


    global doc_properties
    if { [array size doc_properties] > 0 } {
	return 1
    }
    return 0


philg@mit.edu