Skip to content

Commit cbe4639

Browse files
committed
FIXED: Avoid Unicode characters in otherwise ASCII files
Files used Unicode variations on ' and -
1 parent 23d6e2d commit cbe4639

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

library/dialect/xsb/error_handler.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@
9494

9595
%! print_backtrace(+Backtrace)
9696
%
97-
% This predicate, which is used by XSBs default error handler, prints
98-
% a backtrace structure to XSBs standard error stream.
97+
% This predicate, which is used by XSB's default error handler, prints
98+
% a backtrace structure to XSB's standard error stream.
9999

100100
print_backtrace(Backtrace) :-
101101
print_prolog_backtrace(user_error, Backtrace).

library/dialect/xsb/machine.pl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
put_attr/3,
4646
del_attr/2,
4747
attv_unify/2, % AttVar, Value
48-
install_verify_attribute_handler/4, % +Mod, AttrValue,
49-
% Target, :Handler)
50-
install_attribute_portray_hook/3, % +Mod, AttrValue, :Handler
48+
install_verify_attribute_handler/4, % +Mod, -AttrValue,
49+
% -Target, :Handler)
50+
install_attribute_portray_hook/3, % +Mod, -AttrValue, :Handler
5151

5252
str_cat/3,
5353

@@ -115,9 +115,9 @@
115115
attv_unify(AttVar, Value) :-
116116
'$attv_unify'(AttVar, Value).
117117

118-
%! install_verify_attribute_handler(+Mod, AttrValue, Target,
118+
%! install_verify_attribute_handler(+Mod, -AttrValue, -Target,
119119
%! :Handler) is det.
120-
%! install_attribute_portray_hook(+Mod, AttrValue, :Handler) is det.
120+
%! install_attribute_portray_hook(+Mod, -AttrValue, :Handler) is det.
121121
%
122122
% Install attributed variable hooks for Mod.
123123

0 commit comments

Comments
 (0)