aboutsummaryrefslogtreecommitdiff
path: root/nov.el
diff options
context:
space:
mode:
Diffstat (limited to 'nov.el')
-rw-r--r--nov.el22
1 files changed, 11 insertions, 11 deletions
diff --git a/nov.el b/nov.el
index 193d1f3..585c1b4 100644
--- a/nov.el
+++ b/nov.el
@@ -648,17 +648,17 @@ the HTML is rendered with `nov-render-html-function'."
(defun nov-visit-relative-file (filename target)
"Visit the document as specified by FILENAME and TARGET."
- (let ((index nov-documents-index)
- (shr-target-id target))
- (when (not (zerop (length filename)))
- (let* ((current-path (cdr (aref nov-documents nov-documents-index)))
- (directory (file-name-directory current-path))
- (path (file-truename (nov-make-path directory filename)))
- (index (nov-find-document
- (lambda (doc) (equal path (file-truename (cdr doc)))))))
- (when (not index)
- (error "Couldn't locate document"))
- (nov-goto-document index))))
+ (when (not (zerop (length filename)))
+ (let* ((current-path (cdr (aref nov-documents nov-documents-index)))
+ (directory (file-name-directory current-path))
+ (path (file-truename (nov-make-path directory filename)))
+ (index (nov-find-document
+ (lambda (doc) (equal path (file-truename (cdr doc)))))))
+ (when (not index)
+ (error "Couldn't locate document"))
+ (setq nov-documents-index index)))
+ (let ((shr-target-id target))
+ (nov-goto-document nov-documents-index))
(when target
(let ((pos (next-single-property-change (point-min) 'shr-target-id)))
(when (not pos)