summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-12-16 13:06:13 (GMT)
committerGuido van Rossum <guido@python.org>1991-12-16 13:06:13 (GMT)
commit75f8968ee7a4121ad9afe1be1e4f95ac04b68974 (patch)
treec3d2f4da17bb09189b59e5b609f035903b6e7a43 /Modules
parenta317365eb2906e54d6400907740eb20afd929bff (diff)
downloadcpython-75f8968ee7a4121ad9afe1be1e4f95ac04b68974.zip
cpython-75f8968ee7a4121ad9afe1be1e4f95ac04b68974.tar.gz
cpython-75f8968ee7a4121ad9afe1be1e4f95ac04b68974.tar.bz2
Hide forms before discarding them.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/flmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/flmodule.c b/Modules/flmodule.c
index a4af2df..9237371 100644
--- a/Modules/flmodule.c
+++ b/Modules/flmodule.c
@@ -1831,6 +1831,7 @@ form_dealloc(f)
formobject *f;
{
releaseobjects(f->ob_form);
+ fl_hide_form(f->ob_form);
fl_free_form(f->ob_form);
DEL(f);
}