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 | |
| 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)
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xfaces.c | 4 |
3 files changed, 18 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bef08cdb6b1..fba20bb915a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2008-11-26 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * vc-git.el (vc-git-diff-switches): New option. | ||
| 4 | (vc-git-diff): Apply diff switches. (Bug#1386) | ||
| 5 | Give it a basic doc string. | ||
| 6 | |||
| 7 | * term/pc-win.el (x-font-family-list): Replace redefinition with | ||
| 8 | ifdef in src/xfaces.c, since it confuses make-docfile. (Bug#1383) | ||
| 9 | |||
| 1 | 2008-11-26 Vincent Belaïche <vincent.b.1@hotmail.fr> | 10 | 2008-11-26 Vincent Belaïche <vincent.b.1@hotmail.fr> |
| 2 | 11 | ||
| 3 | * calc/calc-alg.el (calcFunc-collect): Normalize the coefficients | 12 | * calc/calc-alg.el (calcFunc-collect): Normalize the coefficients |
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 | ||