Fix info page building for newer linuxdoc
In ca65.sgml, the following pattern was used in tables in order to create an empty row: ||~@ That is, the first two columns are empty, the last one has an Unfortunately, with newer linuxdoc, this fails, as the empty columns create two @item directly after each other, which is not allowed. Changing this to ~|~|~@ fixes it by adding an " " into each column. Furthermore, the last line had a "newrow" (@) separator, which created an artifact. Removed that one.
This commit is contained in:
committed by
Oliver Schmidt
parent
4296cbaf82
commit
0e55d33cc3
@@ -622,7 +622,7 @@ problem in most cases.
|
|||||||
<tabular ca="clc">
|
<tabular ca="clc">
|
||||||
<bf/Operator/| <bf/Description/| <bf/Precedence/@<hline>
|
<bf/Operator/| <bf/Description/| <bf/Precedence/@<hline>
|
||||||
| Built-in string functions| 0@
|
| Built-in string functions| 0@
|
||||||
||~@
|
~|~|~@
|
||||||
| Built-in pseudo-variables| 1@
|
| Built-in pseudo-variables| 1@
|
||||||
| Built-in pseudo-functions| 1@
|
| Built-in pseudo-functions| 1@
|
||||||
+| Unary positive| 1@
|
+| Unary positive| 1@
|
||||||
@@ -635,7 +635,7 @@ problem in most cases.
|
|||||||
.HIBYTE| Unary high-byte operator| 1@
|
.HIBYTE| Unary high-byte operator| 1@
|
||||||
^<newline>
|
^<newline>
|
||||||
.BANKBYTE| Unary bank-byte operator| 1@
|
.BANKBYTE| Unary bank-byte operator| 1@
|
||||||
||~@
|
~|~|~@
|
||||||
*| Multiplication| 2@
|
*| Multiplication| 2@
|
||||||
/| Division| 2@
|
/| Division| 2@
|
||||||
.MOD| Modulo operator| 2@
|
.MOD| Modulo operator| 2@
|
||||||
@@ -647,28 +647,28 @@ problem in most cases.
|
|||||||
.SHL| Shift-left operator| 2@
|
.SHL| Shift-left operator| 2@
|
||||||
>><newline>
|
>><newline>
|
||||||
.SHR| Shift-right operator| 2@
|
.SHR| Shift-right operator| 2@
|
||||||
||~@
|
~|~|~@
|
||||||
+| Binary addition| 3@
|
+| Binary addition| 3@
|
||||||
-| Binary subtraction| 3@
|
-| Binary subtraction| 3@
|
||||||
|<newline>
|
|<newline>
|
||||||
.BITOR| Bitwise or| 3@
|
.BITOR| Bitwise or| 3@
|
||||||
||~@
|
~|~|~@
|
||||||
= | Compare operator (equal)| 4@
|
= | Compare operator (equal)| 4@
|
||||||
<>| Compare operator (not equal)| 4@
|
<>| Compare operator (not equal)| 4@
|
||||||
<| Compare operator (less)| 4@
|
<| Compare operator (less)| 4@
|
||||||
>| Compare operator (greater)| 4@
|
>| Compare operator (greater)| 4@
|
||||||
<=| Compare operator (less or equal)| 4@
|
<=| Compare operator (less or equal)| 4@
|
||||||
>=| Compare operator (greater or equal)| 4@
|
>=| Compare operator (greater or equal)| 4@
|
||||||
||~@
|
~|~|~@
|
||||||
&&<newline>
|
&&<newline>
|
||||||
.AND| Boolean and| 5@
|
.AND| Boolean and| 5@
|
||||||
.XOR| Boolean xor| 5@
|
.XOR| Boolean xor| 5@
|
||||||
||~@
|
~|~|~@
|
||||||
||<newline>
|
||<newline>
|
||||||
.OR| Boolean or| 6@
|
.OR| Boolean or| 6@
|
||||||
||~@
|
~|~|~@
|
||||||
!<newline>
|
!<newline>
|
||||||
.NOT| Boolean not| 7@<hline>
|
.NOT| Boolean not| 7
|
||||||
</tabular>
|
</tabular>
|
||||||
<caption>Available operators, sorted by precedence
|
<caption>Available operators, sorted by precedence
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user