diff options
author | Thanos Apollo <[email protected]> | 2024-08-06 23:44:48 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-06 23:47:22 +0300 |
commit | d0c1f48a2d68b7021dfa9130445c0adb46051807 (patch) | |
tree | c8606c1fee6712686686400cdd2aab4c614d60ce | |
parent | 6051ee407ce44df36b9b2d8c10f22298f7b35ddc (diff) |
edit-note: Remove unused optional args.
-rw-r--r-- | gnosis.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1722,7 +1722,7 @@ editing NOTE with it's new contents. After done editing, call `gnosis-review-actions' with SUCCESS NOTE NOTE-COUNT." (gnosis-edit-save-exit) - (gnosis-edit-note note t) + (gnosis-edit-note note) (recursive-edit) (gnosis-review-actions success note note-count)) @@ -1834,7 +1834,7 @@ NOTE-COUNT: Total notes to be commited for session." (put-text-property (match-beginning 0) (match-end 0) 'read-only t))) (goto-char (point-min))) -(cl-defun gnosis-edit-note (id &optional (recursive-edit nil) (dashboard "notes")) +(cl-defun gnosis-edit-note (id) "Edit the contents of a note with the given ID. This function creates an Emacs Lisp buffer named *gnosis-edit* on the |