summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-11-30 14:19:03 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-11-30 14:19:03 -0800
commitc6d7aca5df641e419f5b74d14b463901d63fc1f2 (patch)
tree4dd4411f919fc6a214242d0aee89e887b4f5e228 /parser.y
parentb3ee9cdddd521d0ee87a114269fc683f93d215e0 (diff)
downloadtxr-c6d7aca5df641e419f5b74d14b463901d63fc1f2.tar.gz
txr-c6d7aca5df641e419f5b74d14b463901d63fc1f2.tar.bz2
txr-c6d7aca5df641e419f5b74d14b463901d63fc1f2.zip
Removing useless hash table.
* parser.h (ln_to_forms_hash): Declaration removed. * parser.l (ln_to_forms_hash): Variable removed. (parse_init): Initialization and protection of ln_to_forms_hash removed. * parser.y (rl): Update of ln_to_forms_hash removed. * txr.1:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parser.y b/parser.y
index 00d47b09..6df6452e 100644
--- a/parser.y
+++ b/parser.y
@@ -907,7 +907,6 @@ static val choose_quote(val quoted_form)
val rl(val form, val lineno)
{
sethash(form_to_ln_hash, form, lineno);
- pushhash(ln_to_forms_hash, lineno, form);
return form;
}