diff options
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 |