aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-06-12 23:20:54 +0000
committerRichard M. Stallman1998-06-12 23:20:54 +0000
commit05922407741cef79ef8a0f77e15fb8b3d18c2634 (patch)
tree7e25eedd5b293fd94a89a8705311cf1e9030c41e /src
parent0ca03bbaa626bbca438b37f73a55ccf4a5c9e319 (diff)
downloademacs-05922407741cef79ef8a0f77e15fb8b3d18c2634.tar.gz
emacs-05922407741cef79ef8a0f77e15fb8b3d18c2634.zip
(standard_args): Fix arg order to match code in `main'.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c28
1 files changed, 17 insertions, 11 deletions
diff --git a/src/emacs.c b/src/emacs.c
index f24e7bd6dcb..3a1e0f2b5ff 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1299,21 +1299,27 @@ struct standard_args
1299 1299
1300struct standard_args standard_args[] = 1300struct standard_args standard_args[] =
1301{ 1301{
1302 { "-version", "--version", 110, 0 }, 1302 { "-version", "--version", 150, 0 },
1303 { "-help", "--help", 110, 0 }, 1303#ifdef HAVE_SHM
1304 { "-nl", "--no-shared-memory", 100, 0 }, 1304 { "-nl", "--no-shared-memory", 140, 0 },
1305#endif
1305#ifdef VMS 1306#ifdef VMS
1306 { "-map", "--map-data", 100, 0 }, 1307 { "-map", "--map-data", 130, 0 },
1307#endif 1308#endif
1308 { "-t", "--terminal", 90, 1 }, 1309 { "-t", "--terminal", 120, 1 },
1310 { "-nw", "--no-windows", 110, 0 },
1311 { "-batch", "--batch", 100, 0 },
1312 { "-help", "--help", 90, 0 },
1309 { "-d", "--display", 80, 1 }, 1313 { "-d", "--display", 80, 1 },
1310 { "-display", 0, 80, 1 }, 1314 { "-display", 0, 80, 1 },
1311 { "-nw", "--no-windows", 70, 0 }, 1315 { "-no-unibyte", "--no-unibyte", 71, 0 },
1312 { "-no-unibyte", "--no-unibyte", 66, 0 }, 1316 { "-multibyte", "--multibyte", 71, 0 },
1313 { "-multibyte", "--multibyte", 66, 0 }, 1317 { "-unibyte", "--unibyte", 70, 0 },
1314 { "-unibyte", "--unibyte", 65, 0 }, 1318 { "-no-multibyte", "--no-multibyte", 70, 0 },
1315 { "-no-multibyte", "--no-multibyte", 65, 0 }, 1319#ifdef CANNOT_DUMP
1316 { "-batch", "--batch", 60, 0 }, 1320 { "-nl", "--no-loadup", 60, 0 },
1321#endif
1322 /* Now for the options handled in startup.el. */
1317 { "-q", "--no-init-file", 50, 0 }, 1323 { "-q", "--no-init-file", 50, 0 },
1318 { "-no-init-file", 0, 50, 0 }, 1324 { "-no-init-file", 0, 50, 0 },
1319 { "-no-site-file", "--no-site-file", 40, 0 }, 1325 { "-no-site-file", "--no-site-file", 40, 0 },