diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-12-12 21:34:57 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-12-12 21:34:57 +0200 |
commit | 986ce367dba77caeedf865db79d1b347bf1b735a (patch) | |
tree | 18325fe56b5475ccc838d1b3ad50cb88c6f852f7 /lisp/char-fold.el | |
parent | 242cdac3ad8ec5427c3e2d32600e4917eec188cc (diff) | |
download | emacs-986ce367dba77caeedf865db79d1b347bf1b735a.tar.gz emacs-986ce367dba77caeedf865db79d1b347bf1b735a.tar.bz2 emacs-986ce367dba77caeedf865db79d1b347bf1b735a.zip |
* lisp/char-fold.el (char-fold-override): Doc fix.
Diffstat (limited to 'lisp/char-fold.el')
-rw-r--r-- | lisp/char-fold.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/char-fold.el b/lisp/char-fold.el index 4fb2643d1f1..b8e3d2f6791 100644 --- a/lisp/char-fold.el +++ b/lisp/char-fold.el @@ -249,13 +249,13 @@ Exceptionally for the space character (32), ALIST is ignored.") char-fold--previous new)))) (defcustom char-fold-override char-fold--default-override - "Non-nil means to override all default folding characters. -When nil (the default value), the equivalence table is populated -with the default set of equivalent chars, and you can remove unneeded -characters using `char-fold-exclude', and add own characters using -`char-fold-include'. But when this variable is customized to non-nil, -you start with an empty table where you can add only own characters -using `char-fold-include'." + "Non-nil means to override the default definitions of equivalent characters. +When nil (the default), the table of character equivalences used +for character-folding is populated with the default set of equivalent +characters; customize `char-fold-exclude' to remove unneeded equivalences, +and `char-fold-include' to add your own. +When this variable is non-nil, the table of equivalences starts empty, +and you can add your own equivalences by customizing `char-fold-include'." :type 'boolean :initialize #'custom-initialize-default :set (lambda (sym val) |