diff options
| author | Paul Eggert | 2012-08-17 10:08:30 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-17 10:08:30 -0700 |
| commit | 34dabdb7701594b83a5b35b034bba55855d256a5 (patch) | |
| tree | 860e8c22685321d157f71cd4a57c9c1162e69d54 /src/fns.c | |
| parent | c24eb18ab40c3b022ab3b7d9c2aa26a37923340f (diff) | |
| download | emacs-34dabdb7701594b83a5b35b034bba55855d256a5.tar.gz emacs-34dabdb7701594b83a5b35b034bba55855d256a5.zip | |
* lisp.h (set_char_table_extras): Rename from char_table_set_extras.
(set_char_table_contents): Rename from char_table_set_contents.
(set_sub_char_table_contents): Rename from sub_char_table_sub_contents.
All uses changed. See the end of
<http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -2150,7 +2150,7 @@ ARRAY is a vector, string, char-table, or bool-vector. */) | |||
| 2150 | int i; | 2150 | int i; |
| 2151 | 2151 | ||
| 2152 | for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) | 2152 | for (i = 0; i < (1 << CHARTAB_SIZE_BITS_0); i++) |
| 2153 | char_table_set_contents (array, i, item); | 2153 | set_char_table_contents (array, i, item); |
| 2154 | set_char_table_defalt (array, item); | 2154 | set_char_table_defalt (array, item); |
| 2155 | } | 2155 | } |
| 2156 | else if (STRINGP (array)) | 2156 | else if (STRINGP (array)) |