diff options
author | Darrell Anderson <[email protected]> | 2014-02-17 13:42:28 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2014-02-17 13:42:28 -0600 |
commit | bf4df6e1c4bd1220e2e643307cc63e8a83e554b5 (patch) | |
tree | 959a669537d6cde5f7905060f61fe87f4b33991d /doc | |
parent | dfd36e55314378d56d41e029dff5d3cea8b1eb49 (diff) | |
download | tdegraphics-bf4df6e1c4bd1220e2e643307cc63e8a83e554b5.tar.gz tdegraphics-bf4df6e1c4bd1220e2e643307cc63e8a83e554b5.zip |
Fix unintended renaming in commit dfd36e55.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/kdvi/index.docbook | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/kdvi/index.docbook b/doc/kdvi/index.docbook index d9f59a94..0c8e1ce5 100644 --- a/doc/kdvi/index.docbook +++ b/doc/kdvi/index.docbook @@ -508,7 +508,7 @@ Works only for visiting one buffer at a time." (this-buf-modified-p nil)) ;;; the following is copied from server-visit-files, with ;;; a modification for the `verify-visited-file-modtime' test - (if (and buf (set -buffer buf)) + (if (and buf (set-buffer buf)) (if (file-exists-p filen) ;;; if the file has changed on disk, reload it ;;; using `find-file-noselect' @@ -524,10 +524,10 @@ Works only for visiting one buffer at a time." t) (set buf (find-file-noselect filen))) (set this-buf-modified-p (buffer-modified-p buf)) - (set -buffer buf) - (set -buffer-modified-p nil) + (set-buffer buf) + (set-buffer-modified-p nil) ad-do-it - (set -buffer-modified-p this-buf-modified-p))) + (set-buffer-modified-p this-buf-modified-p))) </programlisting> </listitem> </itemizedlist> |