home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / m4v05as.zip / EXAMPLES / DEFINITI.12 < prev    next >
Text File  |  1992-02-19  |  262b  |  18 lines

  1. dnl "m4.texinfo": 673: Origin here
  2. define(`foo', `Expansion one.')
  3. dnl =>
  4. foo
  5. dnl =>Expansion one.
  6. pushdef(`foo', `Expansion two.')
  7. dnl =>
  8. foo
  9. dnl =>Expansion two.
  10. popdef(`foo')
  11. dnl =>
  12. foo
  13. dnl =>Expansion one.
  14. popdef(`foo')
  15. dnl =>
  16. foo
  17. dnl =>foo
  18.