summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-17 13:42:28 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-17 13:42:28 -0600
commitbf4df6e1c4bd1220e2e643307cc63e8a83e554b5 (patch)
tree959a669537d6cde5f7905060f61fe87f4b33991d /doc
parentdfd36e55314378d56d41e029dff5d3cea8b1eb49 (diff)
downloadtdegraphics-bf4df6e1c4bd1220e2e643307cc63e8a83e554b5.tar.gz
tdegraphics-bf4df6e1c4bd1220e2e643307cc63e8a83e554b5.zip
Fix unintended renaming in commit dfd36e55.
Diffstat (limited to 'doc')
-rw-r--r--doc/kdvi/index.docbook8
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>