blob: 157f107a8a22ebe0dd7b379e37404a6cab3c9197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
1: normal
# this is a comment
>> this is a COMMENT
'XXX' this is a COMMENT
'XXX' this is a COMMENT q COMMENT too
2: changecom(>>)dnl
# this is a COMMENT
>> this is a comment
'XXX' this is a COMMENT
'XXX' this is a COMMENT q COMMENT too
3: changecom dnl
# this is a COMMENT
>> this is a COMMENT
'XXX' this is a COMMENT
'XXX' this is a COMMENT q COMMENT too
4: changecom()dnl
# this is a COMMENT
>> this is a COMMENT
'XXX' this is a COMMENT
'XXX' this is a COMMENT q COMMENT too
5: changecom(,)dnl
# this is a COMMENT
>> this is a COMMENT
'XXX' this is a COMMENT
'XXX' this is a COMMENT q COMMENT too
6: changecom(`p',q)dnl
# this is a COMMENT
>> this is a COMMENT
p this is a comment
p this is a comment q COMMENT too
7: changecom(`p')dnl
# this is a COMMENT
>> this is a COMMENT
p this is a comment
p this is a comment q comment too
8: changecom(#)dnl
# this is a comment
>> this is a COMMENT
'XXX' this is a COMMENT
'XXX' this is a COMMENT q COMMENT too
|