From: Eli Zaretskii Date: Sun, 18 Apr 2021 19:36:01 +0000 (+0300) Subject: * src/emacs.c (main): Add back the call to init_callproc_1. (bug#47872) X-Git-Tag: emacs-28.0.90~2727^2~8 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e54066f3d459f67a1ee4e44552bf0356d010e03f;p=emacs.git * src/emacs.c (main): Add back the call to init_callproc_1. (bug#47872) --- diff --git a/src/emacs.c b/src/emacs.c index c09ad97a701..792f690797d 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2011,6 +2011,9 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem /* Init buffer storage and default directory of main buffer. */ init_buffer (); + /* Must precede init_cmdargs and init_sys_modes. */ + init_callproc_1 (); + /* Must precede init_lread. */ init_cmdargs (argc, argv, skip_args, original_pwd);