diff options
| author | Paul Eggert | 2016-03-22 11:04:36 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-03-22 11:04:36 -0700 |
| commit | f95bbe5a67e03fe6d05cbfb4d0c9151a754d6ccd (patch) | |
| tree | 770fbf699587d51ed3a374c6f01bdd655394c66c /src/lisp.h | |
| parent | 4869e0d85a215e7fb0262430a48aa4d5804bf0a4 (diff) | |
| parent | b8ea08b037fb16395b90481162587706e71b487c (diff) | |
| download | emacs-f95bbe5a67e03fe6d05cbfb4d0c9151a754d6ccd.tar.gz emacs-f95bbe5a67e03fe6d05cbfb4d0c9151a754d6ccd.zip | |
-
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index d0abb24b685..e606ffa0259 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1768,7 +1768,8 @@ CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct) | |||
| 1768 | 1768 | ||
| 1769 | /* Make sure that sub char-table contents slot is where we think it is. */ | 1769 | /* Make sure that sub char-table contents slot is where we think it is. */ |
| 1770 | verify (offsetof (struct Lisp_Sub_Char_Table, contents) | 1770 | verify (offsetof (struct Lisp_Sub_Char_Table, contents) |
| 1771 | == offsetof (struct Lisp_Vector, contents[SUB_CHAR_TABLE_OFFSET])); | 1771 | == (offsetof (struct Lisp_Vector, contents) |
| 1772 | + SUB_CHAR_TABLE_OFFSET * sizeof (Lisp_Object))); | ||
| 1772 | 1773 | ||
| 1773 | /*********************************************************************** | 1774 | /*********************************************************************** |
| 1774 | Symbols | 1775 | Symbols |