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
cee30b8f
Commit
cee30b8f
authored
Aug 07, 1997
by
Richard M. Stallman
Browse files
(x-list-fonts): Return "default" when appropriate.
(query-fontset): Add (alternative) alias definition.
parent
020c3567
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
lisp/term/pc-win.el
lisp/term/pc-win.el
+7
-1
No files found.
lisp/term/pc-win.el
View file @
cee30b8f
...
...
@@ -260,7 +260,10 @@
;; From src/xfns.c
(
defun
x-display-color-p
(
&optional
display
)
't
)
(
defun
x-list-fonts
(
pattern
&optional
face
frame
)
(
list
"default"
))
(
defun
x-list-fonts
(
pattern
&optional
face
frame
maximum
width
)
(
if
(
and
(
numberp
width
)
(
=
width
1
))
(
list
"default"
)
(
list
"no-such-font"
)))
(
defun
x-color-defined-p
(
color
)
(
numberp
(
msdos-color-translate
color
)))
(
defun
x-display-pixel-width
(
&optional
frame
)
(
frame-width
frame
))
(
defun
x-display-pixel-height
(
&optional
frame
)
(
frame-height
frame
))
...
...
@@ -351,6 +354,9 @@ This is in addition to the primary selection.")
(
defun
x-frob-font-slant
(
font
which
)
font
)
;; From src/fontset.c:
(
fset
'query-fontset
'ignore
)
;; From lisp/term/x-win.el: make iconify-or-deiconify-frame a no-op.
(
fset
'iconify-or-deiconify-frame
'ignore
)
...
...
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