aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-02-14 16:32:01 +0000
committerRichard M. Stallman1995-02-14 16:32:01 +0000
commit8eb34fb9f541e8e8faabdd4206fd47f10b633eb1 (patch)
tree8072b41cc7f1f41b3551c0d51bfdab32ed936881 /src
parent41e5bf664f53d97f620e0297ba023b3ae26199ed (diff)
downloademacs-8eb34fb9f541e8e8faabdd4206fd47f10b633eb1.tar.gz
emacs-8eb34fb9f541e8e8faabdd4206fd47f10b633eb1.zip
(struct buffer): New field file_truename.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 76cbf0ba4c0..c19e4f30846 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -386,6 +386,9 @@ struct buffer
386 /* This holds the point value before the last scroll operation. 386 /* This holds the point value before the last scroll operation.
387 Explicitly setting point sets this to nil. */ 387 Explicitly setting point sets this to nil. */
388 Lisp_Object point_before_scroll; 388 Lisp_Object point_before_scroll;
389
390 /* Truename of the visited file, or nil. */
391 Lisp_Object file_truename;
389 }; 392 };
390 393
391/* This points to the current buffer. */ 394/* This points to the current buffer. */