Skip to content

Commit c85f996

Browse files
committed
Use Glisp instead of Zygomys
While it sucks to switch to an unmaintained project, we don't lose anything from this switch, and we gain a killer feature: gomacs can be staticly compiled (and it is with default settings). Glisp's api also provides more idiomatic Go, and it seems to be a tad quicker, too.
1 parent ed70dd5 commit c85f996

File tree

4 files changed

+173
-166
lines changed

4 files changed

+173
-166
lines changed

HACKING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ All very straightforward!
7171

7272
## Lisp hacking
7373

74-
[Make sure to read the Zygomys documentation.](https://github.com/glycerine/zygomys/wiki)
75-
Note that Zygomys catches most crashes, and writes out the stacktrace to the
76-
file crash.log in the current directory. If you get stuck (sometimes Zygomys will
74+
[Make sure to read the Glisp documentation.](https://github.com/zhemao/glisp/wiki)
75+
Note that Glisp catches most crashes, and writes out the stacktrace to the
76+
file crash.log in the current directory. If you get stuck (sometimes Glisp will
7777
crash and not get restarted) hit the `<f12>` key, which will quit Gomacs
7878
immediately.
7979

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![A screenshot showing Gomacs editing this README and its own source code](gomacs.png)
44

55
Gomacs is an Emacs clone for the terminal. Unlike many other mini-Emacsen, it
6-
has an embedded Lisp, [powered by Zygomys.](https://github.com/glycerine/zygomys)
6+
has an embedded Lisp, [powered by Glisp.](https://github.com/zhemao/glisp)
77
This puts it in the realm of true Emacs! It also supports primitive syntax
88
highlighting for C and Go.
99

@@ -38,7 +38,7 @@ yet - I'll try to keep this list up to date!
3838
- `C-z` - Suspend Gomacs (Linux only)
3939
- `M-x` - Run named command
4040
- `<f12>` - Panic key - quit emacs immediately without saving changes. Useful if
41-
Zygomys falls down (which may happen if you do a lot of hacking on the editor's
41+
Glisp falls down (which may happen if you do a lot of hacking on the editor's
4242
internals)
4343

4444
### Getting help
@@ -101,7 +101,7 @@ yet - I'll try to keep this list up to date!
101101
## Customization
102102

103103
Emacs loads from ~/.gomacs.lisp on startup and executes the content of this file.
104-
Check out the Zygomys documentation for information on how the language works!
104+
Check out the Glisp documentation for information on how the language works!
105105
Some functions to get you started…
106106

107107
- `(emacsbindkey arg1 arg2..)` - Bind arg1 (in standard Emacs C-\*/M-\* notation,

commands.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"bytes"
55
"errors"
6-
"github.com/glycerine/zygomys/repl"
6+
"github.com/zhemao/glisp/interpreter"
77
"strings"
88
)
99

@@ -17,7 +17,7 @@ var funcnames map[string]*CommandFunc
1717

1818
type CommandFunc struct {
1919
Name string
20-
Com func(env *zygo.Glisp)
20+
Com func(env *glisp.Glisp)
2121
}
2222

2323
func WalkCommandTree(root *CommandList, pre string) string {
@@ -95,7 +95,7 @@ func DescribeKeyBriefly() {
9595
editorSetPrompt("")
9696
}
9797

98-
func RunCommand(env *zygo.Glisp) {
98+
func RunCommand(env *glisp.Glisp) {
9999
cmdname := StrToCmdName(editorPrompt("Run command", nil))
100100
cmd := funcnames[cmdname]
101101
if cmd != nil && cmd.Com != nil {

0 commit comments

Comments
 (0)