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

Loading SRFI 169 will automatically turn it on #641

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on May 20, 2024

  1. Loading SRFI 169 will automatically turn it on

    Currently,
    
    ```
    stklos> (accept-srfi-169-numbers #f)
    stklos> 1_2
    **** Error:
    %execute: symbol `1_2' unbound in module `stklos'
    
    stklos> (import (srfi 169))  ;; This should turn SRFI 196 on!
    
    stklos> 1_2                  ;; But it didn't:
    **** Error:
    %execute: symbol `1_2' unbound in module `stklos'
    ```
    
    This adds a line to the SRFI implementation file, that just
    changes the parameter to #t.
    jpellegrini committed May 20, 2024
    Configuration menu
    Copy the full SHA
    d51a5b3 View commit details
    Browse the repository at this point in the history