Next: , Previous: User level options interfaces, Up: Runtime Options


5.18.3.3 Reader options

Here is the list of reader options generated by typing (read-options 'full) in Guile. You can also see the default values.

     keywords         #f      Style of keyword recognition: #f or 'prefix
     case-insensitive no      Convert symbols to lower case.
     positions        yes     Record positions of source code expressions.
     copy             no      Copy source code expressions.

Notice that while Standard Scheme is case insensitive, to ease translation of other Lisp dialects, notably Emacs Lisp, into Guile, Guile is case-sensitive by default.

To make Guile case insensitive, you can type

     (read-enable 'case-insensitive)