branch: master
commit e9612823ff39585d001712309a50ef54e9456868
Author: Ikumi Keita <[email protected]>
Commit: Ikumi Keita <[email protected]>
Avoid emacs 25 error
* preview.el.in (preview-get-dpi): Use `cl-cdddr' instead of `cdddr'.
---
preview.el.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/preview.el.in b/preview.el.in
index 365e157c..5c327956 100644
--- a/preview.el.in
+++ b/preview.el.in
@@ -3636,7 +3636,7 @@ name(\\([^)]+\\))\\)\\|\
(mm-dims (cdr (assoc 'mm-size monitor-attrs)))
(mm-width (nth 0 mm-dims))
(mm-height (nth 1 mm-dims))
- (pixel-dims (cdddr (assoc 'geometry monitor-attrs)))
+ (pixel-dims (cl-cdddr (assoc 'geometry monitor-attrs)))
(pixel-width (nth 0 pixel-dims))
(pixel-height (nth 1 pixel-dims)))
(cons (/ (* 25.4 pixel-width) mm-width)