Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gendl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
47
Issues
47
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gendl
gendl
Commits
77569cc8
Commit
77569cc8
authored
May 26, 2013
by
Dave Cooper
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request
#119
from nicklevine/slime-devel
Crinkles 2013-05-23 #
#1
,2,5,6
parents
b861cf4a
7aaf07db
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
229 additions
and
137 deletions
+229
-137
emacs/glime.lisp
emacs/glime.lisp
+221
-124
gendl.asd
gendl.asd
+1
-1
load-gendl.lisp
load-gendl.lisp
+7
-12
No files found.
emacs/glime.lisp
100644 → 100755
View file @
77569cc8
This diff is collapsed.
Click to expand it.
gendl.asd
View file @
77569cc8
...
...
@@ -8,7 +8,7 @@
#+
asdf-encoding
:encoding
#+
asdf-encoding
:utf-8
:version
"2013031600"
:depends-on
(
:cl-lite
:gwl-graphics
:tasty
:robot
:yadd
)
:components
(
(
:file
#+
:swank
"emacs/glime"
)))
:components
(
#+
:swank
(
:file
"emacs/glime"
)))
(
defmethod
perform
:after
((
op
load-op
)
(
system
(
eql
(
find-system
"gendl"
))))
...
...
load-gendl.lisp
View file @
77569cc8
...
...
@@ -54,24 +54,19 @@
#+
#:nil
(
asdf:initialize-source-registry
`
(
:source-registry
(
:tree
,
gendl
:inherit-configuration
)))
;; 3. Load gendl plus dependencies.
;; 3. Load gendl plus dependencies
(including glime)
.
(
funcall
(
find-symbol
(
string
'quickload
)
:ql
)
:gendl
)
;; 4. Load the slime integration. Ideally this should be done
;; (conditionally) by the quickload above.
#+
:swank
(
load
(
compile-file
(
merge-pathnames
"emacs/glime.lisp"
gendl
)))
;; 4a. This is a workaround for https://bugs.launchpad.net/slime/+bug/1175550
;; 3a. This is a workaround for https://bugs.launchpad.net/slime/+bug/1175550
;; "#+lispworks Gray slime-output-stream doesn't handle non base-chars"
#+
:lispworks
(
setf
(
slot-value
*standard-output*
'swank-backend::buffer
)
(
coerce
(
slot-value
*standard-output*
'swank-backend::buffer
)
'lw:simple-text-string
))
(
let
((
swank-backend-buffer
(
find-symbol
"BUFFER"
"SWANK-BACKEND"
)))
(
setf
(
slot-value
*standard-output*
swank-backend-buffer
)
(
coerce
(
slot-value
*standard-output*
swank-backend-buffer
)
'lw:simple-text-string
)))
;;
5
. Start gendl.
;;
4
. Start gendl.
(
let
((
starter
(
find-symbol
(
string
'start-gendl!
)
:gendl
)))
(
funcall
starter
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment