From 0e55d33cc309b88e04b739638a0ed68bafe98a80 Mon Sep 17 00:00:00 2001 From: Spiro Trikaliotis Date: Thu, 16 Jul 2020 17:56:58 +0200 Subject: [PATCH] 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. --- doc/ca65.sgml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/ca65.sgml b/doc/ca65.sgml index 2c4593d21..8d97bddfd 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -622,7 +622,7 @@ problem in most cases. | Built-in string functions| 0@ -||~@ +~|~|~@ | Built-in pseudo-variables| 1@ | Built-in pseudo-functions| 1@ +| Unary positive| 1@ @@ -635,7 +635,7 @@ problem in most cases. .HIBYTE| Unary high-byte operator| 1@ ^ .BANKBYTE| Unary bank-byte operator| 1@ -||~@ +~|~|~@ *| Multiplication| 2@ /| Division| 2@ .MOD| Modulo operator| 2@ @@ -647,28 +647,28 @@ problem in most cases. .SHL| Shift-left operator| 2@ >> .SHR| Shift-right operator| 2@ -||~@ +~|~|~@ +| Binary addition| 3@ -| Binary subtraction| 3@ | .BITOR| Bitwise or| 3@ -||~@ +~|~|~@ = | Compare operator (equal)| 4@ <>| Compare operator (not equal)| 4@ <| Compare operator (less)| 4@ >| Compare operator (greater)| 4@ <=| Compare operator (less or equal)| 4@ >=| Compare operator (greater or equal)| 4@ -||~@ +~|~|~@ && .AND| Boolean and| 5@ .XOR| Boolean xor| 5@ -||~@ +~|~|~@ || .OR| Boolean or| 6@ -||~@ +~|~|~@ ! -.NOT| Boolean not| 7@ +.NOT| Boolean not| 7 Available operators, sorted by precedence