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
55f5abaf
Commit
55f5abaf
authored
Dec 23, 1995
by
Richard M. Stallman
Browse files
(standard-display-european): Make 160 display as space.
parent
f56e7ad2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
lisp/disp-table.el
lisp/disp-table.el
+5
-3
No files found.
lisp/disp-table.el
View file @
55f5abaf
...
...
@@ -184,11 +184,13 @@ With prefix argument, enable European character display iff arg is positive."
(
if
(
or
(
<=
(
prefix-numeric-value
arg
)
0
)
(
and
(
null
arg
)
(
char-table-p
standard-display-table
)
;; Test 161, because sometimes people need to make
;; 160 display as a space.
;; Test 161, because 160 displays as a space.
(
equal
(
aref
standard-display-table
161
)
[161]
)))
(
standard-display-default
160
255
)
(
standard-display-8bit
160
255
)))
(
standard-display-8bit
160
255
)
;; Make non-line-break space display as a plain space.
;; Most X fonts do the wrong thing for code 160.
(
aset
standard-display-table
160
[32]
)))
(
provide
'disp-table
)
...
...
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