diff options
author | Thanos Apollo <[email protected]> | 2024-01-19 16:21:10 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-19 16:21:10 +0200 |
commit | 63043374154c6c8e2397e0cc8de00f2c05e049b5 (patch) | |
tree | d53d7edecfc304f57b2a78330df583c2ec829c2c /gnosis-dev.el | |
parent | fd42525da74189c7c6d1eddd17fa15cfcc643cbd (diff) | |
parent | 338bafa7eb8497fbf9ce514ae6fc9531e07ebfce (diff) |
Merge branch 'version-0.1.4'0.1.4
- Update gnosis commentary & documentation
- Refactor note creation & review
Values for note types are not hard coded anymore, making gnosis easier
to extend & maintain.
- Apply suggestions from emacs-devel with a few adjustments
Changes suggested by Philip Kaludercic via the emacs-devel mailing
list
<https://lists.gnu.org/archive/html/emacs-devel/2024-01/msg00682.html>
Diffstat (limited to 'gnosis-dev.el')
-rw-r--r-- | gnosis-dev.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnosis-dev.el b/gnosis-dev.el index 4387ce9..6801290 100644 --- a/gnosis-dev.el +++ b/gnosis-dev.el @@ -22,11 +22,10 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <https://www.gnu.org/licenses/>. -;; Random functions to make development/testing of gnosis.el easier - ;;; Commentary: -;; Development tools used for gnosis +;; Development module for gnosis, to make development of gnosis.el +;; easier by creating a testing environment with random inputs. ;;; Code: @@ -110,7 +109,7 @@ by the thoracodorsal nerve." If ask nil, leave development env" (interactive) - (let ((ask (y-or-n-p "Start development env?")) + (let ((ask (y-or-n-p "Start development env (n for exit)?")) (testing-dir (concat gnosis-dir "/testing"))) (if ask (progn |