File tree 7 files changed +35
-11
lines changed
7 files changed +35
-11
lines changed Original file line number Diff line number Diff line change 1
- ; ;; Emacs4CL 0.5.0.dev <https://github.com/susam/emacs4cl>
1
+ ; ;; Emacs4CL 0.5.0 <https://github.com/susam/emacs4cl>
2
2
3
3
; ; Customize user interface.
4
4
(when (display-graphic-p )
Original file line number Diff line number Diff line change 1
- 0.5.0 (UNRELEASED )
1
+ 0.5.0 (2023-06-27 )
2
2
------------------
3
3
4
4
### Changed
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
===========
3
3
4
- Copyright (c) 2020-2022 Susam Pal
4
+ Copyright (c) 2020-2023 Susam Pal
5
5
6
6
Permission is hereby granted, free of charge, to any person obtaining
7
7
a copy of this software and associated documentation files (the
Original file line number Diff line number Diff line change 25
25
26
26
[ ![ Screenshot of Emacs] [ screenshot ]] [ screenshot ]
27
27
28
- [ screenshot ] : https://i.imgur.com/9LoZzHz .png
28
+ [ screenshot ] : https://susam.github.io/blob/img/emacs4cl/emacs4cl-0.5.0 .png
29
29
30
30
If you are already comfortable with Emacs and only want to understand
31
31
the content of the [ ` .emacs ` ] file, you can skip ahead directly to the
@@ -416,11 +416,7 @@ them. The fingers do what the mind wants effortlessly due to muscle
416
416
memory.
417
417
418
418
While you are getting used to the Emacs key bindings, keep this [GNU
419
- Emacs Reference Card][emacs-ref] handy. Also, if you are using it in
420
- GUI mode, then the menu options can be quite helpful. The Emacs
421
- initialization file that comes with this project hides the menu bar by
422
- default but you can always invoke the menu bar any time by typing
423
- `<f10>`.
419
+ Emacs Reference Card][emacs-ref] handy.
424
420
425
421
[emacs-ref]: https://www.gnu.org/software/emacs/refcards/pdf/refcard.pdf
426
422
Original file line number Diff line number Diff line change 1
1
loc :
2
2
f () { grep -vE ' ^$$|^;|^ *".*"$$' ../.emacs; }; f; echo ' ;;;;' ; f | wc -l
3
+
4
+ demo :
5
+ mv ../.git ../git
6
+ emacs -q -l ../.emacs -l demo.el
7
+ mv ../git ../.git
Original file line number Diff line number Diff line change @@ -7,7 +7,12 @@ Release Checklist
7
7
- Update version number in .emacs.
8
8
- Update year in LICENSE.md.
9
9
- Update CHANGES.md.
10
- - Add new screenshot (120x32) if necessary.
10
+ - Add new screenshot if necessary.
11
+
12
+ ```
13
+ make demo
14
+ ```
15
+
11
16
- Commit changes.
12
17
13
18
```
@@ -23,4 +28,4 @@ Release Checklist
23
28
git commit -em "Set version to $VER"
24
29
git tag $VER -m "Emacs4CL $VER"
25
30
git push origin main $VER
26
- ```
31
+ ```
Original file line number Diff line number Diff line change
1
+ (set-frame-size (selected-frame ) 120 32 )
2
+ (find-file " example.lisp" )
3
+ (split-window-right )
4
+ (slime )
5
+ (other-window 1 )
6
+ (sleep-for 1.0 )
7
+ (slime-eval-buffer)
8
+ (other-window 1 )
9
+ (sleep-for 0.2 )
10
+ (execute-kbd-macro (kbd " (hello-world) RET" ))
11
+ (sleep-for 0.2 )
12
+ (execute-kbd-macro (kbd " (factorial SPC 6) RET" ))
13
+ (sleep-for 0.2 )
14
+ (execute-kbd-macro (kbd " (trace SPC factorial) RET" ))
15
+ (sleep-for 0.2 )
16
+ (execute-kbd-macro (kbd " (factorial SPC 6) RET" ))
17
+ (sleep-for 0.2 )
18
+ (execute-kbd-macro (kbd " (fibonacci SPC 7) RET" ))
You can’t perform that action at this time.
0 commit comments