1
0
Fork 0

- 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
1 changed files with 1 additions and 1 deletions

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))