Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonathan Wilkes
purr-data
Commits
828a6052
Commit
828a6052
authored
6 months ago
by
Albert Gräf
Browse files
Options
Downloads
Patches
Plain Diff
Fix line width calculation in rtext_senditup.
parent
ccd5b318
No related branches found
No related tags found
1 merge request
!868
2.20.0, the rest of it
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pd/src/g_rtext.c
+16
-11
16 additions, 11 deletions
pd/src/g_rtext.c
with
16 additions
and
11 deletions
pd/src/g_rtext.c
+
16
−
11
View file @
828a6052
...
@@ -247,24 +247,28 @@ static void rtext_senditup(t_rtext *x, int action, int *widthp, int *heightp,
...
@@ -247,24 +247,28 @@ static void rtext_senditup(t_rtext *x, int action, int *widthp, int *heightp,
if
(
x
->
x_bufsize
>=
100
)
if
(
x
->
x_bufsize
>=
100
)
tempbuf
=
(
char
*
)
t_getbytes
(
2
*
x
->
x_bufsize
+
1
);
tempbuf
=
(
char
*
)
t_getbytes
(
2
*
x
->
x_bufsize
+
1
);
else
tempbuf
=
smallbuf
;
else
tempbuf
=
smallbuf
;
int
large
=
0
;
while
(
x_bufsize_c
-
inindex_c
>
0
)
while
(
x_bufsize_c
-
inindex_c
>
0
)
{
{
int
inchars_b
=
x
->
x_bufsize
-
inindex_b
;
int
inchars_b
=
x
->
x_bufsize
-
inindex_b
;
int
inchars_c
=
x_bufsize_c
-
inindex_c
;
int
inchars_c
=
x_bufsize_c
-
inindex_c
;
int
maxindex_c
=
(
inchars_c
>
widthlimit_c
?
widthlimit_c
:
inchars_c
);
int
maxindex_b
=
u8_offset
(
x
->
x_buf
+
inindex_b
,
maxindex_c
,
x
->
x_bufsize
-
inindex_b
);
// deal with rich text tags in the input (comment text)
// deal with rich text tags in the input (comment text)
int
tag_width
=
0
,
extra_width
=
0
;
int
tag_width
=
0
,
extra_width
=
0
;
if
(
x
->
x_text
->
te_type
==
T_TEXT
)
{
if
(
x
->
x_text
->
te_type
==
T_TEXT
)
{
int
start
=
inindex_b
,
count
=
inchars_b
,
int
extra
=
0
,
in_tag
=
0
;
large
=
0
,
extra
=
0
,
in_tag
=
0
;
for
(
int
i
=
inindex_b
;
i
<
inindex_b
+
maxindex_b
&&
for
(
int
i
=
start
;
i
<
start
+
count
&&
x
->
x_buf
[
i
]
!=
'\n'
&&
x
->
x_buf
[
i
]
!=
'\n'
&&
x
->
x_buf
[
i
]
!=
'\v'
;
i
++
)
{
x
->
x_buf
[
i
]
!=
'\v'
;
i
++
)
{
if
(
x
->
x_buf
[
i
]
==
'<'
&&
if
(
x
->
x_buf
[
i
]
==
'<'
&&
// skip escaped tags
// skip escaped tags
i
+
1
<
start
+
count
&&
x
->
x_buf
[
i
+
1
]
!=
'!'
)
{
i
+
1
<
inindex_b
+
maxindex_b
&&
x
->
x_buf
[
i
+
1
]
!=
'!'
)
{
int
j
;
int
j
;
for
(
j
=
i
+
1
;
j
<
start
+
count
&&
for
(
j
=
i
+
1
;
j
<
inindex_b
+
maxindex_b
&&
is_tag_char
(
x
->
x_buf
[
j
]);
j
++
)
;
is_tag_char
(
x
->
x_buf
[
j
]);
j
++
)
;
if
(
j
<
start
+
count
&&
x
->
x_buf
[
j
]
==
'>'
)
{
if
(
j
<
inindex_b
+
maxindex_b
&&
x
->
x_buf
[
j
]
==
'>'
)
{
if
(
strncmp
(
x
->
x_buf
+
i
+
1
,
"h"
,
j
-
i
-
1
)
==
0
)
if
(
strncmp
(
x
->
x_buf
+
i
+
1
,
"h"
,
j
-
i
-
1
)
==
0
)
large
=
1
;
large
=
1
;
else
if
(
strncmp
(
x
->
x_buf
+
i
+
1
,
"/h"
,
j
-
i
-
1
)
==
0
)
else
if
(
strncmp
(
x
->
x_buf
+
i
+
1
,
"/h"
,
j
-
i
-
1
)
==
0
)
...
@@ -283,10 +287,11 @@ static void rtext_senditup(t_rtext *x, int action, int *widthp, int *heightp,
...
@@ -283,10 +287,11 @@ static void rtext_senditup(t_rtext *x, int action, int *widthp, int *heightp,
extra_width
=
(
int
)(
extra
*
0
.
2
+
0
.
5
);
extra_width
=
(
int
)(
extra
*
0
.
2
+
0
.
5
);
}
}
int
tag_offs
=
tag_width
-
extra_width
;
int
tag_offs
=
tag_width
-
extra_width
;
int
maxindex_c
=
if
(
tag_offs
&&
maxindex_c
==
widthlimit_c
)
{
(
inchars_c
>
widthlimit_c
+
tag_offs
?
widthlimit_c
+
tag_offs
:
inchars_c
);
// recalculate offsets
int
maxindex_b
=
u8_offset
(
x
->
x_buf
+
inindex_b
,
maxindex_c
,
maxindex_c
+=
tag_offs
;
x
->
x_bufsize
-
inindex_b
);
maxindex_b
+=
tag_offs
;
}
int
eatchar
=
1
;
int
eatchar
=
1
;
//fprintf(stderr, "firstone <%s> inindex_b=%d maxindex_b=%d\n", x->x_buf + inindex_b, inindex_b, maxindex_b);
//fprintf(stderr, "firstone <%s> inindex_b=%d maxindex_b=%d\n", x->x_buf + inindex_b, inindex_b, maxindex_b);
int
foundit_b
=
firstone
(
x
->
x_buf
+
inindex_b
,
'\n'
,
maxindex_b
);
int
foundit_b
=
firstone
(
x
->
x_buf
+
inindex_b
,
'\n'
,
maxindex_b
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment