comparison src/bufslots.h @ 771:943eaba38521

[xemacs-hg @ 2002-03-13 08:51:24 by ben] The big ben-mule-21-5 check-in! Various files were added and deleted. See CHANGES-ben-mule. There are still some test suite failures. No crashes, though. Many of the failures have to do with problems in the test suite itself rather than in the actual code. I'll be addressing these in the next day or so -- none of the test suite failures are at all critical. Meanwhile I'll be trying to address the biggest issues -- i.e. build or run failures, which will almost certainly happen on various platforms. All comments should be sent to ben@xemacs.org -- use a Cc: if necessary when sending to mailing lists. There will be pre- and post- tags, something like pre-ben-mule-21-5-merge-in, and post-ben-mule-21-5-merge-in.
author ben
date Wed, 13 Mar 2002 08:54:06 +0000
parents af57a77cbc92
children e22b0213b713
comparison
equal deleted inserted replaced
770:336a418893b5 771:943eaba38521
1 /* Definitions of marked slots in buffers 1 /* Definitions of marked slots in buffers
2 Copyright (C) 1990, 1992, 1993 Free Software Foundation, Inc. 2 Copyright (C) 1990, 1992, 1993 Free Software Foundation, Inc.
3 Copyright (C) 2001 Ben Wing.
3 4
4 This file is part of XEmacs. 5 This file is part of XEmacs.
5 6
6 XEmacs is free software; you can redistribute it and/or modify it 7 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the 8 under the terms of the GNU General Public License as published by the
106 107
107 #ifdef MULE 108 #ifdef MULE
108 /* This buffer's category table. */ 109 /* This buffer's category table. */
109 MARKED_SLOT (category_table); 110 MARKED_SLOT (category_table);
110 #endif /* MULE */ 111 #endif /* MULE */
111 #ifdef FILE_CODING
112 /* This buffer's coding system. */ 112 /* This buffer's coding system. */
113 MARKED_SLOT (buffer_file_coding_system); 113 MARKED_SLOT (buffer_file_coding_system);
114 #endif
115 /* Values of several buffer-local variables. 114 /* Values of several buffer-local variables.
116 115
117 tab-width is buffer-local so that redisplay can find it 116 tab-width is buffer-local so that redisplay can find it
118 in buffers that are not current */ 117 in buffers that are not current */
119 MARKED_SLOT (case_fold_search); 118 MARKED_SLOT (case_fold_search);
202 201
203 /* This holds the point value before the last scroll operation. 202 /* This holds the point value before the last scroll operation.
204 Explicitly setting point sets this to nil. */ 203 Explicitly setting point sets this to nil. */
205 MARKED_SLOT (point_before_scroll); 204 MARKED_SLOT (point_before_scroll);
206 205
207 /* Truename of the visited file (via the realpath() system call), 206 /* Truename of the visited file (via qxe_realpath()),
208 or nil. */ 207 or nil. */
209 MARKED_SLOT (file_truename); 208 MARKED_SLOT (file_truename);
210 209
211 /* Invisibility spec of this buffer. 210 /* Invisibility spec of this buffer.
212 t => any non-nil `invisible' property means invisible. 211 t => any non-nil `invisible' property means invisible.