diff options
| author | Glenn Morris | 2008-11-26 03:00:53 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-11-26 03:00:53 +0000 |
| commit | 9f688acf323a27f4fae650061768152f92411692 (patch) | |
| tree | c8ef6ea03115e6c0b59fdefad56c373c03e9e778 /src | |
| parent | 5a3008ede5332fdd10b5eaef9150a308e853cca4 (diff) | |
| download | emacs-9f688acf323a27f4fae650061768152f92411692.tar.gz emacs-9f688acf323a27f4fae650061768152f92411692.zip | |
(Fx_font_family_list): Replace lisp/term/pc-win.el redefinition with
ifdef. (Bug#1383)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xfaces.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 862711a7797..905ea2729ad 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-11-26 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el | ||
| 4 | redefinition with ifdef. (Bug#1383) | ||
| 5 | |||
| 1 | 2008-11-24 Chong Yidong <cyd@stupidchicken.com> | 6 | 2008-11-24 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm): | 8 | * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm): |
diff --git a/src/xfaces.c b/src/xfaces.c index 68d63d690d9..31f56df6ab9 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1839,7 +1839,11 @@ are fixed-pitch. */) | |||
| 1839 | (frame) | 1839 | (frame) |
| 1840 | Lisp_Object frame; | 1840 | Lisp_Object frame; |
| 1841 | { | 1841 | { |
| 1842 | #ifdef MSDOS | ||
| 1843 | return Fcons (Fcons (build_string ("default"), Qt), Qnil); | ||
| 1844 | #else | ||
| 1842 | return Ffont_family_list (frame); | 1845 | return Ffont_family_list (frame); |
| 1846 | #endif | ||
| 1843 | } | 1847 | } |
| 1844 | 1848 | ||
| 1845 | 1849 | ||