diff options
| author | Paul Eggert | 2012-08-17 09:48:22 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-17 09:48:22 -0700 |
| commit | 742af32f280f9e0051691a34874d6a7de693239c (patch) | |
| tree | 6fe111e6e6d8b14af62caecc3a8ef5a18f01a8aa /src/ChangeLog | |
| parent | a04e2c62ec8ce903310b7c7635c43f42ccab5e2f (diff) | |
| download | emacs-742af32f280f9e0051691a34874d6a7de693239c.tar.gz emacs-742af32f280f9e0051691a34874d6a7de693239c.zip | |
* lisp.h (CSET): Remove.
(set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
(set_char_table_purpose): New functions,
replacing CSET. All uses changed. For example, replace
"CSET (XCHAR_TABLE (char_table), parent, parent);" with
"char_table_set_parent (char_table, parent);".
The old version was confusing because it used the same name
'parent' for two different things.
Fixes: debbugs:12215
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9ceaa95dcea..5ff6a577280 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2012-08-17 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * lisp.h (CSET): Remove (Bug#12215). | ||
| 4 | (set_char_table_ascii, set_char_table_defalt, set_char_table_parent) | ||
| 5 | (set_char_table_purpose): New functions, | ||
| 6 | replacing CSET. All uses changed. For example, replace | ||
| 7 | "CSET (XCHAR_TABLE (char_table), parent, parent);" with | ||
| 8 | "char_table_set_parent (char_table, parent);". | ||
| 9 | The old version was confusing because it used the same name | ||
| 10 | 'parent' for two different things. | ||
| 11 | |||
| 1 | 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru> | 12 | 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 13 | ||
| 3 | Functions to get and set Lisp_Object fields of buffer-local variables. | 14 | Functions to get and set Lisp_Object fields of buffer-local variables. |