Skip to content

Commit 7bfcd12

Browse files
committed
fix(import): remove escape backslash chars
1 parent 652913d commit 7bfcd12

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/import.lisp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,4 @@
135135

136136
(defun getSummaryDesc (line)
137137
"Gets the summary or description from the line and returns it as a string."
138-
(subseq (subseq line (+ (position #\: line :test #'equal) 1)) 0 (length (subseq line (+ (position #\: line :test #'equal) 1)))))
139-
1)))
138+
(remove #\\ (subseq (subseq line (+ (position #\: line :test #'equal) 1)) 0 (length (subseq line (+ (position #\: line :test #'equal) 1))))))

0 commit comments

Comments
 (0)