diff options
author | Yuuki Harano <masm+github@masm11.me> | 2021-11-11 00:39:53 +0900 |
---|---|---|
committer | Yuuki Harano <masm+github@masm11.me> | 2021-11-11 00:39:53 +0900 |
commit | 4dd1f56f29fc598a8339a345c2f8945250600602 (patch) | |
tree | af341efedffe027e533b1bcc0dbf270532e48285 /lisp/doc-view.el | |
parent | 4c49ec7f865bdad1629d2f125f71f4e506b258f2 (diff) | |
parent | 810fa21d26453f898de9747ece7205dfe6de9d08 (diff) | |
download | emacs-4dd1f56f29fc598a8339a345c2f8945250600602.tar.gz emacs-4dd1f56f29fc598a8339a345c2f8945250600602.tar.bz2 emacs-4dd1f56f29fc598a8339a345c2f8945250600602.zip |
Merge branch 'master' of git.savannah.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'lisp/doc-view.el')
-rw-r--r-- | lisp/doc-view.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index a0ffcac9f80..088ca5bfeae 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el @@ -41,7 +41,7 @@ ;; ;; C-x C-f ~/path/to/document RET ;; -;; and the document will be converted and displayed, if your emacs supports PNG +;; and the document will be converted and displayed, if your Emacs supports PNG ;; images. With `C-c C-c' you can toggle between the rendered images ;; representation and the source text representation of the document. ;; @@ -727,7 +727,7 @@ It's a subdirectory of `doc-view-cache-directory'." (file-name-as-directory (expand-file-name (concat (thread-last - (file-name-nondirectory doc-view--buffer-file-name) + (file-name-nondirectory doc-view--buffer-file-name) ;; bug#13679 (subst-char-in-string ?% ?_) ;; arc-mode concatenates archive name and file name @@ -788,7 +788,7 @@ OpenDocument format)." (doc-view-reconvert-doc))))) (defun doc-view-shrink (factor) - "Shrink the document." + "Shrink the document by FACTOR." (interactive (list doc-view-shrink-factor)) (doc-view-enlarge (/ 1.0 factor))) @@ -809,7 +809,7 @@ OpenDocument format)." FACTOR defaults to `doc-view-shrink-factor'. The actual adjustment made depends on the final component of the -key-binding used to invoke the command, with all modifiers removed: +keybinding used to invoke the command, with all modifiers removed: +, = Increase the image scale by FACTOR - Decrease the image scale by FACTOR @@ -1197,7 +1197,7 @@ Start by converting PAGES, and then the rest." (defun doc-view-current-cache-doc-pdf () "Return the name of the doc.pdf in the current cache dir. - This file exists only if the current document isn't a PDF or PS file already." +This file exists only if the current document isn't a PDF or PS file already." (expand-file-name "doc.pdf" (doc-view--current-cache-dir))) (defun doc-view-doc->txt (txt callback) |