home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / m4-1.1-src.lha / src / amiga / m4-1.1 / checks / 09.pseudo_argu < prev    next >
Encoding:
Text File  |  1993-11-08  |  263 b   |  12 lines

  1. dnl ../m4.texinfo:831: Origin of test
  2. define(`echo1', `$*')
  3. dnl @result{}
  4. define(`echo2', `$@')
  5. dnl @result{}
  6. define(`foo', `This is macro `foo'.')
  7. dnl @result{}
  8. echo1(foo)
  9. dnl @result{}This is macro This is macro foo..
  10. echo2(foo)
  11. dnl @result{}This is macro foo.
  12.