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
ec321cad
Commit
ec321cad
authored
Feb 17, 1995
by
Richard M. Stallman
Browse files
(quoted-insert): Use insert-and-inherit.
Don't change buffer if arg is negative.
parent
7d0ca249
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
lisp/simple.el
lisp/simple.el
+6
-3
No files found.
lisp/simple.el
View file @
ec321cad
...
...
@@ -68,9 +68,12 @@ this function useful in editing binary files."
(
eq
overwrite-mode
'overwrite-mode-binary
))
(
read-quoted-char
)
(
read-char
))))
(
if
(
eq
overwrite-mode
'overwrite-mode-binary
)
(
delete-char
arg
))
(
insert-char
char
arg
)))
(
if
(
>
arg
0
)
(
if
(
eq
overwrite-mode
'overwrite-mode-binary
)
(
delete-char
arg
)))
(
while
(
>
arg
0
)
(
insert-and-inherit
char
)
(
setq
arg
(
1-
arg
)))))
(
defun
delete-indentation
(
&optional
arg
)
"Join this line to previous and fix up whitespace at join.
...
...
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