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/fontset.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/fontset.c')
| -rw-r--r-- | src/fontset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c index b25a896deda..c39d68a8ecf 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -1916,7 +1916,7 @@ format is the same as above. */) | |||
| 1916 | if (!EQ (fontset, Vdefault_fontset)) | 1916 | if (!EQ (fontset, Vdefault_fontset)) |
| 1917 | { | 1917 | { |
| 1918 | tables[1] = Fmake_char_table (Qnil, Qnil); | 1918 | tables[1] = Fmake_char_table (Qnil, Qnil); |
| 1919 | char_table_set_extras (tables[0], 0, tables[1]); | 1919 | set_char_table_extras (tables[0], 0, tables[1]); |
| 1920 | fontsets[1] = Vdefault_fontset; | 1920 | fontsets[1] = Vdefault_fontset; |
| 1921 | } | 1921 | } |
| 1922 | 1922 | ||