]> git.pld-linux.org Git - packages/emacs.git/blob - emacs-enable-font-backend.patch
- Updated to 20070201 snapshot
[packages/emacs.git] / emacs-enable-font-backend.patch
1 --- emacs/src/emacs.c.~1.328.4.41.~     2007-01-26 07:15:03.000000000 +0100
2 +++ emacs/src/emacs.c   2007-02-05 20:35:25.000000000 +0100
3 @@ -1408,10 +1408,10 @@
4      = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
5  
6  #ifdef USE_FONT_BACKEND
7 -  enable_font_backend = 0;
8 -  if (argmatch (argv, argc, "-enable-font-backend", "--enable-font-backend",
9 +  enable_font_backend = 1;
10 +  if (argmatch (argv, argc, "-disable-font-backend", "--disable-font-backend",
11                 4, NULL, &skip_args))
12 -    enable_font_backend = 1;
13 +    enable_font_backend = 0;
14  #endif /* USE_FONT_BACKEND */
15  
16  #ifdef HAVE_X_WINDOWS
17 @@ -1816,7 +1816,7 @@
18    { "-unibyte", "--unibyte", 81, 0 },
19    { "-no-multibyte", "--no-multibyte", 80, 0 },
20    { "-nl", "--no-loadup", 70, 0 },
21 -  { "-enable-font-backend", "--enable-font-backend", 65, 0 },
22 +  { "-disable-font-backend", "--disable-font-backend", 65, 0 },
23    /* -d must come last before the options handled in startup.el.  */
24    { "-d", "--display", 60, 1 },
25    { "-display", 0, 60, 1 },
This page took 0.036327 seconds and 3 git commands to generate.