aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-08-14 02:32:45 +0000
committerJim Blandy1992-08-14 02:32:45 +0000
commit0292bcb1745ab0410be03c18c09b71144b70c54d (patch)
treeb0fbb9d4bad143ecccab76bc02fdc01221501686 /src
parentcc38027b7556ef40140cc95f14ab31fba3f088d4 (diff)
downloademacs-0292bcb1745ab0410be03c18c09b71144b70c54d.tar.gz
emacs-0292bcb1745ab0410be03c18c09b71144b70c54d.zip
* abbrev.c (Fdefine_abbrev_table): Fiddled with formatting.
Diffstat (limited to 'src')
-rw-r--r--src/abbrev.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index 9a7640b872c..414a3e98b48 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -468,12 +468,9 @@ of the form (ABBREVNAME EXPANSION HOOK USECOUNT).")
468 for (;!NILP (defns); defns = Fcdr (defns)) 468 for (;!NILP (defns); defns = Fcdr (defns))
469 { 469 {
470 elt = Fcar (defns); 470 elt = Fcar (defns);
471 name = Fcar (elt); 471 name = Fcar (elt); elt = Fcdr (elt);
472 elt = Fcdr (elt); 472 exp = Fcar (elt); elt = Fcdr (elt);
473 exp = Fcar (elt); 473 hook = Fcar (elt); elt = Fcdr (elt);
474 elt = Fcdr (elt);
475 hook = Fcar (elt);
476 elt = Fcdr (elt);
477 count = Fcar (elt); 474 count = Fcar (elt);
478 Fdefine_abbrev (table, name, exp, hook, count); 475 Fdefine_abbrev (table, name, exp, hook, count);
479 } 476 }