Rebecca Ore wrote:
> > Oh, thank you, thank you. I couldn't get KOI-8 support
before.
> > Relcom shows up in the right font
>
> Does the Russian TUTORIAL work for you?
ќдЯд еоХТЮЩЫ ФЯЬжХЮ Тйди аЯЮбдХЮ згХЭ ЮЯзйЭ аЯЬикЯзСдХЬбЭ, ХгЬЩ зй ЮСЪФХдХ
одЯ-ЮЩТеФи ЮХбгЮЯХ, ЮХ ЮежЮЯ гЩФХди Щ аЯвЩУСди гХТб - жСЬеЪдХги!
There is a weird error message in the mini-buffer: Search
failed "^<<.+>>" but that doesn't seem to affect the basic
appearance
of the text.
The following patch should fix the `search failed' error.
--
Glynn Clements <glynn(a)sensei.co.uk>
1998-07-13 Glynn Clements <glynn(a)sensei.co.uk>
* mule-help.el (help-with-tutorial): don't signal an error if the
regexp "^<<.+>>" isn't matched.
--- mule-help.el Sat Feb 14 03:56:01 1998
+++ mule-help.el.new Mon Jul 13 09:25:37 1998
@@ -61,7 +61,7 @@
(goto-char (point-min))
;; The 'didactic' blank lines: Possibly insert blank lines
;; around <<nya nya nya>>, and change << >> to [ ].
- (if (re-search-forward "^<<.+>>")
+ (if (re-search-forward "^<<.+>>" nil t)
(let ((n (- (window-height (selected-window))
(count-lines (point-min) (point-at-bol))
6)))