Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9f688acf
Commit
9f688acf
authored
Nov 26, 2008
by
Glenn Morris
Browse files
(Fx_font_family_list): Replace lisp/term/pc-win.el redefinition with
ifdef. (Bug#1383)
parent
5a3008ed
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
lisp/ChangeLog
lisp/ChangeLog
+9
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/xfaces.c
src/xfaces.c
+4
-0
No files found.
lisp/ChangeLog
View file @
9f688acf
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
...
...
src/ChangeLog
View file @
9f688acf
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):
...
...
src/xfaces.c
View file @
9f688acf
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment