Re: Issues with japanese support
Ralf Angeli <[email protected]>
| Newsgroups | gmane.emacs.auc-tex |
|---|---|
| Message-ID | <[email protected]> |
* Masayuki Ataka (2005-02-18) writes: > From: Ralf Angeli <[email protected]> >> >> (if (featurep 'xemacs) >> (if (boundp 'word-across-newline) >> word-across-newline >> "\\cj\\|\\cc\\|\\ct") >> "\\c|") >> > In such a rare case, we should check `word-across-newline' is non-nil. Good idea. > (defcustom LaTeX-nospace-between-char-regexp > (if (featurep 'xemacs) > (if (and (boundp 'word-across-newline) word-across-newline) > word-across-newline > ;; NOTE: '\ct' means `Chinese Taiwan' (XEmacs) but `Thai' (FSF Emacs). I think this note is confusing here because the regexp is used only in the XEmacs case anyway. > "\\cj\\|\\cc\\|\\ct") > "\\c|") -- Ralf