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
744bcf11
Commit
744bcf11
authored
May 25, 2000
by
Eli Zaretskii
Browse files
(standard-display-g1, standard-display-graphic):
Only refuse to use string glyphs on X and MS-Windows.
parent
95d059bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/disp-table.el
lisp/disp-table.el
+2
-2
No files found.
lisp/disp-table.el
View file @
744bcf11
...
...
@@ -139,7 +139,7 @@ Valid symbols are `truncation', `wrap', `escape', `control',
"Display character C as character SC in the g1 character set.
This function assumes that your terminal uses the SO/SI characters;
it is meaningless for an X frame."
(
if
window-system
(
if
(
memq
window-system
'
(
x
w32
))
(
error
"Cannot use string glyphs in a windowing system"
))
(
aset
standard-display-table
c
(
vector
(
create-glyph
(
concat
"\016"
(
char-to-string
sc
)
"\017"
)))))
...
...
@@ -149,7 +149,7 @@ it is meaningless for an X frame."
"Display character C as character GC in graphics character set.
This function assumes VT100-compatible escapes; it is meaningless for an
X frame."
(
if
window-system
(
if
(
memq
window-system
'
(
x
w32
))
(
error
"Cannot use string glyphs in a windowing system"
))
(
aset
standard-display-table
c
(
vector
(
create-glyph
(
concat
"\e(0"
(
char-to-string
gc
)
"\e(B"
)))))
...
...
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