Imported Upstream version 1.4.17
[platform/upstream/m4.git] / checks / 041.pseudo_arg
1 dnl @ ../doc/m4.texi:2075: Origin of test
2 dnl @ expected status: 0
3 dnl @ extra options: 
4 dnl @ Copyright (C) 2006, 2007, 2008, 2009 Free Software
5 dnl @ Foundation, Inc.
6 dnl @ This file is free software; the Free Software Foundation
7 dnl @ gives unlimited permission to copy and/or distribute it
8 dnl @ with or without modifications, as long as this notice
9 dnl @ is preserved.
10 define(`echo1', `$*')
11 dnl @result{}
12 define(`echo2', `$@')
13 dnl @result{}
14 define(`foo', `This is macro `foo'.')
15 dnl @result{}
16 echo1(foo)
17 dnl @result{}This is macro This is macro foo..
18 echo1(`foo')
19 dnl @result{}This is macro foo.
20 echo2(foo)
21 dnl @result{}This is macro foo.
22 echo2(`foo')
23 dnl @result{}foo