mirror of https://codeberg.org/cage/tinmop/
Merge branch 'master' of omar-polo/tinmop into master
This commit is contained in:
commit
9c09ed1fad
|
@ -63,7 +63,9 @@
|
||||||
(let ((error-message
|
(let ((error-message
|
||||||
(_ "No editor found, please configure the 'editor' directive in your configuration file"))
|
(_ "No editor found, please configure the 'editor' directive in your configuration file"))
|
||||||
(editor (or (swconf:external-editor)
|
(editor (or (swconf:external-editor)
|
||||||
(getenv "EDITOR"))))
|
(getenv "VISUAL")
|
||||||
|
(getenv "EDITOR")
|
||||||
|
"ed")))
|
||||||
(if (null editor)
|
(if (null editor)
|
||||||
(error error-message)
|
(error error-message)
|
||||||
(let ((space (cl-ppcre:scan "\\s" editor)))
|
(let ((space (cl-ppcre:scan "\\s" editor)))
|
||||||
|
|
|
@ -757,7 +757,7 @@
|
||||||
4))
|
4))
|
||||||
|
|
||||||
(defun external-editor ()
|
(defun external-editor ()
|
||||||
(access-non-null-conf-value *software-configuration*
|
(access:access *software-configuration*
|
||||||
+key-editor+))
|
+key-editor+))
|
||||||
|
|
||||||
(defun color-regexps ()
|
(defun color-regexps ()
|
||||||
|
|
Loading…
Reference in New Issue