]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix ns-reg-to-script definition
authorPo Lu <luangruo@yahoo.com>
Mon, 20 Jun 2022 11:11:38 +0000 (19:11 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 20 Jun 2022 11:11:38 +0000 (19:11 +0800)
* src/nsfont.m (syms_of_nsfont): Fix definition.

src/nsfont.m

index ae5e134e15bb96d4abcd010715e387d0b408353f..b54118afe5d9186dc88b1aafd20b8d09d4b4b6eb 100644 (file)
@@ -1763,8 +1763,11 @@ syms_of_nsfont (void)
   DEFSYM (Qcondensed, "condensed");
   DEFSYM (Qexpanded, "expanded");
   DEFSYM (Qmedium, "medium");
+
   DEFVAR_LISP ("ns-reg-to-script", Vns_reg_to_script,
-               doc: /* Internal use: maps font registry to Unicode script.  */);
+    doc: /* Internal map of font registry to Unicode script.  */);
+  Vns_reg_to_script = Qnil;
+
   pdumper_do_now_and_after_load (syms_of_nsfont_for_pdumper);
 }