diff options
| author | Thien-Thi Nguyen | 2004-05-06 19:48:50 +0000 |
|---|---|---|
| committer | Thien-Thi Nguyen | 2004-05-06 19:48:50 +0000 |
| commit | 70646bb5c52df1a9e1036c568bb372c039eaab26 (patch) | |
| tree | 541c3fefd9a65d34b2eae4578a456f7130473b86 /src | |
| parent | 112dc8e1075e7fbc1974831f928d14334eaae2f0 (diff) | |
| download | emacs-70646bb5c52df1a9e1036c568bb372c039eaab26.tar.gz emacs-70646bb5c52df1a9e1036c568bb372c039eaab26.zip | |
(main) [VMS]: Fix var ref.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/emacs.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index acd6084a09d..5ad22805b36 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-05-06 Thien-Thi Nguyen <ttn@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (main) [VMS]: Fix var ref. | ||
| 4 | |||
| 1 | 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change) | 5 | 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change) |
| 2 | 6 | ||
| 3 | * data.c (Fsetq_default): Fix docstring. | 7 | * data.c (Fsetq_default): Fix docstring. |
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 | |||
| 894 | /* If -map specified, map the data file in. */ | 894 | /* If -map specified, map the data file in. */ |
| 895 | { | 895 | { |
| 896 | char *file; | 896 | char *file; |
| 897 | if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args)) | 897 | if (argmatch (argv, argc, "-map", "--map-data", 3, &file, &skip_args)) |
| 898 | mapin_data (file); | 898 | mapin_data (file); |
| 899 | } | 899 | } |
| 900 | 900 | ||