* doc/lispref/strings.texi (Case Conversion):

Use a TeX font that support ligatures.
This commit is contained in:
Glenn Morris 2017-12-27 09:55:35 -08:00
parent 89e257d71b
commit fd35804971

View file

@ -1212,12 +1212,12 @@ example:
@iftex
@example
@group
(upcase "fi") ; note: single character, ligature "fi"
(upcase "@r{fi}") ; note: single character, ligature "fi"
@result{} "FI"
@end group
@group
(upcase ?fi)
@result{} 64257 ; i.e. ?fi
(upcase ?@r{fi})
@result{} 64257 ; i.e. ?@r{fi}
@end group
@end example
@end iftex