Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
3c6a643d
Commit
3c6a643d
authored
33 years ago
by
chiles
Browse files
Options
Downloads
Patches
Plain Diff
Fixed some syntax constants to make 8-bit chars work for Eric (our friend!).
parent
8c46bef3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hemlock/charmacs.lisp
+4
-6
4 additions, 6 deletions
hemlock/charmacs.lisp
with
4 additions
and
6 deletions
hemlock/charmacs.lisp
+
4
−
6
View file @
3c6a643d
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/charmacs.lisp,v 1.1.1.
4
1991/0
2
/0
8
1
6:33:15 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/charmacs.lisp,v 1.1.1.
5
1991/0
6
/0
4
1
5:07:19 chiles
Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -38,14 +38,12 @@
...
@@ -38,14 +38,12 @@
;;;; Stuff for the Syntax table functions (syntax)
;;;; Stuff for the Syntax table functions (syntax)
(
defconstant
syntax-char-code-limit
128
(
defconstant
syntax-char-code-limit
char-code-limit
"The highest char-code which a character argument to the syntax
"The highest char-code which a character argument to the syntax
table functions may have."
)
table functions may have."
)
(
defconstant
syntax-char-code-mask
#x+7f
"Mask we AND with characters given to syntax table functions to blow away
bits we don't want."
)
(
defmacro
syntax-char-code
(
char
)
(
defmacro
syntax-char-code
(
char
)
`
(
logand
syntax-char-code-mask
(
char-code
,
char
))
)
`
(
char-code
,
char
))
;;;; Stuff for the command interpreter (interp)
;;;; Stuff for the command interpreter (interp)
;;;
;;;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment