1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-23 14:32:12 -07:00

(main) [VMS]: Fix var ref.

This commit is contained in:
Thien-Thi Nguyen 2004-05-06 19:48:50 +00:00
parent 112dc8e107
commit 70646bb5c5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-05-06 Thien-Thi Nguyen <ttn@gnu.org>
* emacs.c (main) [VMS]: Fix var ref.
2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
* data.c (Fsetq_default): Fix docstring.

View file

@ -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);
}