Skip to content

Commit

Permalink
Add maintainer note
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 committed Jan 6, 2024
1 parent 3dfd08b commit 46b8abc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ What this project tries to achieve are listed here.
- [x] syntax highlighting of input texts.
- [x] paren-matching.
- [ ] implementation independence: builds on SBCL and CCL. Segfaults on ECL.
- [ ] autoindentation

# Screenshots

Expand Down
4 changes: 3 additions & 1 deletion src/main.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
")

(defvar *copy* "(C) 2017-2018 TANI Kojiro <kojiro0531@gmail.com>")
(defvar *maintain* "Maintained by: Shubhamkar Ayare <shubhamayare@yahoo.co.in>
Github: https://github.com/digikar99/cl-repl")

(defvar *versions*
(format nil "cl-repl ~a on ~?~a ~a"
Expand Down Expand Up @@ -95,7 +97,7 @@
(with-cursor-hidden
(when show-logo
(format t (color *logo-color* *logo* :prompt-chars nil)))
(format t "~a~%~a~2%" *versions* *copy*))
(format t "~a~%~a~%~a~2%" *versions* *copy* *maintain*))
(in-package :cl-user)
(unwind-protect
(let ((*debugger-hook* #'debugger))
Expand Down

0 comments on commit 46b8abc

Please sign in to comment.