diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-06 19:48:50 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2004-05-06 19:48:50 +0000 |
commit | 70646bb5c52df1a9e1036c568bb372c039eaab26 (patch) | |
tree | 541c3fefd9a65d34b2eae4578a456f7130473b86 /src/emacs.c | |
parent | 112dc8e1075e7fbc1974831f928d14334eaae2f0 (diff) | |
download | emacs-70646bb5c52df1a9e1036c568bb372c039eaab26.tar.gz |
(main) [VMS]: Fix var ref.
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 b95f97368ca..d363a468eea 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -894,7 +894,7 @@ main (argc, argv /* If -map specified, map the data file in. */ { char *file; - if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args)) + if (argmatch (argv, argc, "-map", "--map-data", 3, &file, &skip_args)) mapin_data (file); } |