Imported Upstream version 1.4.16
[platform/upstream/m4.git] / checks / 056.pushdef
1 dnl @ ../doc/m4.texinfo:2433: 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(`foo', `Expansion one.')
11 dnl @result{}
12 foo
13 dnl @result{}Expansion one.
14 pushdef(`foo', `Expansion two.')
15 dnl @result{}
16 foo
17 dnl @result{}Expansion two.
18 define(`foo', `Second expansion two.')
19 dnl @result{}
20 foo
21 dnl @result{}Second expansion two.
22 undefine(`foo')
23 dnl @result{}
24 foo
25 dnl @result{}foo