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
1b10fb77
Commit
1b10fb77
authored
Jun 02, 1997
by
Richard M. Stallman
Browse files
(Fcompare_buffer_substrings): trt contains Lisp_Objects.
(transpose_markers): Use marker_position, not Fmarker_position.
parent
80509f2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/editfns.c
src/editfns.c
+3
-3
No files found.
src/editfns.c
View file @
1b10fb77
...
...
@@ -1676,8 +1676,8 @@ determines whether case is significant or ignored.")
int
c2
=
*
BUF_CHAR_ADDRESS
(
bp2
,
begp2
+
i
);
if
(
trt
)
{
c1
=
trt
[
c1
];
c2
=
trt
[
c2
];
c1
=
XINT
(
trt
[
c1
]
)
;
c2
=
XINT
(
trt
[
c2
]
)
;
}
if
(
c1
<
c2
)
return
make_number
(
-
1
-
i
);
...
...
@@ -2369,7 +2369,7 @@ transpose_markers (start1, end1, start2, end2)
for
(
marker
=
BUF_MARKERS
(
current_buffer
);
!
NILP
(
marker
);
marker
=
XMARKER
(
marker
)
->
chain
)
{
mpos
=
F
marker_position
(
marker
);
mpos
=
marker_position
(
marker
);
if
(
mpos
>=
start1
&&
mpos
<
end2
)
{
if
(
mpos
<
end1
)
...
...
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