comparison src/lisp.h @ 87741:36b8a740ef66

Fix typo in src/lisp.h
author Michael Olson <mwolson@gnu.org>
date Sun, 13 Jan 2008 22:08:06 +0000
parents 107ccd98fa12
children c70e45a7acfd
comparison
equal deleted inserted replaced
87740:5bd86dfd3e39 87741:36b8a740ef66
1423 1423
1424 /* The maximum byte size consumed by push_key_description. 1424 /* The maximum byte size consumed by push_key_description.
1425 All callers should assure that at least this size of memory is 1425 All callers should assure that at least this size of memory is
1426 allocated at the place pointed by the second argument. 1426 allocated at the place pointed by the second argument.
1427 1427
1428 Thers are 6 modifiers, each consumes 2 chars. 1428 There are 6 modifiers, each consumes 2 chars.
1429 The octal form of a character code consumes 1429 The octal form of a character code consumes
1430 (1 + CHARACTERBITS / 3 + 1) chars (including backslash at the head). 1430 (1 + CHARACTERBITS / 3 + 1) chars (including backslash at the head).
1431 We need one more byte for string terminator `\0'. */ 1431 We need one more byte for string terminator `\0'. */
1432 #define KEY_DESCRIPTION_SIZE ((2 * 6) + 1 + (CHARACTERBITS / 3) + 1 + 1) 1432 #define KEY_DESCRIPTION_SIZE ((2 * 6) + 1 + (CHARACTERBITS / 3) + 1 + 1)
1433 1433