Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3e199297
Commit
3e199297
authored
Jun 08, 2006
by
Kenichi Handa
Browse files
(main): Check -enable-font-backend arg after the check
of -nl. (standard_args): Add "-enable-font-backend".
parent
6e50da0a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/emacs.c
src/emacs.c
+7
-7
No files found.
src/emacs.c
View file @
3e199297
...
...
@@ -1181,13 +1181,6 @@ main (argc, argv
exit
(
0
);
}
#ifdef USE_FONT_BACKEND
enable_font_backend
=
0
;
if
(
argmatch
(
argv
,
argc
,
"-enable-font-backend"
,
"--enable-font-backend"
,
4
,
NULL
,
&
skip_args
))
enable_font_backend
=
1
;
#endif
/* USE_FONT_BACKEND */
if
(
!
noninteractive
)
{
#ifdef BSD_PGRPS
...
...
@@ -1447,6 +1440,12 @@ main (argc, argv
no_loadup
=
argmatch
(
argv
,
argc
,
"-nl"
,
"--no-loadup"
,
6
,
NULL
,
&
skip_args
);
#ifdef USE_FONT_BACKEND
enable_font_backend
=
0
;
if
(
argmatch
(
argv
,
argc
,
"-enable-font-backend"
,
"--enable-font-backend"
,
4
,
NULL
,
&
skip_args
))
enable_font_backend
=
1
;
#endif
/* USE_FONT_BACKEND */
#ifdef HAVE_X_WINDOWS
/* Stupid kludge to catch command-line display spec. We can't
...
...
@@ -1850,6 +1849,7 @@ struct standard_args standard_args[] =
{
"-unibyte"
,
"--unibyte"
,
81
,
0
},
{
"-no-multibyte"
,
"--no-multibyte"
,
80
,
0
},
{
"-nl"
,
"--no-loadup"
,
70
,
0
},
{
"-enable-font-backend"
,
"--enable-font-backend"
,
65
,
0
},
/* -d must come last before the options handled in startup.el. */
{
"-d"
,
"--display"
,
60
,
1
},
{
"-display"
,
0
,
60
,
1
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment