diff options
| author | Kenichi Handa | 2008-05-14 01:24:12 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-05-14 01:24:12 +0000 |
| commit | 5a51a1443ad877b8de1d052cbd322eaacfebdf0b (patch) | |
| tree | 4698727ed64fa8f77882d48bd07ff2afcd66e1f3 | |
| parent | 93cf902a613b79997ebcd2f05f3c9450fdfea2a6 (diff) | |
| download | emacs-5a51a1443ad877b8de1d052cbd322eaacfebdf0b.tar.gz emacs-5a51a1443ad877b8de1d052cbd322eaacfebdf0b.zip | |
(enable_font_backend): Delete extern.
(main): Don't set enable_font_backend. Don't check the command
line argument "-disable-font-backend".
| -rw-r--r-- | src/emacs.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/emacs.c b/src/emacs.c index cafc64601d1..7074076cf66 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -787,9 +787,6 @@ bug_reporting_address () | |||
| 787 | return count >= 3 ? REPORT_EMACS_BUG_PRETEST_ADDRESS : REPORT_EMACS_BUG_ADDRESS; | 787 | return count >= 3 ? REPORT_EMACS_BUG_PRETEST_ADDRESS : REPORT_EMACS_BUG_ADDRESS; |
| 788 | } | 788 | } |
| 789 | 789 | ||
| 790 | #ifdef USE_FONT_BACKEND | ||
| 791 | extern int enable_font_backend; | ||
| 792 | #endif /* USE_FONT_BACKEND */ | ||
| 793 | 790 | ||
| 794 | /* ARGSUSED */ | 791 | /* ARGSUSED */ |
| 795 | int | 792 | int |
| @@ -1426,13 +1423,6 @@ main (argc, argv | |||
| 1426 | no_loadup | 1423 | no_loadup |
| 1427 | = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args); | 1424 | = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args); |
| 1428 | 1425 | ||
| 1429 | #ifdef USE_FONT_BACKEND | ||
| 1430 | enable_font_backend = 1; | ||
| 1431 | if (argmatch (argv, argc, "-disable-font-backend", "--disable-font-backend", | ||
| 1432 | 4, NULL, &skip_args)) | ||
| 1433 | enable_font_backend = 0; | ||
| 1434 | #endif /* USE_FONT_BACKEND */ | ||
| 1435 | |||
| 1436 | #ifdef HAVE_X_WINDOWS | 1426 | #ifdef HAVE_X_WINDOWS |
| 1437 | /* Stupid kludge to catch command-line display spec. We can't | 1427 | /* Stupid kludge to catch command-line display spec. We can't |
| 1438 | handle this argument entirely in window system dependent code | 1428 | handle this argument entirely in window system dependent code |