source: trunk/essentials/sys-devel/m4/examples/quote.m4

Last change on this file was 3090, checked in by bird, 18 years ago

m4 1.4.8

File size: 402 bytes
Line 
1divert(`-1')
2# quote(args) - convert args to single-quoted string
3define(`quote', `ifelse(`$#', `0', `', ``$*'')')
4# dquote(args) - convert args to quoted list of quoted strings
5define(`dquote', ``$@'')
6# dquote_elt(args) - convert args to list of double-quoted strings
7define(`dquote_elt', `ifelse(`$#', `0', `', `$#', `1', ```$1''',
8 ```$1'',$0(shift($@))')')
9divert`'dnl
Note: See TracBrowser for help on using the repository browser.