]> git.eshelyaron.com Git - emacs.git/commitdiff
avoid Eager macro-expansion failure: (void-function string-to-list)
authorSam Steingold <sds@gnu.org>
Mon, 19 Dec 2016 16:44:18 +0000 (11:44 -0500)
committerSam Steingold <sds@gnu.org>
Mon, 19 Dec 2016 16:44:18 +0000 (11:44 -0500)
* loadup.el [ns]: "ucs-normalize" uses `string-to-list' which is defined
  in "mule-util", so we have to load "mule-util" before "ucs-normalize",
  otherwise I get "Eager macro-expansion failure" on "make bootstrap"

lisp/loadup.el

index e9dd683b283e301583fae86513ed0f63e825f3cd..53500240319ef348715ff182f04a9574ea66975c 100644 (file)
       ;; already produced, because it needs uni-*.el files that might
       ;; not be built early enough during bootstrap.
       (when (load-history-filename-element "charprop\\.el")
+        (load "international/mule-util")
         (load "international/ucs-normalize")
         (load "term/ns-win"))))
 (if (fboundp 'x-create-frame)