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
b1376368
Commit
b1376368
authored
Jun 07, 2000
by
Kenichi Handa
Browse files
(fill-find-break-point): Check the validity of charset.
parent
e4044bb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/textmodes/fill.el
lisp/textmodes/fill.el
+3
-1
No files found.
lisp/textmodes/fill.el
View file @
b1376368
...
...
@@ -315,7 +315,9 @@ If the charset has no such property, do nothing."
(
if
(
eq
charset
'ascii
)
(
setq
ch
(
preceding-char
)
charset
(
char-charset
ch
)))
(
setq
func
(
get-charset-property
charset
'fill-find-break-point-function
))
(
if
(
charsetp
charset
)
(
setq
func
(
get-charset-property
charset
'fill-find-break-point-function
)))
(
if
(
and
func
(
fboundp
func
))
(
funcall
func
limit
))))
...
...
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