diff options
author | Jim Blandy <jimb@redhat.com> | 1994-10-08 22:13:44 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1994-10-08 22:13:44 +0000 |
commit | 63c24e0bd85fe06740d152e3e866cb39ddee990a (patch) | |
tree | 7e01388902e386dd48f0f4029fbccaff01c626e2 /src/disptab.h | |
parent | d1c89b9b162cbca1968bd9bc48b1e37ef522d679 (diff) | |
download | emacs-63c24e0bd85fe06740d152e3e866cb39ddee990a.tar.gz |
* disptab.h (window_display_table): Doc fix.
(buffer_display_table): New declaration.
Diffstat (limited to 'src/disptab.h')
-rw-r--r-- | src/disptab.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/disptab.h b/src/disptab.h index 206e3c78c70..649b58cf310 100644 --- a/src/disptab.h +++ b/src/disptab.h @@ -28,8 +28,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define DISP_BORDER_GLYPH(dp) ((dp)->contents[261]) #define DISP_CHAR_VECTOR(dp, c) ((dp)->contents[c]) +/* Defined in window.c. */ extern struct Lisp_Vector *window_display_table (); +/* Defined in indent.c. */ +extern struct Lisp_Vector *buffer_display_table (); + /* Display table to use for vectors that don't specify their own. */ extern Lisp_Object Vstandard_display_table; |