diff options
| author | Po Lu | 2022-06-20 19:11:38 +0800 |
|---|---|---|
| committer | Po Lu | 2022-06-20 19:11:38 +0800 |
| commit | 45dc99dcb91f0de5b9ea30141e1dd5a53368e38b (patch) | |
| tree | e4ed2cd957d6d508a959e1a3bbd8b76aee4a26be | |
| parent | f120db63a34e7e9085d815c872049c9cacbbe971 (diff) | |
| download | emacs-45dc99dcb91f0de5b9ea30141e1dd5a53368e38b.tar.gz emacs-45dc99dcb91f0de5b9ea30141e1dd5a53368e38b.zip | |
Fix ns-reg-to-script definition
* src/nsfont.m (syms_of_nsfont): Fix definition.
| -rw-r--r-- | src/nsfont.m | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nsfont.m b/src/nsfont.m index ae5e134e15b..b54118afe5d 100644 --- a/src/nsfont.m +++ b/src/nsfont.m | |||
| @@ -1763,8 +1763,11 @@ syms_of_nsfont (void) | |||
| 1763 | DEFSYM (Qcondensed, "condensed"); | 1763 | DEFSYM (Qcondensed, "condensed"); |
| 1764 | DEFSYM (Qexpanded, "expanded"); | 1764 | DEFSYM (Qexpanded, "expanded"); |
| 1765 | DEFSYM (Qmedium, "medium"); | 1765 | DEFSYM (Qmedium, "medium"); |
| 1766 | |||
| 1766 | DEFVAR_LISP ("ns-reg-to-script", Vns_reg_to_script, | 1767 | DEFVAR_LISP ("ns-reg-to-script", Vns_reg_to_script, |
| 1767 | doc: /* Internal use: maps font registry to Unicode script. */); | 1768 | doc: /* Internal map of font registry to Unicode script. */); |
| 1769 | Vns_reg_to_script = Qnil; | ||
| 1770 | |||
| 1768 | pdumper_do_now_and_after_load (syms_of_nsfont_for_pdumper); | 1771 | pdumper_do_now_and_after_load (syms_of_nsfont_for_pdumper); |
| 1769 | } | 1772 | } |
| 1770 | 1773 | ||