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
26a8d14b
Commit
26a8d14b
authored
Mar 29, 1994
by
Karl Heuer
Browse files
Fix glitches in previous change.
parent
ccf39e56
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
src/indent.c
src/indent.c
+9
-9
No files found.
src/indent.c
View file @
26a8d14b
...
...
@@ -651,20 +651,20 @@ visible section of the buffer, and pass LINE and COL as TOPOS.")
struct
position
*
pos
;
int
hscroll
,
tab_offset
;
CHECK_
INT
(
from
,
0
);
CHECK_
NUMBER_COERCE_MARKER
(
from
,
0
);
CHECK_CONS
(
frompos
,
0
);
CHECK_
INT
(
XCONS
(
frompos
)
->
car
,
0
);
CHECK_
INT
(
XCONS
(
frompos
)
->
cdr
,
0
);
CHECK_
INT
(
to
,
0
);
CHECK_
NUMBER
(
XCONS
(
frompos
)
->
car
,
0
);
CHECK_
NUMBER
(
XCONS
(
frompos
)
->
cdr
,
0
);
CHECK_
NUMBER_COERCE_MARKER
(
to
,
0
);
CHECK_CONS
(
topos
,
0
);
CHECK_
INT
(
XCONS
(
topos
)
->
car
,
0
);
CHECK_
INT
(
XCONS
(
topos
)
->
cdr
,
0
);
CHECK_
INT
(
width
);
CHECK_
NUMBER
(
XCONS
(
topos
)
->
car
,
0
);
CHECK_
NUMBER
(
XCONS
(
topos
)
->
cdr
,
0
);
CHECK_
NUMBER
(
width
,
0
);
if
(
!
NILP
(
offsets
))
{
CHECK_CONS
(
offsets
,
0
);
CHECK_
INT
(
XCONS
(
offsets
)
->
car
);
CHECK_
INT
(
XCONS
(
offsets
)
->
cdr
);
CHECK_
NUMBER
(
XCONS
(
offsets
)
->
car
,
0
);
CHECK_
NUMBER
(
XCONS
(
offsets
)
->
cdr
,
0
);
hscroll
=
XINT
(
XCONS
(
offsets
)
->
car
);
tab_offset
=
XINT
(
XCONS
(
offsets
)
->
cdr
);
}
...
...
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