summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
authorAndreas Politz <politza@hochschule-trier.de>2017-03-18 20:04:43 +0100
committerAndreas Politz <politza@hochschule-trier.de>2017-03-18 20:04:43 +0100
commitc01c8673338c73e92a88d2aa7e3a26ca8417fbfa (patch)
tree180ec2850426da8347adb43460bc2a67d0c727e4 /README.org
parentcc3ed9aeb01f2aad47ee672ef71eac2504238540 (diff)
Fix some typos and wording
Diffstat (limited to 'README.org')
-rw-r--r--README.org10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.org b/README.org
index 39944ae..a4f2268 100644
--- a/README.org
+++ b/README.org
@@ -195,19 +195,19 @@
*** linum-mode
PDF Tools does not work well together with ~linum-mode~ and
activating it in a ~pdf-view-mode~, e.g. via ~global-linum-mode~,
- buffer might make Emacs choke.
+ might make Emacs choke.
*** auto-revert
Autorevert works by polling the file-system every
- ~auto-revert-interval~ seconds optionally combined with some
+ ~auto-revert-interval~ seconds, optionally combined with some
event-based reverting via [[https://www.gnu.org/software/emacs/manual/html_node/elisp/File-Notifications.html][file notification]]. But this currently
does not work reliably, such that Emacs may revert the PDF-buffer
while the corresponding file is still being written to (e.g. by
- LaTeX) and resulting in various errors.
+ LaTeX), leading to a potential error.
With a recent [[https://www.gnu.org/software/auctex/][auctex]] installation, you might want to put the
- following somewhere in your dotemacs, which will revert the buffer
- *after* the compilation process has finished.
+ following somewhere in your dotemacs, which will revert the PDF-buffer
+ *after* the TeX compilation has finished.
#+BEGIN_SRC emacs-lisp
(add-hook 'TeX-after-compilation-finished-functions #'TeX-revert-document-buffer)
#+END_SRC