Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AppleWorks SS column generator label is wrong #67

Open
fadden opened this issue Sep 25, 2023 · 0 comments
Open

AppleWorks SS column generator label is wrong #67

fadden opened this issue Sep 25, 2023 · 0 comments
Labels

Comments

@fadden
Copy link
Owner

fadden commented Sep 25, 2023

The PrintCol() function does this for columns >= 26:

        fPrintColBuf[0] = 'A' + col / 26;
        fPrintColBuf[1] = 'A' + col % 26;
        fPrintColBuf[2] = '\0';

This jumps from "Z" to "BA" instead of "AA". It should actually be 'A' + col / 26 - 1.

Also, strings output for token=0xff should be wrapped in double quotes. The ellipsis token ($fc) should be ".." for denoting ranges in modern spreadsheets.

@fadden fadden added the bug label Sep 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant