(Fx_font_family_list): Replace lisp/term/pc-win.el redefinition with

ifdef.  (Bug#1383)
This commit is contained in:
Glenn Morris 2008-11-26 03:00:53 +00:00
parent 5a3008ede5
commit 9f688acf32
3 changed files with 18 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2008-11-26 Glenn Morris <rgm@gnu.org>
* vc-git.el (vc-git-diff-switches): New option.
(vc-git-diff): Apply diff switches. (Bug#1386)
Give it a basic doc string.
* term/pc-win.el (x-font-family-list): Replace redefinition with
ifdef in src/xfaces.c, since it confuses make-docfile. (Bug#1383)
2008-11-26 Vincent Belaïche <vincent.b.1@hotmail.fr>
* calc/calc-alg.el (calcFunc-collect): Normalize the coefficients

View file

@ -1,3 +1,8 @@
2008-11-26 Glenn Morris <rgm@gnu.org>
* xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
redefinition with ifdef. (Bug#1383)
2008-11-24 Chong Yidong <cyd@stupidchicken.com>
* minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):

View file

@ -1839,7 +1839,11 @@ are fixed-pitch. */)
(frame)
Lisp_Object frame;
{
#ifdef MSDOS
return Fcons (Fcons (build_string ("default"), Qt), Qnil);
#else
return Ffont_family_list (frame);
#endif
}