diff options
| author | Stefan Monnier | 2020-05-22 23:36:57 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2020-05-22 23:36:57 -0400 |
| commit | cde0589818ec1d8d663c707d1d8af19a9d8b0752 (patch) | |
| tree | 29ab90a8b94daf6ec669c5d7476db29e2e7678e3 | |
| parent | c67f8f298a21be61362d049cfff5273f7d010d75 (diff) | |
| download | emacs-cde0589818ec1d8d663c707d1d8af19a9d8b0752.tar.gz emacs-cde0589818ec1d8d663c707d1d8af19a9d8b0752.zip | |
* lisp/doc-view.el (doc-view-presentation): Fix thinko
| -rw-r--r-- | lisp/doc-view.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 3cac2629a9c..de342f1519e 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el | |||
| @@ -2050,8 +2050,8 @@ See the command `doc-view-mode' for more information on this mode." | |||
| 2050 | (when (memq (selected-frame) (alist-get 'frames attrs)) | 2050 | (when (memq (selected-frame) (alist-get 'frames attrs)) |
| 2051 | (let ((geom (alist-get 'geometry attrs))) | 2051 | (let ((geom (alist-get 'geometry attrs))) |
| 2052 | (when geom | 2052 | (when geom |
| 2053 | (setq monitor-top (nth 0 geom)) | 2053 | (setq monitor-left (nth 0 geom)) |
| 2054 | (setq monitor-left (nth 1 geom)) | 2054 | (setq monitor-top (nth 1 geom)) |
| 2055 | (setq monitor-width (nth 2 geom)) | 2055 | (setq monitor-width (nth 2 geom)) |
| 2056 | (setq monitor-height (nth 3 geom)))))) | 2056 | (setq monitor-height (nth 3 geom)))))) |
| 2057 | (let ((frame (make-frame | 2057 | (let ((frame (make-frame |