diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-04-18 22:36:01 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-04-18 22:36:01 +0300 |
commit | e54066f3d459f67a1ee4e44552bf0356d010e03f (patch) | |
tree | dc5c1d98ca354f9052e151f4a47b56842f91b7a5 /src | |
parent | 490b8c2c339966886190fdf897e2d95fb4bb5e3b (diff) | |
download | emacs-e54066f3d459f67a1ee4e44552bf0356d010e03f.tar.gz emacs-e54066f3d459f67a1ee4e44552bf0356d010e03f.tar.bz2 emacs-e54066f3d459f67a1ee4e44552bf0356d010e03f.zip |
* src/emacs.c (main): Add back the call to init_callproc_1. (bug#47872)
Diffstat (limited to 'src')
-rw-r--r-- | src/emacs.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); |