diff options
| author | Chong Yidong | 2009-01-09 14:11:38 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-01-09 14:11:38 +0000 |
| commit | 058f0a510fc71b889b095d12682a83ceedb69978 (patch) | |
| tree | 422c683c5e9ac2c222d43fbfad64029ca64c1d01 | |
| parent | 323b840cdeb2d06817334b22c751bbc582b5ede3 (diff) | |
| download | emacs-058f0a510fc71b889b095d12682a83ceedb69978.tar.gz emacs-058f0a510fc71b889b095d12682a83ceedb69978.zip | |
(Fx_font_family_list): Function deleted. Compatibility version moved
to faces.el.
| -rw-r--r-- | src/xfaces.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index bb898c73595..54c317a5ea7 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1910,27 +1910,6 @@ the WIDTH times as wide as FACE on FRAME. */) | |||
| 1910 | 1910 | ||
| 1911 | #endif /* HAVE_WINDOW_SYSTEM */ | 1911 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 1912 | 1912 | ||
| 1913 | #if defined(HAVE_WINDOW_SYSTEM) || defined(__MSDOS__) | ||
| 1914 | |||
| 1915 | DEFUN ("x-font-family-list", Fx_font_family_list, Sx_font_family_list, | ||
| 1916 | 0, 1, 0, | ||
| 1917 | doc: /* Return a list of available font families on FRAME. | ||
| 1918 | If FRAME is omitted or nil, use the selected frame. | ||
| 1919 | Value is a list of conses (FAMILY . FIXED-P) where FAMILY | ||
| 1920 | is a font family, and FIXED-P is non-nil if fonts of that family | ||
| 1921 | are fixed-pitch. */) | ||
| 1922 | (frame) | ||
| 1923 | Lisp_Object frame; | ||
| 1924 | { | ||
| 1925 | #ifdef __MSDOS__ | ||
| 1926 | return Fcons (Fcons (build_string ("default"), Qt), Qnil); | ||
| 1927 | #else | ||
| 1928 | return Ffont_family_list (frame); | ||
| 1929 | #endif | ||
| 1930 | } | ||
| 1931 | |||
| 1932 | #endif /* HAVE_WINDOW_SYSTEM || __MSDOS__ */ | ||
| 1933 | |||
| 1934 | 1913 | ||
| 1935 | /*********************************************************************** | 1914 | /*********************************************************************** |
| 1936 | Lisp Faces | 1915 | Lisp Faces |
| @@ -7015,9 +6994,6 @@ a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */); | |||
| 7015 | defsubr (&Sinternal_face_x_get_resource); | 6994 | defsubr (&Sinternal_face_x_get_resource); |
| 7016 | defsubr (&Sx_family_fonts); | 6995 | defsubr (&Sx_family_fonts); |
| 7017 | #endif | 6996 | #endif |
| 7018 | #if defined(HAVE_WINDOW_SYSTEM) || defined(__MSDOS__) | ||
| 7019 | defsubr (&Sx_font_family_list); | ||
| 7020 | #endif /* HAVE_WINDOW_SYSTEM || __MSDOS__ */ | ||
| 7021 | } | 6997 | } |
| 7022 | 6998 | ||
| 7023 | /* arch-tag: 8a0f7598-5517-408d-9ab3-1da6fcd4c749 | 6999 | /* arch-tag: 8a0f7598-5517-408d-9ab3-1da6fcd4c749 |