Skip to content

Commit ba82e03

Browse files
committed
- [X] Avoid version function and var. Use directly the package information.
1 parent 15bd139 commit ba82e03

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

psci.el

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,6 @@
5858
(defvar psci/buffer-name "psci"
5959
"Buffer name of the psci buffer.")
6060

61-
(defconst *psci/version* "0.0.4" "The version of psci.")
62-
63-
;;;###autoload
64-
(defun psci/version ()
65-
"Display the version of the mode."
66-
(interactive)
67-
(message "psci-mode version - %s" *psci/version*))
68-
6961
(defun psci/process-name (buffer-name)
7062
"Compute the buffer's process name based on BUFFER-NAME."
7163
(format "*%s*" buffer-name))
@@ -256,8 +248,5 @@ We chose to load the .psci file's content (the purescript doc proposes its use).
256248
:keymap inferior-psci-mode-map
257249
:group 'psci)
258250

259-
;; Add some default bindings through hook customisation
260-
;; (add-hook 'purescript-mode-hook 'inferior-psci-mode)
261-
262251
(provide 'psci)
263252
;;; psci.el ends here

todo.org

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ CLOSED: [2014-10-29 Wed 18:54]
2727
- [X] Add to el-get - https://github.com/ardumont/el-get/blob/add-psci-recipe/recipes/psci.rcp
2828
- [X] Update documentation regarding installation steps
2929
- [X] Update documentation regarding usage
30-
* DONE 0.0.4 [100%]
30+
* DONE 0.0.4 [90%]
3131
CLOSED: [2014-10-29 Wed 20:08]
3232
- [X] Update version
3333
- [X] Add an interactive command for displaying the current version
@@ -38,3 +38,5 @@ CLOSED: [2014-10-29 Wed 20:08]
3838
- [X] Add a minor mode instead of modifying purescript-mode-map
3939
- [X] Update heading information about the minor-mode activation and setup
4040
- [X] Update documentation about the minor-mode activation and setup
41+
- [X] Avoid version function and var. Use directly the package information.
42+
- [ ] Avoid using / in delimiter and use - instead.

0 commit comments

Comments
 (0)