aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThien-Thi Nguyen <[email protected]>2004-05-06 19:48:50 +0000
committerThien-Thi Nguyen <[email protected]>2004-05-06 19:48:50 +0000
commit70646bb5c52df1a9e1036c568bb372c039eaab26 (patch)
tree541c3fefd9a65d34b2eae4578a456f7130473b86 /src
parent112dc8e1075e7fbc1974831f928d14334eaae2f0 (diff)
(main) [VMS]: Fix var ref.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/emacs.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index acd6084a09..5ad22805b3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-06 Thien-Thi Nguyen <[email protected]>
+
+ * emacs.c (main) [VMS]: Fix var ref.
+
2004-05-06 Romain Francoise <[email protected]> (tiny change)
* data.c (Fsetq_default): Fix docstring.
diff --git a/src/emacs.c b/src/emacs.c
index b95f97368c..d363a468ee 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);
}