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 | ef5623efbd9b2579aaef52f18d307281dd6d0a0a (patch) | |
tree | 3cfe3b2b56381385aa8d3e28d7c941a327935cb1 /src/disptab.h | |
parent | 4f5d0c3c26de7cb313983787aaf0c6989ed1f945 (diff) | |
download | emacs-ef5623efbd9b2579aaef52f18d307281dd6d0a0a.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; |