diff options
author | Miles Bader <miles@gnu.org> | 2000-08-18 03:07:07 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-08-18 03:07:07 +0000 |
commit | 4618074a71d30b991896a62e1ce5cbbba3baeb74 (patch) | |
tree | 06ee2914ddc0fd58124fee8b915b3388fb6d08f0 /src/lisp.h | |
parent | 85c7553632524a7ad549b83bb942111803dde9f4 (diff) | |
download | emacs-4618074a71d30b991896a62e1ce5cbbba3baeb74.tar.gz emacs-4618074a71d30b991896a62e1ce5cbbba3baeb74.tar.bz2 emacs-4618074a71d30b991896a62e1ce5cbbba3baeb74.zip |
(Lisp_String): Replace DECLARE_INTERVALS with real decl.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 62ead3e4d36..f79e211f655 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -623,7 +623,7 @@ struct Lisp_String { EMACS_INT size; EMACS_INT size_byte; - DECLARE_INTERVALS /* `data' field must be last. */ + INTERVAL intervals; /* text properties in this string */ unsigned char *data; }; |