Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. FUNCTION {output.nonnull}
  2. { 's :=
  3. output.state mid.sentence =
  4. { ", " * write$ }
  5. { output.state after.block =
  6. { ", " * write$
  7. newline$
  8. "newblock " write$
  9. }
  10. { output.state before.all =
  11. 'write$
  12. { ", " * write$ }
  13. if$
  14. }
  15. if$
  16. mid.sentence 'output.state :=
  17. }
  18. if$
  19. s
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement