diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-03-22 07:00:47 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-03-22 07:00:47 +0000 |
commit | cb421be80a144d776fc20eeb357b9ebc41f829ca (patch) | |
tree | d0386405d9b96ffb416c54f474b653e239ab6f1d /src/emacs.c | |
parent | 8aa3a1878374c571d2e26647ef41ebee65b011ea (diff) | |
download | emacs-cb421be80a144d776fc20eeb357b9ebc41f829ca.tar.gz |
(init_cmdargs): Fix simple bug in previous change.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emacs.c b/src/emacs.c index c5b6953acfb..c0bec6b793c 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -159,7 +159,7 @@ init_cmdargs (argc, argv, skip_args) { register int i; - Vinvocation_name = Ffile_name_nondirectory (argv[0]); + Vinvocation_name = Ffile_name_nondirectory (build_string (argv[0])); Vcommand_line_args = Qnil; |