-
Notifications
You must be signed in to change notification settings - Fork 77
Add :PRINT-CASE argument to quickload, set :UPCASE by default #186
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
Conversation
Some systems don't load correctly when *PRINT-CASE* isn't :UPCASE.
This is really interesting! What systems are affected and how did you find
out?
…On Wed, Jun 12, 2019 at 11:15 AM Jéssica Milaré ***@***.***> wrote:
Some systems don't load correctly when *PRINT-CASE* isn't :UPCASE.
------------------------------
You can view, comment on, or merge this pull request online at:
#186
Commit Summary
- Add :PRINT-CASE argument to quickload, set :UPCASE by default
File Changes
- *M* quicklisp/client.lisp
<https://github.com/quicklisp/quicklisp-client/pull/186/files#diff-0>
(8)
Patch Links:
- https://github.com/quicklisp/quicklisp-client/pull/186.patch
- https://github.com/quicklisp/quicklisp-client/pull/186.diff
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#186?email_source=notifications&email_token=AACPNLJFYEI55VQERIPI6KTP2EHJNA5CNFSM4HXKBSF2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4GZC5VFA>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AACPNLMKW5KDSO5TDGZDV7LP2EHJNANCNFSM4HXKBSFQ>
.
|
I found it out because I don't like a REPL that looks like it is screaming lol. So I set |
Thanks for the context. I'm hesitant to add this because there are likely a bunch of other variables that would affect things in a similar way. The first one that comes to mind is |
Also, style-wise, I'd prefer something like this: |
I don't see any problem including some (maybe many) specials into quickload's lambda list. Some standard functions (e.g. I'll change the style. |
I don't understand - how is |
If the user has to type that, that is a lot to type and doesn't integrate well with SLIME, LEM editor, etc. IMHO, the default way of calling the function should work as-is. |
Ahh, thanks, I see the argument. Despite the clearly written title and clear code, I misinterpreted this as providing an argument to bind the special variable without changing it on the way in. Now that I understand, I'm not comfortable changing |
Some systems don't load correctly when
*PRINT-CASE*
isn't:UPCASE
.