1
0
Fork 0

Merge branch 'master' of omar-polo/tinmop into master

This commit is contained in:
cage 2021-05-28 18:23:54 +00:00 committed by Gogs
commit 9c09ed1fad
2 changed files with 5 additions and 3 deletions

View File

@ -63,7 +63,9 @@
(let ((error-message
(_ "No editor found, please configure the 'editor' directive in your configuration file"))
(editor (or (swconf:external-editor)
(getenv "EDITOR"))))
(getenv "VISUAL")
(getenv "EDITOR")
"ed")))
(if (null editor)
(error error-message)
(let ((space (cl-ppcre:scan "\\s" editor)))

View File

@ -757,8 +757,8 @@
4))
(defun external-editor ()
(access-non-null-conf-value *software-configuration*
+key-editor+))
(access:access *software-configuration*
+key-editor+))
(defun color-regexps ()
(access:accesses *software-configuration*