Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
How can I force GCL to print in lower case?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
David Finton  
View profile  
 More options Apr 3 1995, 3:00 am
Newsgroups: comp.lang.lisp
From: fin...@homer.cs.wisc.edu (David Finton)
Date: 1995/04/03
Subject: How can I force GCL to print in lower case?
Is there a system variable I can set which will force GCL to
print in lower case?  For example, if I want to print out
a list (1 2 3 t e) I get: (1 2 3 T E), which I don't want.

In Allegro Common Lisp, we compiled it with an option which
gave lower-case output as the default.  Well, I have a GCL
binary, and I'm not in a position to recompile it, so I'm
hoping there's a switch somewhere which would have the same
effect.

Thanks in advance,

David Finton


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Apr 3 1995, 3:00 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.no>
Date: 1995/04/03
Subject: Re: How can I force GCL to print in lower case?
[David Finton]

|   Is there a system variable I can set which will force GCL to print in
|   lower case?  For example, if I want to print out a list (1 2 3 t e) I
|   get: (1 2 3 T E), which I don't want.

looks like you want to bind *PRINT-CASE* to :DOWNCASE.

|   In Allegro Common Lisp, we compiled it with an option which gave
|   lower-case output as the default.  Well, I have a GCL binary, and I'm
|   not in a position to recompile it, so I'm hoping there's a switch
|   somewhere which would have the same effect.

the above is described in CLtL1.

#<Erik>
--
the greatest obstacle to communication
is the illusion that it has already taken place


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Barry Margolin  
View profile  
 More options Apr 10 1995, 3:00 am
Newsgroups: comp.lang.lisp
From: bar...@nic.near.net (Barry Margolin)
Date: 1995/04/10
Subject: Re: How can I force GCL to print in lower case?

In article <3005937741.475...@naggum.no> Erik Naggum <e...@naggum.no> writes:
>[David Finton]
>|   Is there a system variable I can set which will force GCL to print in
>|   lower case?  For example, if I want to print out a list (1 2 3 t e) I
>|   get: (1 2 3 T E), which I don't want.
>looks like you want to bind *PRINT-CASE* to :DOWNCASE.

Since *PRINT-CASE* is a relatively recent addition to Common Lisp, GCL
might not have it.  In that case, you can use the ~(...~) controls in
FORMAT to force output to lower case.
--
Barry Margolin
BBN Planet Corporation, Cambridge, MA
bar...@bbnplanet.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
William Paul Vrotney  
View profile  
 More options Apr 11 1995, 3:00 am
Newsgroups: comp.lang.lisp
From: vrot...@netcom.com (William Paul Vrotney)
Date: 1995/04/11
Subject: Re: How can I force GCL to print in lower case?

In article <3mc3en$...@tools.near.net> bar...@nic.near.net (Barry Margolin) writes:
>   In article <3005937741.475...@naggum.no> Erik Naggum <e...@naggum.no> writes:
>   >[David Finton]

>   >|   Is there a system variable I can set which will force GCL to print in
>   >|   lower case?  For example, if I want to print out a list (1 2 3 t e) I
>   >|   get: (1 2 3 T E), which I don't want.

>   >looks like you want to bind *PRINT-CASE* to :DOWNCASE.

>   Since *PRINT-CASE* is a relatively recent addition to Common Lisp, GCL
>   might not have it.  In that case, you can use the ~(...~) controls in
>   FORMAT to force output to lower case.
>   --

GCL version 1.1 has *PRINT-CASE*.

--

William P. Vrotney - vrot...@netcom.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Naggum  
View profile  
 More options Apr 11 1995, 3:00 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.no>
Date: 1995/04/11
Subject: Re: How can I force GCL to print in lower case?
[William Paul Vrotney]

|   In article <3mc3en$...@tools.near.net> bar...@nic.near.net (Barry Margolin) writes:
|  
|   >   In article <3005937741.475...@naggum.no> Erik Naggum <e...@naggum.no> writes:
|   >   >[David Finton]
|   >
|   >   >|   Is there a system variable I can set which will force GCL to print in
|   >   >|   lower case?  For example, if I want to print out a list (1 2 3 t e) I
|   >   >|   get: (1 2 3 T E), which I don't want.
|   >
|   >   >looks like you want to bind *PRINT-CASE* to :DOWNCASE.
|   >
|   >   Since *PRINT-CASE* is a relatively recent addition to Common Lisp, GCL
|   >   might not have it.  In that case, you can use the ~(...~) controls in
|   >   FORMAT to force output to lower case.
|   >   --
|  
|   GCL version 1.1 has *PRINT-CASE*.

while we're at it, AKCL version 1.530, compiled on April 26, 1991, also has
*PRINT-CASE*.  that's the oldest running version of any *KCL I have around.
GCL 1.0 also had it.

this is not intended to detract from the useful advice about ~(...~).

#<Erik>
--
sufficiently advanced political correctness is indistinguishable from irony


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »