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
c1279c7d
Commit
c1279c7d
authored
Apr 06, 1994
by
Richard M. Stallman
Browse files
(quoted-insert): Handle meta-chars usefully.
parent
c9b7c53a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
lisp/simple.el
lisp/simple.el
+3
-0
No files found.
lisp/simple.el
View file @
c1279c7d
...
...
@@ -82,6 +82,9 @@ this function useful in editing binary files."
(
read-char
))))
(
if
(
eq
overwrite-mode
'overwrite-mode-binary
)
(
delete-char
arg
))
;; Turn a meta-character into a character with the 0200 bit set.
(
if
(
/=
(
logand
last-input-char
(
lsh
1
23
))
0
)
(
setq
char
(
logior
char
128
)))
(
insert-char
char
arg
)))
(
defun
delete-indentation
(
&optional
arg
)
...
...
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