diff options
| author | jao <jao@gnu.org> | 2025-11-05 18:22:08 +0000 |
|---|---|---|
| committer | jao <jao@gnu.org> | 2025-11-05 18:22:31 +0000 |
| commit | 83bd6a98d80180dc0e2a7b93d8362d82924ba5ab (patch) | |
| tree | 1e17e2ce8073e9d1ad7bacc12eeb4852918b929d /lib/eos | |
| parent | b973591d73eb76a2e95c6175a0af15b5f11e82c4 (diff) | |
| download | elibs-83bd6a98d80180dc0e2a7b93d8362d82924ba5ab.tar.gz elibs-83bd6a98d80180dc0e2a7b93d8362d82924ba5ab.tar.bz2 | |
looks and nits
Diffstat (limited to 'lib/eos')
| -rw-r--r-- | lib/eos/jao-afio.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/eos/jao-afio.el b/lib/eos/jao-afio.el index 235aa54..99152b0 100644 --- a/lib/eos/jao-afio.el +++ b/lib/eos/jao-afio.el @@ -72,7 +72,7 @@ (defun jao-afio-open-pdf-session (&optional docs) (interactive) (dolist (doc (or docs (jao-doc-session))) - (when (and doc (file-exists-p doc)) + (when (and (stringp doc) (file-exists-p doc)) (if (jao-pdf-is-pdf-file doc) (jao-open-doc doc) (find-file doc)) (other-window 1))) (other-window 1)) |
