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
bbc2998f
Commit
bbc2998f
authored
Nov 24, 1993
by
Richard M. Stallman
Browse files
(Fmove_to_column): Increments for control characters
were too low by 1.
parent
6c955bcb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/indent.c
src/indent.c
+2
-2
No files found.
src/indent.c
View file @
bbc2998f
...
...
@@ -333,9 +333,9 @@ and if COLUMN is in the middle of a tab character, change it to spaces.")
else
if
(
dp
!=
0
&&
XTYPE
(
DISP_CHAR_VECTOR
(
dp
,
c
))
==
Lisp_Vector
)
col
+=
XVECTOR
(
DISP_CHAR_VECTOR
(
dp
,
c
))
->
size
;
else
if
(
ctl_arrow
&&
(
c
<
040
||
c
==
0177
))
col
++
;
col
+=
2
;
else
if
(
c
<
040
||
c
>=
0177
)
col
+=
3
;
col
+=
4
;
else
col
++
;
}
...
...
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