forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit811f7df
committed
When a macro is replaced by the preprocessor, pgc.l reaches a end of
file, which is not the actual end of the file. One side effect of thatis that if you are i n a ifdef block, you get a wrong error telling youthat a endif is missing.This patch corrects pgc.l and also adds a test of this problem totest1.pgc. To convince you apply the patch to test1.pgc first then tryto compile the test the n apply the patch to pgc.l.The patch moves the test of the scope of an ifdef block to the end ofthe file b eeing parsed, including all includes files, ... .Nicolas Bazin1 parent3cbe6b2 commit811f7df
2 files changed
+12
-9
lines changedLines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
15 |
| - | |
| 15 | + | |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
| |||
837 | 837 |
| |
838 | 838 |
| |
839 | 839 |
| |
| 840 | + | |
840 | 841 |
| |
841 | 842 |
| |
842 | 843 |
| |
843 | 844 |
| |
844 | 845 |
| |
845 |
| - | |
846 |
| - | |
847 | 846 |
| |
| 847 | + | |
848 | 848 |
| |
849 | 849 |
| |
850 | 850 |
| |
|
Lines changed: 9 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
| 20 | + | |
20 | 21 |
| |
21 | 22 |
| |
22 |
| - | |
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
| 30 | + | |
| 31 | + | |
30 | 32 |
| |
31 | 33 |
| |
32 |
| - | |
| 34 | + | |
33 | 35 |
| |
34 | 36 |
| |
35 | 37 |
| |
36 |
| - | |
| 38 | + | |
37 | 39 |
| |
38 | 40 |
| |
39 | 41 |
| |
| 42 | + | |
40 | 43 |
| |
41 | 44 |
| |
42 | 45 |
| |
| |||
62 | 65 |
| |
63 | 66 |
| |
64 | 67 |
| |
65 |
| - | |
66 |
| - | |
| 68 | + | |
| 69 | + | |
67 | 70 |
| |
68 | 71 |
| |
69 | 72 |
| |
| |||
115 | 118 |
| |
116 | 119 |
| |
117 | 120 |
| |
118 |
| - | |
| 121 | + | |
119 | 122 |
| |
120 | 123 |
| |
121 | 124 |
| |
|
0 commit comments
Comments
(0)