1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-06-05 01:09:17 +02:00

- load a module even if loading an URL has been requested from the command line.

This commit is contained in:
cage
2021-04-10 21:03:34 +02:00
parent 540dea6825
commit ad28c940e2

View File

@@ -62,7 +62,7 @@ So the whole list is like: '((\"foo\" \"bar\") (\"old\" \"new\") ...)")
(original-string (line-oriented-window:normal-text row))
(skipped-row-types (list 'gemini-parser:pre-line
'gemini-parser:vertical-space)))
(if (member original-type skipped-row-types)
(if (find-if (lambda (a) (typep original-type a)) skipped-row-types)
row
(let* ((simple-string (tui:tui-string->chars-string original-string))
(replaced-string simple-string))