aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 49e1f359cae..e58e376ddd2 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -970,6 +970,9 @@ struct standard_args standard_args[] =
970 { "-u", "--user", 30, 1 }, 970 { "-u", "--user", 30, 1 },
971 { "-user", 0, 30, 1 }, 971 { "-user", 0, 30, 1 },
972 { "-debug-init", "--debug-init", 20, 0 }, 972 { "-debug-init", "--debug-init", 20, 0 },
973 { "-i", "--icon-type", 15, 1 },
974 { "-itype", 0, 15, 1 },
975 { "-iconic", "--iconic", 15, 0 },
973 { "-bg", "--background-color", 10, 1 }, 976 { "-bg", "--background-color", 10, 1 },
974 { "-background", 0, 10, 1 }, 977 { "-background", 0, 10, 1 },
975 { "-fg", "--foreground-color", 10, 1 }, 978 { "-fg", "--foreground-color", 10, 1 },
@@ -984,15 +987,12 @@ struct standard_args standard_args[] =
984 { "-g", "--geometry", 10, 1 }, 987 { "-g", "--geometry", 10, 1 },
985 { "-geometry", 0, 10, 1 }, 988 { "-geometry", 0, 10, 1 },
986 { "-T", "--title", 10, 1 }, 989 { "-T", "--title", 10, 1 },
987 { "-i", "--icon-type", 10, 1 },
988 { "-itype", 0, 10, 1 },
989 { "-name", "--name", 10, 1 }, 990 { "-name", "--name", 10, 1 },
990 { "-xrm", "--xrm", 10, 1 }, 991 { "-xrm", "--xrm", 10, 1 },
991 { "-r", "--reverse-video", 5, 0 }, 992 { "-r", "--reverse-video", 5, 0 },
992 { "-rv", 0, 5, 0 }, 993 { "-rv", 0, 5, 0 },
993 { "-reverse", 0, 5, 0 }, 994 { "-reverse", 0, 5, 0 },
994 { "-vb", "--vertical-scroll-bars", 5, 0 }, 995 { "-vb", "--vertical-scroll-bars", 5, 0 },
995 { "-iconic", "--iconic", 5, 0 },
996 /* These have the same priority as ordinary file name args, 996 /* These have the same priority as ordinary file name args,
997 so they are not reordered with respect to those. */ 997 so they are not reordered with respect to those. */
998 { "-l", "--load", 0, 1 }, 998 { "-l", "--load", 0, 1 },
@@ -1000,6 +1000,7 @@ struct standard_args standard_args[] =
1000 { "-f", "--funcall", 0, 1 }, 1000 { "-f", "--funcall", 0, 1 },
1001 { "-funcall", 0, 0, 1 }, 1001 { "-funcall", 0, 0, 1 },
1002 { "-insert", "--insert", 0, 1 }, 1002 { "-insert", "--insert", 0, 1 },
1003 /* This should be processed after ordinary file name args and the like. */
1003 { "-kill", "--kill", -10, 0 }, 1004 { "-kill", "--kill", -10, 0 },
1004}; 1005};
1005 1006