summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-11-14 00:47:33 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-11-14 00:47:33 +0000
commit44183f53a198d5f89e5adf9570bfa597118d46f3 (patch)
treee8787a42d47096e216589d4d74acfb7eab1fdb7c /apps
parentf1aaa4730898f1ed2792a6d82d7d7e52a5fafb66 (diff)
downloadATCD-44183f53a198d5f89e5adf9570bfa597118d46f3.tar.gz
ChangeLogTag:Sat Nov 13 11:29:20 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'apps')
-rw-r--r--apps/gperf/ChangeLog6
-rw-r--r--apps/gperf/src/Key_List.cpp2
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/gperf/ChangeLog b/apps/gperf/ChangeLog
index c0fd3e78c66..6319de0b63d 100644
--- a/apps/gperf/ChangeLog
+++ b/apps/gperf/ChangeLog
@@ -1,3 +1,9 @@
+Sat Nov 13 18:43:53 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * src/Key_List.cpp: The code for output_lookup_function() was
+ not being called if option[GLOBAL] was set. Thanks to Eugene
+ Surovegin <ebs@glasnet.ru> for reporting the bug and the fix.
+
Tue Aug 31 14:47:06 1999 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* Makefile:
diff --git a/apps/gperf/src/Key_List.cpp b/apps/gperf/src/Key_List.cpp
index f1e27daeeff..a6d8753d256 100644
--- a/apps/gperf/src/Key_List.cpp
+++ b/apps/gperf/src/Key_List.cpp
@@ -1753,6 +1753,8 @@ Key_List::output (void)
/* NOTREACHED */
}
}
+ else
+ output_lookup_function ();
}
if (additional_code)