aboutsummaryrefslogtreecommitdiffstats
path: root/src/abbrev.c
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1992-08-14 02:32:45 +0000
committerJim Blandy <[email protected]>1992-08-14 02:32:45 +0000
commit0292bcb1745ab0410be03c18c09b71144b70c54d (patch)
treeb0fbb9d4bad143ecccab76bc02fdc01221501686 /src/abbrev.c
parentcc38027b7556ef40140cc95f14ab31fba3f088d4 (diff)
* abbrev.c (Fdefine_abbrev_table): Fiddled with formatting.
Diffstat (limited to 'src/abbrev.c')
-rw-r--r--src/abbrev.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index 9a7640b872..414a3e98b4 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -468,12 +468,9 @@ of the form (ABBREVNAME EXPANSION HOOK USECOUNT).")
for (;!NILP (defns); defns = Fcdr (defns))
{
elt = Fcar (defns);
- name = Fcar (elt);
- elt = Fcdr (elt);
- exp = Fcar (elt);
- elt = Fcdr (elt);
- hook = Fcar (elt);
- elt = Fcdr (elt);
+ name = Fcar (elt); elt = Fcdr (elt);
+ exp = Fcar (elt); elt = Fcdr (elt);
+ hook = Fcar (elt); elt = Fcdr (elt);
count = Fcar (elt);
Fdefine_abbrev (table, name, exp, hook, count);
}